diff --git a/Applications/Accessories/Soundplant/Online/script.js b/Applications/Accessories/Soundplant/Online/script.js index cb16cc8069..dc012be9d3 100644 --- a/Applications/Accessories/Soundplant/Online/script.js +++ b/Applications/Accessories/Soundplant/Online/script.js @@ -1,5 +1,6 @@ const OnlineInstallerScript = include("engines.wine.quick_script.online_installer_script"); -include("engines.wine.plugins.windows_version"); + +const WindowsVersion = include("engines.wine.plugins.windows_version"); new OnlineInstallerScript() .name("Soundplant") @@ -10,6 +11,6 @@ new OnlineInstallerScript() .checksum("df17f942189618219cd504beee1be0712f4e4e4e") .category("Accessories") .executable("Soundplant45.exe") - .preInstall(function (wine /*, wizard*/) { - wine.windowsVersion("win7"); + .preInstall(function (wine) { + new WindowsVersion(wine).withWindowsVersion("win7").go(); }); diff --git a/Applications/Custom/LocalInstaller/Local/script.js b/Applications/Custom/LocalInstaller/Local/script.js index c6cf999444..dfda638d51 100644 --- a/Applications/Custom/LocalInstaller/Local/script.js +++ b/Applications/Custom/LocalInstaller/Local/script.js @@ -1,5 +1,6 @@ const LocalInstallerScript = include("engines.wine.quick_script.local_installer_script"); -include("engines.wine.plugins.windows_version"); + +const WindowsVersion = include("engines.wine.plugins.windows_version"); new LocalInstallerScript() .editor("PlayOnLinux") @@ -7,9 +8,11 @@ new LocalInstallerScript() .author("Plata") .category("Custom") .wineUserSettings(true) - .preInstall(function (wine, wizard) { - var versions = ["win7", "vista", "win2003", "winxp", "win2k", "winnt", "winme", "win98", "win95", "win31"]; - var shownVersions = [ + .preInstall(function (wine) { + const wizard = wine.wizard(); + + const versions = ["win7", "vista", "win2003", "winxp", "win2k", "winnt", "winme", "win98", "win95", "win31"]; + const shownVersions = [ "win7", "vista", "win2003", @@ -21,6 +24,12 @@ new LocalInstallerScript() "win95", "win31" ]; - var selectedVersion = wizard.menu("Please select the wine windows version.", shownVersions, "winxp (recommended)"); - wine.windowsVersion(versions[selectedVersion.index]); + + const selectedVersion = wizard.menu( + "Please select the wine windows version.", + shownVersions, + "winxp (recommended)" + ); + + new WindowsVersion(wine).withWindowsVersion(versions[selectedVersion.index]).go(); }); diff --git a/Applications/Custom/OnlineInstaller/Online/script.js b/Applications/Custom/OnlineInstaller/Online/script.js index 080b2f6e76..8721306b21 100644 --- a/Applications/Custom/OnlineInstaller/Online/script.js +++ b/Applications/Custom/OnlineInstaller/Online/script.js @@ -1,5 +1,6 @@ const OnlineInstallerScript = include("engines.wine.quick_script.online_installer_script"); -include("engines.wine.plugins.windows_version"); + +const WindowsVersion = include("engines.wine.plugins.windows_version"); new OnlineInstallerScript() .editor("PlayOnLinux") @@ -7,9 +8,11 @@ new OnlineInstallerScript() .author("Plata") .category("Custom") .wineUserSettings(true) - .preInstall(function (wine, wizard) { - var versions = ["win7", "vista", "win2003", "winxp", "win2k", "winnt", "winme", "win98", "win95", "win31"]; - var shownVersions = [ + .preInstall(function (wine) { + const wizard = wine.wizard(); + + const versions = ["win7", "vista", "win2003", "winxp", "win2k", "winnt", "winme", "win98", "win95", "win31"]; + const shownVersions = [ "win7", "vista", "win2003", @@ -21,6 +24,12 @@ new OnlineInstallerScript() "win95", "win31" ]; - var selectedVersion = wizard.menu("Please select the wine windows version.", shownVersions, "winxp (recommended)"); - wine.windowsVersion(versions[selectedVersion.index]); + + const selectedVersion = wizard.menu( + "Please select the wine windows version.", + shownVersions, + "winxp (recommended)" + ); + + new WindowsVersion(wine).withWindowsVersion(versions[selectedVersion.index]).go(); }); 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 ecf1837fb5..d9802d192d 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,16 +1,16 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); -include("engines.wine.plugins.override_dll"); + const Mfc42 = include("engines.wine.verbs.mfc42"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); + new SteamScript() .name("Age of Empires® III: Complete Collection") .editor("Microsoft Studios") .author("Quentin PARIS") .appId(105450) - .postInstall(function (wine /*, wizard*/) { + .postInstall(function (wine) { new Mfc42(wine).go(); - wine.overrideDLL() - .set("native, builtin", ["pidgen"]) - .do(); + new OverrideDLL(wine).withMode("native, builtin", ["pidgen"]).go(); }); diff --git a/Applications/Games/Anno 2070/Local/script.js b/Applications/Games/Anno 2070/Local/script.js index aea813fcf5..8b78462908 100644 --- a/Applications/Games/Anno 2070/Local/script.js +++ b/Applications/Games/Anno 2070/Local/script.js @@ -1,12 +1,14 @@ const LocalInstallerScript = include("engines.wine.quick_script.local_installer_script"); + const { touch, writeToFile, chmod } = include("utils.functions.filesystem.files"); -include("engines.wine.plugins.virtual_desktop"); -include("engines.wine.plugins.override_dll"); const Corefonts = include("engines.wine.verbs.corefonts"); const Crypt32 = include("engines.wine.verbs.crypt32"); const D3DX10 = include("engines.wine.verbs.d3dx10"); +const VirtualDesktop = include("engines.wine.plugins.virtual_desktop"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); + new LocalInstallerScript() .name("Anno 2070") .editor("Ubisoft") @@ -17,13 +19,13 @@ new LocalInstallerScript() .wineVersion("3.16") .wineDistribution("upstream") .preInstall(function (wine) { - wine.setVirtualDesktop(); + new VirtualDesktop(wine).go(); + new Crypt32(wine).go(); new Corefonts(wine).go(); new D3DX10(wine).go(); - wine.overrideDLL() - .set("native, builtin", ["winhttp", "msvcrt40", "msvcr100", "crypt32"]) - .do(); + + new OverrideDLL(wine).withMode("native, builtin", ["winhttp", "msvcrt40", "msvcr100", "crypt32"]).go(); }) .postInstall(function (wine) { var versionFile = wine.prefixDirectory() + "/drive_c/Ubisoft/Related Designs/ANNO 2070/update/version.txt"; diff --git a/Applications/Games/Anno 2070/Uplay/script.js b/Applications/Games/Anno 2070/Uplay/script.js index 44ed3dd27e..def4eba07e 100644 --- a/Applications/Games/Anno 2070/Uplay/script.js +++ b/Applications/Games/Anno 2070/Uplay/script.js @@ -1,7 +1,7 @@ const UplayScript = include("engines.wine.quick_script.uplay_script"); const Corefonts = include("engines.wine.verbs.corefonts"); -include("engines.wine.plugins.virtual_desktop"); +const VirtualDesktop = include("engines.wine.plugins.virtual_desktop"); new UplayScript() .name("Anno 2070") @@ -11,7 +11,7 @@ new UplayScript() .wineVersion("4.0-rc3") .wineDistribution("upstream") .appId(22) - .preInstall(function (wine /*, wizard*/) { - wine.setVirtualDesktop(); + .preInstall(function (wine) { + new VirtualDesktop(wine).go(); new Corefonts(wine).go(); }); diff --git "a/Applications/Games/Batman\342\204\242: Arkham Asylum/Steam/script.js" "b/Applications/Games/Batman\342\204\242: Arkham Asylum/Steam/script.js" index 950ab56a7a..adfda9293b 100644 --- "a/Applications/Games/Batman\342\204\242: Arkham Asylum/Steam/script.js" +++ "b/Applications/Games/Batman\342\204\242: Arkham Asylum/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.plugins.glsl"); +const CSMT = include("engines.wine.plugins.csmt"); +const GLSL = include("engines.wine.plugins.glsl"); new SteamScript() .name("Batman™: Arkham Asylum") @@ -11,7 +11,7 @@ new SteamScript() .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") .appId(35140) - .postInstall(function (wine/*, wizard*/) { - wine.UseGLSL("disabled"); - wine.enableCSMT(); + .postInstall(function (wine) { + new GLSL(wine).withMode("disabled").go(); + new CSMT(wine).go(); }); diff --git "a/Applications/Games/Batman\342\204\242: Arkham City/Steam/script.js" "b/Applications/Games/Batman\342\204\242: Arkham City/Steam/script.js" index ab387f71cf..b631f8cd3e 100644 --- "a/Applications/Games/Batman\342\204\242: Arkham City/Steam/script.js" +++ "b/Applications/Games/Batman\342\204\242: Arkham City/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.plugins.csmt"); +const CSMT = include("engines.wine.plugins.csmt"); new SteamScript() .name("Batman™: Arkham City") @@ -11,5 +11,5 @@ new SteamScript() .wineDistribution("staging") .appId(200260) .postInstall(function (wine/*, wizard*/) { - wine.enableCSMT(); + new CSMT(wine).go(); }); diff --git "a/Applications/Games/Batman\342\204\242: Arkham Origins/Steam/script.js" "b/Applications/Games/Batman\342\204\242: Arkham Origins/Steam/script.js" index 99b688493f..90202f1dd7 100644 --- "a/Applications/Games/Batman\342\204\242: Arkham Origins/Steam/script.js" +++ "b/Applications/Games/Batman\342\204\242: Arkham Origins/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.plugins.csmt"); +const CSMT = include("engines.wine.plugins.csmt"); new SteamScript() .name("Batman™: Arkham Origins") @@ -10,7 +10,7 @@ new SteamScript() .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") .postInstall(function (wine/*, wizard*/) { - wine.enableCSMT(); + new CSMT(wine).go(); //maybe needs xact }) .appId(209000); diff --git a/Applications/Games/Caesar III/Local/script.js b/Applications/Games/Caesar III/Local/script.js index 91f033187e..4e41d3a399 100644 --- a/Applications/Games/Caesar III/Local/script.js +++ b/Applications/Games/Caesar III/Local/script.js @@ -1,5 +1,5 @@ const LocalInstallerScript = include("engines.wine.quick_script.local_installer_script"); -include("engines.wine.plugins.virtual_desktop"); +const VirtualDesktop = include("engines.wine.plugins.virtual_desktop"); new LocalInstallerScript() .name("Caesar III") @@ -7,6 +7,6 @@ new LocalInstallerScript() .author("ImperatorS79") .category("Games") .executable("c3.exe") - .postInstall(function (wine /*, wizard*/) { - wine.setVirtualDesktop(1280, 1024); + .postInstall(function (wine) { + new VirtualDesktop(wine).withDimensions(1280, 1024).go(); }); diff --git a/Applications/Games/Caesar III/Steam/script.js b/Applications/Games/Caesar III/Steam/script.js index 1402dd9f79..c0ccb60844 100644 --- a/Applications/Games/Caesar III/Steam/script.js +++ b/Applications/Games/Caesar III/Steam/script.js @@ -1,11 +1,11 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); -include("engines.wine.plugins.virtual_desktop"); +const VirtualDesktop = include("engines.wine.plugins.virtual_desktop"); new SteamScript() .name("Caesar III") .editor("Impressions Games") .author("ImperatorS79") .appId(517790) - .postInstall(function (wine /*, wizard*/) { - wine.setVirtualDesktop(1280, 1024); + .postInstall(function (wine) { + new VirtualDesktop(wine).withDimensions(1280, 1024).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 cf77e55e82..74a6047bd7 100644 --- a/Applications/Games/Command and Conquer - Tiberium Wars/Local/script.js +++ b/Applications/Games/Command and Conquer - Tiberium Wars/Local/script.js @@ -1,8 +1,9 @@ const LocalInstallerScript = include("engines.wine.quick_script.local_installer_script"); -const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); -include("engines.wine.plugins.csmt"); -include("engines.wine.plugins.windows_version"); +const { LATEST_STAGING_VERSION } = include("engines.wine.engine.versions"); + +const CSMT = include("engines.wine.plugins.csmt"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); const D3DX9 = include("engines.wine.verbs.d3dx9"); new LocalInstallerScript() @@ -13,8 +14,9 @@ new LocalInstallerScript() .executable("CNC3.exe") .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") - .preInstall(function (wine /*, wizard*/) { - wine.windowsVersion("winxp"); + .preInstall(function (wine) { + new WindowsVersion(wine).withWindowsVersion("winxp").go(); + new D3DX9(wine).go(); - wine.enableCSMT(); + new CSMT(wine).go(); }); diff --git a/Applications/Games/Dragon Ball Xenoverse 2/Steam/script.js b/Applications/Games/Dragon Ball Xenoverse 2/Steam/script.js index 9f6310faf8..bcd174b6d7 100644 --- a/Applications/Games/Dragon Ball Xenoverse 2/Steam/script.js +++ b/Applications/Games/Dragon Ball Xenoverse 2/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.plugins.csmt"); +const CSMT = include("engines.wine.plugins.csmt"); new SteamScript() .name("Dragon Ball Xenoverse 2") @@ -12,6 +12,6 @@ new SteamScript() .wineArchitecture("amd64") .appId(454650) .preInstall(function (wine /*, wizard*/) { - wine.enableCSMT(); + new CSMT(wine).go(); //might need dxfullsetup d3d11 and d3d_43 compiler, but test result is old (2.10) }); 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 619ac527b6..509b575621 100644 --- a/Applications/Games/Earth Eternal - Valkal's Shadow/Online/script.js +++ b/Applications/Games/Earth Eternal - Valkal's Shadow/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.plugins.windows_version"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); const Corefonts = include("engines.wine.verbs.corefonts"); const D3DX9 = include("engines.wine.verbs.d3dx9"); const Vcrun2008 = include("engines.wine.verbs.vcrun2008"); @@ -17,8 +17,8 @@ new OnlineInstallerScript() .executable("Spark.exe", ["http://live.theanubianwar.com/Release/Current/EarthEternal.car"]) .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") - .preInstall(function (wine /*, wizard*/) { - wine.windowsVersion("winxp"); + .preInstall(function (wine) { + new WindowsVersion(wine).withWindowsVersion("winxp").go(); new Corefonts(wine).go(); new D3DX9(wine).go(); new Vcrun2008(wine).go(); diff --git a/Applications/Games/Ether One Redux/Steam/script.js b/Applications/Games/Ether One Redux/Steam/script.js index 166a30b841..d86f5890a4 100644 --- a/Applications/Games/Ether One Redux/Steam/script.js +++ b/Applications/Games/Ether One Redux/Steam/script.js @@ -1,5 +1,7 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); + new SteamScript() .name("Ether One Redux") .editor("White Paper Games") @@ -8,9 +10,6 @@ new SteamScript() .wineArchitecture("amd64") .executable("Steam.exe", ["-silent", "-applaunch", 391920, "-nosplash", "-opengl4"]) .gameOverlay(false) - .postInstall(function (wine /*, wizard*/) { - wine - .setOsForApplication() - .set("EtherOne-Win32-Shipping.exe", "win7") - .do(); + .postInstall(function (wine) { + new WindowsVersion(wine).withApplicationWindowsVersion("EtherOne-Win32-Shipping.exe", "win7").go(); }); diff --git a/Applications/Games/Far Cry 2/Steam/script.js b/Applications/Games/Far Cry 2/Steam/script.js index 7a01f71ba2..407e5deece 100644 --- a/Applications/Games/Far Cry 2/Steam/script.js +++ b/Applications/Games/Far Cry 2/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.plugins.csmt"); +const CSMT = include("engines.wine.plugins.csmt"); const Secur32 = include("engines.wine.verbs.secur32"); new SteamScript() @@ -13,5 +13,5 @@ new SteamScript() .appId(19900) .preInstall(function (wine /*, wizard*/) { new Secur32(wine).go(); - wine.enableCSMT(); + new CSMT(wine).go(); }); diff --git a/Applications/Games/Guild Wars 2/Local/script.js b/Applications/Games/Guild Wars 2/Local/script.js index 46a2648552..7e42cd5a02 100644 --- a/Applications/Games/Guild Wars 2/Local/script.js +++ b/Applications/Games/Guild Wars 2/Local/script.js @@ -1,8 +1,8 @@ const LocalInstallerScript = include("engines.wine.quick_script.local_installer_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.plugins.virtual_desktop"); +const CSMT = include("engines.wine.plugins.csmt"); +const VirtualDesktop = include("engines.wine.plugins.virtual_desktop"); new LocalInstallerScript() .name("Guild Wars 2") @@ -13,8 +13,8 @@ new LocalInstallerScript() .executable("Gw2.exe") .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") - .preInstall(function (wine /*, wizard*/) { + .preInstall(function (wine) { // avoid that launcher freezes the complete system - wine.setVirtualDesktop(1280, 1024); - wine.enableCSMT(); + new VirtualDesktop(wine).withDimensions(1280, 1024).go(); + new CSMT(wine).go(); }); diff --git a/Applications/Games/Guild Wars 2/Online/script.js b/Applications/Games/Guild Wars 2/Online/script.js index 397372cbae..2492e7e4ae 100644 --- a/Applications/Games/Guild Wars 2/Online/script.js +++ b/Applications/Games/Guild Wars 2/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.plugins.csmt"); -include("engines.wine.plugins.virtual_desktop"); +const CSMT = include("engines.wine.plugins.csmt"); +const VirtualDesktop = include("engines.wine.plugins.virtual_desktop"); new OnlineInstallerScript() .name("Guild Wars 2") @@ -15,8 +15,8 @@ new OnlineInstallerScript() .executable("Gw2.exe") .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") - .preInstall(function (wine /*, wizard*/) { + .preInstall(function (wine) { // avoid that launcher freezes the complete system - wine.setVirtualDesktop(1280, 1024); - wine.enableCSMT(); + new VirtualDesktop(wine).withDimensions(1280, 1024).go(); + new CSMT(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 820adfc8db..00bf35837b 100644 --- a/Applications/Games/Heroes of the Storm/Online/script.js +++ b/Applications/Games/Heroes of the Storm/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.plugins.windows_version"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); const Vcrun2015 = include("engines.wine.verbs.vcrun2015"); const Corefonts = include("engines.wine.verbs.corefonts"); @@ -16,8 +16,8 @@ new OnlineInstallerScript() //The checksum is different each time you download .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") - .preInstall(function (wine /*, wizard*/) { - wine.windowsVersion("winxp"); + .preInstall(function (wine) { + new WindowsVersion(wine).withWindowsVersion("winxp").go(); new Vcrun2015(wine).go(); new Corefonts(wine).go(); diff --git a/Applications/Games/League of Legends/Online/script.js b/Applications/Games/League of Legends/Online/script.js index 91f235e9b1..6b1e9a6743 100644 --- a/Applications/Games/League of Legends/Online/script.js +++ b/Applications/Games/League of Legends/Online/script.js @@ -1,15 +1,16 @@ const CustomInstallerScript = include("engines.wine.quick_script.custom_installer_script"); -const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); -const {fileName, mkdir, writeToFile} = include("utils.functions.filesystem.files"); + +const { LATEST_STAGING_VERSION } = include("engines.wine.engine.versions"); +const { fileName, mkdir, writeToFile } = include("utils.functions.filesystem.files"); const Resource = include("utils.functions.net.resource"); -include("engines.wine.plugins.csmt"); -include("engines.wine.plugins.override_dll"); -include("engines.wine.plugins.windows_version"); const D3DX9 = include("engines.wine.verbs.d3dx9"); -// Installs League of Legends +const CSMT = include("engines.wine.plugins.csmt"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); +// Installs League of Legends new CustomInstallerScript() .name("League of Legends") .editor("Riot Games") @@ -97,14 +98,16 @@ new CustomInstallerScript() .category("Games") .wineDistribution("staging") .wineVersion(LATEST_STAGING_VERSION) - .preInstall(function (wine /*, wizard*/) { - wine.windowsVersion("winxp"); + .preInstall(function (wine) { + new WindowsVersion(wine).withWindowsVersion("winxp").go(); + new D3DX9(wine).go(); - wine - .overrideDLL() - .set("native, builtin", ["atl120", "msvcp120", "msvcr120", "vcomp120", "msvcp140"]) - .do(); - wine.enableCSMT(); + + new OverrideDLL(wine) + .withMode("native, builtin", ["atl120", "msvcp120", "msvcr120", "vcomp120", "msvcp140"]) + .go(); + + new CSMT(wine).go(); mkdir(wine.prefixDirectory() + "drive_c/LoL"); diff --git a/Applications/Games/Magic The Gathering Arena/Online/script.js b/Applications/Games/Magic The Gathering Arena/Online/script.js index 7358800662..64c9725fb4 100644 --- a/Applications/Games/Magic The Gathering Arena/Online/script.js +++ b/Applications/Games/Magic The Gathering Arena/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"); const DXVK = include("engines.wine.verbs.dxvk"); -include("engines.wine.plugins.usetakefocus"); +const TakeFocus = include("engines.wine.plugins.usetakefocus"); new OnlineInstallerScript() .name("Magic: The Gathering Arena") @@ -12,8 +12,8 @@ new OnlineInstallerScript() .category("Games") .wineDistribution("staging") .wineVersion(LATEST_STAGING_VERSION) - .preInstall(function (wine /*, wizard*/) { + .preInstall(function (wine) { new DXVK(wine).go(); - wine.UseTakeFocus("N"); + new TakeFocus(wine).withMode("N").go(); }) .executable("MtgaLauncher.exe"); diff --git a/Applications/Games/Mirror's Edge/Steam/script.js b/Applications/Games/Mirror's Edge/Steam/script.js index 19df757bcf..859ec56684 100644 --- a/Applications/Games/Mirror's Edge/Steam/script.js +++ b/Applications/Games/Mirror's Edge/Steam/script.js @@ -1,16 +1,16 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); -include("engines.wine.plugins.managed"); + const PhysX = include("engines.wine.verbs.physx"); +const Managed = include("engines.wine.plugins.managed"); + new SteamScript() .name("Mirror's Edge™") .editor("DICE") .author("Plata") .appId(17410) - .preInstall(function (wine /*, wizard*/) { + .preInstall(function (wine) { new PhysX(wine).go(); - wine.setManagedForApplication() - .set("MirrorsEdge.exe", false) - .do(); + new Managed(wine).withManagedApplication("MirrorsEdge.exe", false).go(); }); diff --git a/Applications/Games/Niko: Through The Dream/Steam/script.js b/Applications/Games/Niko: Through The Dream/Steam/script.js index 34903db857..a770a1d7a1 100644 --- a/Applications/Games/Niko: Through The Dream/Steam/script.js +++ b/Applications/Games/Niko: Through The Dream/Steam/script.js @@ -1,16 +1,16 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); -include("engines.wine.plugins.managed"); + const DotNET40 = include("engines.wine.verbs.dotnet40"); +const Managed = include("engines.wine.plugins.managed"); + new SteamScript() .name("Niko: Through The Dream") .editor("Studio Paint") .author("Plata") .appId(296550) - .postInstall(function (wine /*, wizard*/) { + .postInstall(function (wine) { new DotNET40(wine).go(); - wine - .setManagedForApplication() - .set("NIKO.exe", false) - .do(); + + new Managed(wine).withManagedApplication("NIKO.exe", false).go(); }); diff --git a/Applications/Games/Overwatch/Online/script.js b/Applications/Games/Overwatch/Online/script.js index 6d7424d44c..1daf6f8995 100644 --- a/Applications/Games/Overwatch/Online/script.js +++ b/Applications/Games/Overwatch/Online/script.js @@ -1,12 +1,14 @@ const OnlineInstallerScript = include("engines.wine.quick_script.online_installer_script"); + const { LATEST_STAGING_VERSION } = include("engines.wine.engine.versions"); -include("engines.wine.plugins.windows_version"); -include("engines.wine.plugins.override_dll"); const Vcrun2015 = include("engines.wine.verbs.vcrun2015"); const Corefonts = include("engines.wine.verbs.corefonts"); const DXVK = include("engines.wine.verbs.dxvk"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); + new OnlineInstallerScript() .name("Overwatch") .editor("Blizzard") @@ -19,15 +21,13 @@ new OnlineInstallerScript() .wineArchitecture("amd64") .category("Games") .executable("Battle.net.exe") - .preInstall(function (wine /*, wizard*/) { - wine.windowsVersion("win7"); + .preInstall(function (wine) { + new WindowsVersion(wine).withWindowsVersion("win7").go(); new Vcrun2015(wine).go(); new Corefonts(wine).go(); - wine.overrideDLL() - .set("disabled", ["nvapi", "nvapi64"]) - .do(); + new OverrideDLL(wine).withMode("disabled", ["nvapi", "nvapi64"]).go(); 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 45231debb7..b91dc265d1 100644 --- a/Applications/Games/PC Building Simulator/Steam/script.js +++ b/Applications/Games/PC Building Simulator/Steam/script.js @@ -1,7 +1,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"); +const VirtualDesktop = include("engines.wine.plugins.virtual_desktop"); const Corefonts = include("engines.wine.verbs.corefonts"); @@ -20,6 +20,6 @@ new SteamScript() ) ); new Corefonts(wine).go(); - wine.setVirtualDesktop(); + new VirtualDesktop(wine).go(); }) .gameOverlay(false); diff --git a/Applications/Games/Road Rash/Online/script.js b/Applications/Games/Road Rash/Online/script.js index f857f1c7a4..a9c102a22e 100644 --- a/Applications/Games/Road Rash/Online/script.js +++ b/Applications/Games/Road Rash/Online/script.js @@ -1,5 +1,5 @@ const ZipScript = include("engines.wine.quick_script.zip_script"); -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); new ZipScript() .name("Road Rash") @@ -10,7 +10,8 @@ new ZipScript() .checksum("82f99038b86bbd267c64f2d34f30b3209bbe4daa") .category("Games") .executable("RASHME.EXE") - .postInstall(function (wine /*, wizard*/) { - var registryFile = Bean("fileSearcher").search(wine.prefixDirectory(), "RASH.REG"); - wine.regedit().open(registryFile[0]); + .postInstall(function (wine) { + const registryFile = Bean("fileSearcher").search(wine.prefixDirectory(), "RASH.REG"); + + new Regedit(wine).open(registryFile[0]); }); diff --git a/Applications/Games/Rocksmith 2014/Steam/script.js b/Applications/Games/Rocksmith 2014/Steam/script.js index 361a6ff5e2..4b9c309991 100644 --- a/Applications/Games/Rocksmith 2014/Steam/script.js +++ b/Applications/Games/Rocksmith 2014/Steam/script.js @@ -1,42 +1,44 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); -const {writeToFile} = include("utils.functions.filesystem.files"); +const { writeToFile } = include("utils.functions.filesystem.files"); -include("engines.wine.plugins.sound_driver"); +const SoundDriver = include("engines.wine.plugins.sound_driver"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); function fixIni(ini) { var screenSize = java.awt.Toolkit.getDefaultToolkit().getScreenSize(); var content = - "[Audio]\n" + - "EnableMicrophone=1\n" + - "ExclusiveMode=0\n" + - "LatencyBuffer=4\n" + - "ForceDefaultPlaybackDevice=\n" + - "ForceWDM=0\n" + - "ForceDirectXSink=0\n" + - "Win32UltraLowLatencyMode=0\n" + - "DumpAudioLog=0\n" + - "MaxOutputBufferSize=0\n" + - "[Renderer.Win32]\n" + - "ShowGamepadUI=0\n" + - "ScreenWidth=" + - screenSize.width + - "\n" + - "ScreenHeight=" + - screenSize.height + - "\n" + - "Fullscreen=2\n" + - "VisualQuality=1\n" + - "RenderingWidth=0\n" + - "RenderingHeight=0\n" + - "EnablePostEffects=1\n" + - "EnableShadows=1\n" + - "EnableHighResScope=1\n" + - "EnableDepthOfField=1\n" + - "EnablePerPixelLighting=1\n" + - "MsaaSamples=4\n" + - "DisableBrowser=0\n" + - "[Net]\n" + - "UseProxy=1"; + "[Audio]\n" + + "EnableMicrophone=1\n" + + "ExclusiveMode=0\n" + + "LatencyBuffer=4\n" + + "ForceDefaultPlaybackDevice=\n" + + "ForceWDM=0\n" + + "ForceDirectXSink=0\n" + + "Win32UltraLowLatencyMode=0\n" + + "DumpAudioLog=0\n" + + "MaxOutputBufferSize=0\n" + + "[Renderer.Win32]\n" + + "ShowGamepadUI=0\n" + + "ScreenWidth=" + + screenSize.width + + "\n" + + "ScreenHeight=" + + screenSize.height + + "\n" + + "Fullscreen=2\n" + + "VisualQuality=1\n" + + "RenderingWidth=0\n" + + "RenderingHeight=0\n" + + "EnablePostEffects=1\n" + + "EnableShadows=1\n" + + "EnableHighResScope=1\n" + + "EnableDepthOfField=1\n" + + "EnablePerPixelLighting=1\n" + + "MsaaSamples=4\n" + + "DisableBrowser=0\n" + + "[Net]\n" + + "UseProxy=1"; + writeToFile(ini, content); } @@ -45,13 +47,12 @@ new SteamScript() .editor("Ubisoft - San Francisco") .author("Plata") .appId(221680) - .postInstall(function (wine /*, wizard*/) { - wine.setSoundDriver("alsa"); - wine - .setOsForApplication() - .set("Rocksmith2014.exe", "win7") - .do(); + .postInstall(function (wine) { + new SoundDriver(wine).withDriver("alsa").go(); + + new WindowsVersion(wine).withApplicationWindowsVersion("Rocksmith2014.exe", "win7").go(); + fixIni( - wine.prefixDirectory() + "drive_c/" + wine.programFiles() + "/Steam/steamapps/common/Rocksmith2014/Rocksmith.ini" + `${wine.prefixDirectory()}/drive_c/${wine.programFiles()}/Steam/steamapps/common/Rocksmith2014/Rocksmith.ini` ); }); diff --git a/Applications/Games/Rocksmith/Steam/script.js b/Applications/Games/Rocksmith/Steam/script.js index a04067d098..b9817f28e4 100644 --- a/Applications/Games/Rocksmith/Steam/script.js +++ b/Applications/Games/Rocksmith/Steam/script.js @@ -1,30 +1,32 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); -const {writeToFile} = include("utils.functions.filesystem.files"); +const { writeToFile } = include("utils.functions.filesystem.files"); -include("engines.wine.plugins.sound_driver"); +const SoundDriver = include("engines.wine.plugins.sound_driver"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); function fixIni(ini) { var screenSize = java.awt.Toolkit.getDefaultToolkit().getScreenSize(); var content = - "[Audio]\n" + - "EnableMicrophone=0\n" + - "LatencyBuffer=4\n" + - "ExclusiveMode=0\n" + - "ForceWDM=0\n" + - "ForceDirectXSink=0\n" + - "DumpAudioLog=0\n" + - "MaxOutputBufferSize=0\n" + - "[Renderer.Win32]\n" + - "ScreenWidth=" + - screenSize.width + - "\n" + - "ScreenHeight=" + - screenSize.height + - "\n" + - "MinScreenWidth=640\n" + - "MinScreenHeight=480\n" + - "Fullscreen=1\n" + - "VisualQuality=8"; + "[Audio]\n" + + "EnableMicrophone=0\n" + + "LatencyBuffer=4\n" + + "ExclusiveMode=0\n" + + "ForceWDM=0\n" + + "ForceDirectXSink=0\n" + + "DumpAudioLog=0\n" + + "MaxOutputBufferSize=0\n" + + "[Renderer.Win32]\n" + + "ScreenWidth=" + + screenSize.width + + "\n" + + "ScreenHeight=" + + screenSize.height + + "\n" + + "MinScreenWidth=640\n" + + "MinScreenHeight=480\n" + + "Fullscreen=1\n" + + "VisualQuality=8"; + writeToFile(ini, content); } @@ -33,13 +35,12 @@ new SteamScript() .editor("Ubisoft - San Francisco") .author("Plata") .appId(205190) - .postInstall(function (wine /*, wizard*/) { - wine.setSoundDriver("alsa"); - wine - .setOsForApplication() - .set("Rocksmith.exe", "win7") - .do(); + .postInstall(function (wine) { + new SoundDriver(wine).withDriver("alsa").go(); + + new WindowsVersion(wine).withApplicationWindowsVersion("Rocksmith.exe", "win7").go(); + fixIni( - wine.prefixDirectory() + "drive_c/" + wine.programFiles() + "/Steam/steamapps/common/Rocksmith/Rocksmith.ini" + `${wine.prefixDirectory()}/drive_c/${wine.programFiles()}/Steam/steamapps/common/Rocksmith/Rocksmith.ini` ); }); diff --git a/Applications/Games/Space Engineers/Steam/script.js b/Applications/Games/Space Engineers/Steam/script.js index 1d194da5c4..a43a0f1ad2 100644 --- a/Applications/Games/Space Engineers/Steam/script.js +++ b/Applications/Games/Space Engineers/Steam/script.js @@ -4,7 +4,8 @@ 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"); + +const OverrideDLL = include("engines.wine.plugins.override_dll"); new SteamScript() .name("Space Engineers") @@ -14,13 +15,14 @@ new SteamScript() .wineVersion("4.14") .wineDistribution("upstream") .wineArchitecture("amd64") - .preInstall(function (wine, wizard) { + .preInstall(function (wine) { new DotNET472(wine).go(); new Vcrun2017(wine).go(); new DXVK(wine).go(); new FAudio(wine).go(); - wine.overrideDLL() - .set("native, builtin", [ + + new OverrideDLL(wine) + .withMode("native, builtin", [ "msvcr120", "xaudio2_0", "xaudio2_1", @@ -38,7 +40,10 @@ new SteamScript() "x3daudio1_6", "x3daudio1_7" ]) - .do(); + .go(); + + const wizard = wine.wizard(); + 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." @@ -46,7 +51,7 @@ new SteamScript() ); 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." + "Due to JIT compiler issues and the way this game uses multithreading, 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." ) ); }) diff --git a/Applications/Games/Steam/Online/script.js b/Applications/Games/Steam/Online/script.js index 1ce97d57da..4e266eb3f9 100644 --- a/Applications/Games/Steam/Online/script.js +++ b/Applications/Games/Steam/Online/script.js @@ -1,8 +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"); const Corefonts = include("engines.wine.verbs.corefonts"); -include("engines.wine.plugins.windows_version"); new OnlineInstallerScript() .name("Steam") @@ -14,15 +13,7 @@ new OnlineInstallerScript() .category("Games") .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") - .preInstall(function (wine /*, wizard*/) { - wine - .setOsForApplication() - .set("steam.exe", "winxp") - .do(); - wine - .setOsForApplication() - .set("steamwebhelper.exe", "winxp") - .do(); + .preInstall(function (wine) { 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 b0573ff2af..a341a6526c 100644 --- a/Applications/Games/Subnautica Below Zero/Steam/script.js +++ b/Applications/Games/Subnautica Below Zero/Steam/script.js @@ -1,7 +1,7 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); const { LATEST_STABLE_VERSION } = include("engines.wine.engine.versions"); -include("engines.wine.plugins.virtual_desktop"); +const VirtualDesktop = include("engines.wine.plugins.virtual_desktop"); const Vcrun2013 = include("engines.wine.verbs.vcrun2013"); const Corefonts = include("engines.wine.verbs.corefonts"); const DXVK = include("engines.wine.verbs.dxvk"); @@ -24,6 +24,6 @@ new SteamScript() new Corefonts(wine).go(); new DXVK(wine).go(); - wine.setVirtualDesktop(); + new VirtualDesktop(wine).go(); }) .gameOverlay(false); diff --git a/Applications/Games/Subnautica/Steam/script.js b/Applications/Games/Subnautica/Steam/script.js index aae2ac146b..aa3a7e9e0a 100644 --- a/Applications/Games/Subnautica/Steam/script.js +++ b/Applications/Games/Subnautica/Steam/script.js @@ -1,7 +1,7 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); const { LATEST_STABLE_VERSION } = include("engines.wine.engine.versions"); -include("engines.wine.plugins.virtual_desktop"); +const VirtualDesktop = include("engines.wine.plugins.virtual_desktop"); const Vcrun2013 = include("engines.wine.verbs.vcrun2013"); const Corefonts = include("engines.wine.verbs.corefonts"); const DXVK = include("engines.wine.verbs.dxvk"); @@ -15,7 +15,9 @@ new SteamScript() .wineVersion(LATEST_STABLE_VERSION) .wineArchitecture("amd64") .appId(264710) - .preInstall(function (wine, wizard) { + .preInstall(function (wine) { + const wizard = wine.wizard(); + wizard.message( tr("You can make the game smoother by using this: https://github.com/lutris/lutris/wiki/How-to:-Esync") ); @@ -24,12 +26,14 @@ new SteamScript() new Corefonts(wine).go(); new DXVK(wine).go(); - wine.setVirtualDesktop(); + new VirtualDesktop(wine).go(); }) - .postInstall(function (wine, wizard) { + .postInstall(function (wine) { + const wizard = wine.wizard(); + wizard.message( tr( - "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 conflict with Vulkan, shader mods break the game (the executable file works but no window is displayed)." ) ); }) diff --git a/Applications/Games/The Elder Scrolls I: Arena/Online/script.js b/Applications/Games/The Elder Scrolls I: Arena/Online/script.js index 9bb2637e2a..58ab159ebd 100644 --- a/Applications/Games/The Elder Scrolls I: Arena/Online/script.js +++ b/Applications/Games/The Elder Scrolls I: Arena/Online/script.js @@ -1,8 +1,8 @@ const ZipScript = include("engines.wine.quick_script.zip_script"); -const {writeToFile} = include("utils.functions.filesystem.files"); -const {LATEST_DOS_SUPPORT_VERSION} = include("engines.wine.engine.versions"); +const { writeToFile } = include("utils.functions.filesystem.files"); +const { LATEST_DOS_SUPPORT_VERSION } = include("engines.wine.engine.versions"); -include("engines.wine.plugins.dos_support"); +const Dosbox = include("engines.wine.plugins.dos_support"); new ZipScript() .name("The Elder Scroll 1: Arena") @@ -28,11 +28,11 @@ new ZipScript() "@ECHO OFF\r\n" + "A -sa:220 -si:7 -sd:1 -ma:220 -mq:7 -md:1 -ssbdig.adv -msbfm.adv\n\n" + "EXIT" ); - wine - .dosbox() - .memSize(64) - .renderAspect(true) - .cpuCycles("max 95% limit 33000") - .renderFrameSkip(1); + new Dosbox(wine) + .withMemSize(64) + .withRenderAspect(true) + .withCpuCycles("max 95% limit 33000") + .withRenderFrameSkip(1) + .go(); }) .executable("ARENA.BAT"); diff --git a/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local (1.0->1.6)/script.js b/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local (1.0->1.6)/script.js index 5c3ba73d58..1a9ceb6c40 100644 --- a/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local (1.0->1.6)/script.js +++ b/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local (1.0->1.6)/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.plugins.virtual_desktop"); +const VirtualDesktop = include("engines.wine.plugins.virtual_desktop"); new LocalInstallerScript() .name("Tom Clancy's Rainbow Six 3 : Raven Shield") @@ -9,7 +9,9 @@ new LocalInstallerScript() .author("ImperatorS79") .category("Games") .executable("ravenshield.exe") - .postInstall(function (wine, wizard) { + .postInstall(function (wine) { + const wizard = wine.wizard(); + var regions = ["France", "England"]; var selectedRegion = wizard.menu(tr("Select your region for the patch (1.0 to 1.60)."), regions); var exeName, url, sha1; @@ -38,5 +40,5 @@ new LocalInstallerScript() wine.run(originDirectory + exeName); - wine.setVirtualDesktop(1280, 1024); + new VirtualDesktop(wine).withDimensions(1280, 1024).go(); }); diff --git a/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam (Gold)/script.js b/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam (Gold)/script.js index ab6604be2b..a2b72a3294 100644 --- a/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam (Gold)/script.js +++ b/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam (Gold)/script.js @@ -1,12 +1,12 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); -include("engines.wine.plugins.virtual_desktop"); +const VirtualDesktop = include("engines.wine.plugins.virtual_desktop"); new SteamScript() .name("Tom Clancy's Rainbow Six® 3 Gold") .editor("Red Storm Entertainment") .author("ImperatorS79") .appId(19830) - .postInstall(function (wine /*, wizard*/) { - wine.setVirtualDesktop(1280, 1024); + .postInstall(function (wine) { + new VirtualDesktop(wine).withDimensions(1280, 1024).go(); }); diff --git a/Applications/Games/Uplay/Online/script.js b/Applications/Games/Uplay/Online/script.js index 50682c6d11..4069f89496 100644 --- a/Applications/Games/Uplay/Online/script.js +++ b/Applications/Games/Uplay/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.plugins.windows_version"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); const Corefonts = include("engines.wine.verbs.corefonts"); new OnlineInstallerScript() @@ -14,14 +14,11 @@ new OnlineInstallerScript() .executable("UbisoftGameLauncher.exe") .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") - .preInstall(function (wine /*, wizard*/) { + .preInstall(function (wine) { new Corefonts(wine).go(); - wine - .setOsForApplication() - .set("upc.exe", "winvista") - .do(); - wine - .setOsForApplication() - .set("UbisoftGameLauncher.exe", "winvista") - .do(); + + new WindowsVersion(wine) + .withApplicationWindowsVersion("upc.exe", "winvista") + .withApplicationWindowsVersion("UbisoftGameLauncher.exe", "winvista") + .go(); }); diff --git a/Applications/Games/Warcraft III Expansion Set/Online/script.js b/Applications/Games/Warcraft III Expansion Set/Online/script.js index 699a402159..6a95ddd52b 100644 --- a/Applications/Games/Warcraft III Expansion Set/Online/script.js +++ b/Applications/Games/Warcraft III Expansion Set/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.plugins.windows_version"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); const Vcrun2015 = include("engines.wine.verbs.vcrun2015"); const Corefonts = include("engines.wine.verbs.corefonts"); @@ -16,8 +16,8 @@ new OnlineInstallerScript() .executable("Warcraft III.exe") .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") - .preInstall(function (wine /*, wizard*/) { - wine.windowsVersion("winxp"); + .preInstall(function (wine) { + new WindowsVersion(wine).withWindowsVersion("winxp").go(); new Corefonts(wine).go(); new Vcrun2015(wine).go(); diff --git a/Applications/Games/Warface/Steam/script.js b/Applications/Games/Warface/Steam/script.js index ea3b0bacec..1c65abd399 100644 --- a/Applications/Games/Warface/Steam/script.js +++ b/Applications/Games/Warface/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.plugins.csmt"); +const CSMT = include("engines.wine.plugins.csmt"); new SteamScript() .name("Warface") @@ -11,5 +11,5 @@ new SteamScript() .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") .postInstall(function (wine /*, wizard*/) { - wine.enableCSMT(); + new CSMT(wine).go(); }); diff --git a/Applications/Games/Wildlife Park 2/Local/script.js b/Applications/Games/Wildlife Park 2/Local/script.js index 49a2ef32da..6afe2f7cd9 100644 --- a/Applications/Games/Wildlife Park 2/Local/script.js +++ b/Applications/Games/Wildlife Park 2/Local/script.js @@ -1,6 +1,6 @@ const LocalInstallerScript = include("engines.wine.quick_script.local_installer_script"); -include("engines.wine.plugins.virtual_desktop"); +const VirtualDesktop = include("engines.wine.plugins.virtual_desktop"); const Quartz = include("engines.wine.verbs.quartz"); new LocalInstallerScript() @@ -18,5 +18,5 @@ new LocalInstallerScript() ); new Quartz(wine).go(); - wine.setVirtualDesktop(); + new VirtualDesktop(wine).go(); }); diff --git a/Applications/Games/Wildlife Park 2/Steam/script.js b/Applications/Games/Wildlife Park 2/Steam/script.js index 286ebb006e..0481ec4fa8 100644 --- a/Applications/Games/Wildlife Park 2/Steam/script.js +++ b/Applications/Games/Wildlife Park 2/Steam/script.js @@ -1,6 +1,6 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); -include("engines.wine.plugins.virtual_desktop"); +const VirtualDesktop = include("engines.wine.plugins.virtual_desktop"); const Quartz = include("engines.wine.verbs.quartz"); new SteamScript() @@ -9,7 +9,9 @@ new SteamScript() .applicationHomepage("www.wildlifepark2.com") .author("Zemogiter") .appId(264710) - .preInstall(function (wine, wizard) { + .preInstall(function (wine) { + const wizard = wine.wizard(); + wizard.message( tr( "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." @@ -17,6 +19,6 @@ new SteamScript() ); new Quartz(wine).go(); - wine.setVirtualDesktop(); + new VirtualDesktop(wine).go(); }) .gameOverlay(false); diff --git a/Applications/Internet/Internet Explorer 6.0/Online/script.js b/Applications/Internet/Internet Explorer 6.0/Online/script.js index cf20433138..0c990fe73b 100644 --- a/Applications/Internet/Internet Explorer 6.0/Online/script.js +++ b/Applications/Internet/Internet Explorer 6.0/Online/script.js @@ -1,4 +1,5 @@ const PlainInstaller = include("utils.functions.apps.plain_installer"); + const Resource = include("utils.functions.net.resource"); const { CabExtract } = include("utils.functions.filesystem.extract"); const Wine = include("engines.wine.engine.object"); @@ -7,12 +8,13 @@ const { remove } = include("utils.functions.filesystem.files"); const WineShortcut = include("engines.wine.shortcuts.wine"); const AppResource = include("utils.functions.apps.resources"); -include("engines.wine.plugins.override_dll"); -include("engines.wine.plugins.regedit"); -include("engines.wine.plugins.regsvr32"); -include("engines.wine.plugins.windows_version"); const Msls31 = include("engines.wine.verbs.msls31"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); +const Regedit = include("engines.wine.plugins.regedit"); +const Regsvr32 = include("engines.wine.plugins.regsvr32"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); + new PlainInstaller().withScript(() => { var appsManager = Bean("repositoryManager"); var application = appsManager.getApplication([TYPE_ID, CATEGORY_ID, APPLICATION_ID]); @@ -34,7 +36,7 @@ new PlainInstaller().withScript(() => { new Msls31(wine).go(); - wine.windowsVersion("win2k"); + new WindowsVersion(wine).withWindowsVersion("win2k").go(); remove(wine.prefixDirectory() + "/drive_c/IE 6.0 Full/"); remove(wine.prefixDirectory() + "/drive_c/" + wine.programFiles() + "/Internet Explorer/iexplore.exe"); @@ -66,12 +68,13 @@ new PlainInstaller().withScript(() => { .extract(["-F", "inseng.dll"]); wine.run("iexplore", ["-unregserver"], null, false, true); - wine.overrideDLL() - .set("native", ["inseng"]) - .do(); + + new OverrideDLL(wine).withMode("native", ["inseng"]).go(); + wine.runInsidePrefix("IE 6.0 Full/IE6SETUP.EXE", [], true); - wine.overrideDLL() - .set("native,builtin", [ + + new OverrideDLL(wine) + .withMode("native,builtin", [ "inetcpl.cpl", "itircl", "itss", @@ -84,7 +87,7 @@ new PlainInstaller().withScript(() => { "shlwapi", "urlmon" ]) - .do(); + .go(); var librariesToRegister = [ "actxprxy.dll", @@ -143,10 +146,12 @@ new PlainInstaller().withScript(() => { var progressBar = setupWizard.progressBar(tr("Please wait...")); var i = 1; - librariesToRegister.forEach(function (dll) { + librariesToRegister.forEach(dll => { progressBar.setProgressPercentage((i * 100) / librariesToRegister.length); progressBar.setText(tr("Installing {0}...", dll)); - wine.regsvr32().install(dll); + + new Regsvr32(wine).withDll(dll).go(); + i++; }); @@ -159,8 +164,9 @@ new PlainInstaller().withScript(() => { .miniature([TYPE_ID, CATEGORY_ID, APPLICATION_ID]) .create(); - var registrySettings = new AppResource().application([TYPE_ID, CATEGORY_ID, APPLICATION_ID]).get("ie6.reg"); - wine.regedit().patch(registrySettings); + const registrySettings = new AppResource().application([TYPE_ID, CATEGORY_ID, APPLICATION_ID]).get("ie6.reg"); + + new Regedit(wine).patch(registrySettings); setupWizard.close(); }); diff --git a/Applications/Internet/Internet Explorer 7.0/Online/script.js b/Applications/Internet/Internet Explorer 7.0/Online/script.js index 22f0c564fa..0a07cd7f5b 100644 --- a/Applications/Internet/Internet Explorer 7.0/Online/script.js +++ b/Applications/Internet/Internet Explorer 7.0/Online/script.js @@ -1,15 +1,17 @@ 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 WineShortcut = include("engines.wine.shortcuts.wine"); -include("engines.wine.plugins.override_dll"); -include("engines.wine.plugins.regsvr32"); -include("engines.wine.plugins.windows_version"); const Sandbox = include("engines.wine.verbs.sandbox"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); +const Regsvr32 = include("engines.wine.plugins.regsvr32"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); + new PlainInstaller().withScript(() => { var appsManager = Bean("repositoryManager"); var application = appsManager.getApplication([TYPE_ID, CATEGORY_ID, APPLICATION_ID]); @@ -26,8 +28,8 @@ new PlainInstaller().withScript(() => { wine.run("iexplore", ["-unregserver"], null, false, true); - wine.overrideDLL() - .set("native,builtin", [ + new OverrideDLL(wine) + .withMode("native,builtin", [ "itircl", "itss", "jscript", @@ -39,9 +41,9 @@ new PlainInstaller().withScript(() => { "urlmon", "xmllite" ]) - .set("native", ["iexplore.exe"]) - .set("builtin", ["updspapi"]) - .do(); + .withMode("native", ["iexplore.exe"]) + .withMode("builtin", ["updspapi"]) + .go(); // delete existing IE, otherwise installer will abort with "newer IE installed" remove(wine.prefixDirectory() + "/drive_c/" + wine.programFiles() + "/Internet Explorer/iexplore.exe"); @@ -237,9 +239,12 @@ new PlainInstaller().withScript(() => { .name(ie7installer) .get(); - wine.windowsVersion("winxp", "sp3"); + new WindowsVersion(wine).withWindowsVersion("winxp", "sp3").go(); + wine.wait(); + wine.run(setupFile, [], null, false, true); + wine.wait(); var librairiesToRegister = [ @@ -299,10 +304,12 @@ new PlainInstaller().withScript(() => { var progressBar = setupWizard.progressBar("Please wait..."); var i = 1; - librairiesToRegister.forEach(function (dll) { + librairiesToRegister.forEach(dll => { progressBar.setProgressPercentage((i * 100) / librairiesToRegister.length); progressBar.setText(tr("Installing {0}...", dll)); - wine.regsvr32().install(dll); + + new Regsvr32(wine).withDll(dll).go(); + i++; }); diff --git a/Applications/Office/Adobe Acrobat Reader DC/Online/script.js b/Applications/Office/Adobe Acrobat Reader DC/Online/script.js index 7c28d592c4..6d4a0713c1 100644 --- a/Applications/Office/Adobe Acrobat Reader DC/Online/script.js +++ b/Applications/Office/Adobe Acrobat Reader DC/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"); const Mspatcha = include("engines.wine.verbs.mspatcha"); -include("engines.wine.plugins.windows_version"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); new OnlineInstallerScript() .name("Adobe Acrobat Reader DC") @@ -15,10 +15,10 @@ new OnlineInstallerScript() .checksum("98b2b838e6c4663fefdfd341dfdc596b1eff355c") .category("Office") .executable("AcroRd32.exe") - .preInstall(function (wine /*, wizard*/) { + .preInstall(function (wine) { new Mspatcha(wine).go(); }) - .postInstall(function (wine /*, wizard*/) { + .postInstall(function (wine) { // fix broken dialogs (e.g. preferences) - wine.windowsVersion("winxp"); + new WindowsVersion(wine).withWindowsVersion("winxp").go(); }); diff --git a/Applications/Office/ElsterFormular/Online/script.js b/Applications/Office/ElsterFormular/Online/script.js index 8308267aa8..28f3705dff 100644 --- a/Applications/Office/ElsterFormular/Online/script.js +++ b/Applications/Office/ElsterFormular/Online/script.js @@ -1,8 +1,9 @@ const LocalInstallerScript = include("engines.wine.quick_script.local_installer_script"); -include("engines.wine.plugins.native_application"); const Vcrun2017 = include("engines.wine.verbs.vcrun2017"); +const NativeApplication = include("engines.wine.plugins.native_application"); + new LocalInstallerScript() .name("ElsterFormular") .editor("ELSTER") @@ -16,5 +17,5 @@ new LocalInstallerScript() .preInstall(function (wine /*, wizard*/) { new Vcrun2017(wine).go(); - wine.nativeApplication("pdf"); + new NativeApplication(wine).withExtension("pdf").go(); }); diff --git a/Applications/Office/Microsoft Office 2010/Local/script.js b/Applications/Office/Microsoft Office 2010/Local/script.js index 800fadaab5..27602d4c97 100644 --- a/Applications/Office/Microsoft Office 2010/Local/script.js +++ b/Applications/Office/Microsoft Office 2010/Local/script.js @@ -1,19 +1,17 @@ const LocalInstallerScript = include("engines.wine.quick_script.local_installer_script"); + const WineShortcut = include("engines.wine.shortcuts.wine"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); new LocalInstallerScript() .name("Microsoft Office 2010") .editor("Microsoft") .author("ImperatorS79") .category("Office") -// exe set with WineShorcut - .postInstall(function (wine /*, wizard*/) { - wine - .overrideDLL() - .set("native, builtin", ["riched20"]) - .do(); + // exe set with WineShorcut + .postInstall(function (wine) { + new OverrideDLL(wine).withMode("native, builtin", ["riched20"]).go(); new WineShortcut() .name("Microsoft Word 2010") diff --git a/Applications/Office/Microsoft Office 2013/Local/script.js b/Applications/Office/Microsoft Office 2013/Local/script.js index a9c9bee810..6209483c43 100644 --- a/Applications/Office/Microsoft Office 2013/Local/script.js +++ b/Applications/Office/Microsoft Office 2013/Local/script.js @@ -1,8 +1,9 @@ const LocalInstallerScript = include("engines.wine.quick_script.local_installer_script"); + const WineShortcut = include("engines.wine.shortcuts.wine"); -const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); +const { LATEST_STAGING_VERSION } = include("engines.wine.engine.versions"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); new LocalInstallerScript() .name("Microsoft Office 2013") @@ -12,12 +13,9 @@ new LocalInstallerScript() .wineDistribution("staging") .author("ImperatorS79") .category("Office") -// exe set with WineShorcut - .postInstall(function (wine /*, wizard*/) { - wine - .overrideDLL() - .set("native, builtin", ["riched20"]) - .do(); + // exe set with WineShorcut + .postInstall(function (wine) { + new OverrideDLL(wine).withMode("native, builtin", ["riched20"]).go(); new WineShortcut() .name("Microsoft Word 2013") diff --git a/Engines/Wine/Engine/Implementation/script.js b/Engines/Wine/Engine/Implementation/script.js index 2371e68d90..916866de74 100644 --- a/Engines/Wine/Engine/Implementation/script.js +++ b/Engines/Wine/Engine/Implementation/script.js @@ -23,6 +23,7 @@ module.default = class WineEngine { this._ldPath = propertyReader.getProperty("application.environment.ld"); this._wineEnginesDirectory = propertyReader.getProperty("application.user.engines") + "/wine"; this._winePrefixesDirectory = propertyReader.getProperty("application.user.containers") + "/" + WINE_PREFIX_DIR + "/"; + this._useRuntime = (propertyReader.getProperty("application.environment.wineRuntime") !== "false"); this._wineWebServiceUrl = propertyReader.getProperty("webservice.wine.url"); this._wizard = null; this._workingContainer = ""; @@ -43,7 +44,9 @@ module.default = class WineEngine { } install(subCategory, version) { - this._installRuntime(this.getWizard()); + if (this._useRuntime) { + this._installRuntime(this.getWizard()); + } const [distribution, , architecture] = subCategory.split("-"); const localDirectory = this.getLocalDirectory(subCategory, version); @@ -444,23 +447,26 @@ module.default = class WineEngine { ldPath = userData.ldPath + ldPath; } + let runtimePath = ""; + let runtimePath64 = ""; + if (this._useRuntime) { + runtimePath = this._wineEnginesDirectory + "/runtime/lib/"; + runtimePath64 = this._wineEnginesDirectory + "/runtime/lib64/"; + } + const wineLibPath = this.getLocalDirectory(subCategory, version) + "/lib/"; + const wineLibPath64 = this.getLocalDirectory(subCategory, version) + "/lib64/"; + if (architecture == "amd64") { ldPath = - this._wineEnginesDirectory + - "/runtime/lib64/:" + - this._wineEnginesDirectory + - "/runtime/lib/:" + - this.getLocalDirectory(subCategory, version) + - "/lib64/:" + - this.getLocalDirectory(subCategory, version) + - "/lib/:" + + runtimePath64 + ":" + + runtimePath + ":" + + wineLibPath64 + ":" + + wineLibPath + ":" + ldPath; } else { ldPath = - this._wineEnginesDirectory + - "/runtime/lib/:" + - this.getLocalDirectory(subCategory, version) + - "/lib/:" + + runtimePath + ":" + + wineLibPath + ":" + ldPath; } environment.put("LD_LIBRARY_PATH", ldPath); diff --git a/Engines/Wine/Engine/Versions/script.js b/Engines/Wine/Engine/Versions/script.js index 1a3c7d4d0c..fc6cca54fd 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.2"; /* exported LATEST_DEVELOPMENT_VERSION */ -module.LATEST_DEVELOPMENT_VERSION = "4.15"; +module.LATEST_DEVELOPMENT_VERSION = "4.19"; /* exported LATEST_STAGING_VERSION */ -module.LATEST_STAGING_VERSION = "4.15"; +module.LATEST_STAGING_VERSION = "4.19"; /* exported LATEST_DOS_SUPPORT_VERSION */ module.LATEST_DOS_SUPPORT_VERSION = "4.0"; diff --git a/Engines/Wine/Plugins/DOS support/script.js b/Engines/Wine/Plugins/DOS support/script.js index f37039149d..ab44c1682c 100644 --- a/Engines/Wine/Plugins/DOS support/script.js +++ b/Engines/Wine/Plugins/DOS support/script.js @@ -1,52 +1,40 @@ -const Wine = include("engines.wine.engine.object"); -const {writeToFile, fileExists, cat} = include("utils.functions.filesystem.files"); +const { writeToFile, fileExists, cat } = include("utils.functions.filesystem.files"); /** - * This extensions allows script to add extra settings to dos_support wine builds - * @returns {Wine} Wine object + * Plugin to add extra settings to dos_support wine builds */ -Wine.prototype.dosbox = function () { - var _wine = this; +module.default = class Dosbox { + constructor(wine) { + this.wine = wine; + this.settings = {}; + } /** * Fetch the prefix dosbox configuration file + * * @returns {string} The dosbox configuration file path */ - this.dosConfigFile = function () { - return _wine.prefixDirectory() + "/playonlinux_dos.cfg"; - } - - /** - * Set a setting in the prefix dosbox configuration file - * @param {string} key The key (example: dosbox_memsize) - * @param {*} value The value (example: 64) - * @returns {void} - */ - this.setSetting = function (key, value) { - var settingsToWrite = this.getSettings(); - settingsToWrite[key] = value; - - var newFileString = ""; - for (var keyToWrite in settingsToWrite) { - if (keyToWrite !== "" && settingsToWrite[keyToWrite]) { - newFileString += keyToWrite + "=" + settingsToWrite[keyToWrite] + "\n" - } - } - writeToFile(this.dosConfigFile(), newFileString); + dosConfigFile() { + return `${this.wine.prefixDirectory()}/playonlinux_dos.cfg`; } /** * Fetch all prefix dosbox sttings - * @returns {{}} All the settings + * + * @returns {object} All the settings */ - this.getSettings = function () { + getSettings() { if (fileExists(this.dosConfigFile())) { - var dosboxSettingsContent = cat(this.dosConfigFile()); - var settingResults = {}; - dosboxSettingsContent.split("\n").forEach(function (dosboxSettingLine) { - var splitDosboxSettingLine = dosboxSettingLine.split("="); - settingResults[splitDosboxSettingLine[0]] = splitDosboxSettingLine[1]; - }); + const settingResults = {}; + + cat(this.dosConfigFile()) + .split("\n") + .forEach(dosboxSettingLine => { + const [key, value] = dosboxSettingLine.split("="); + + settingResults[key] = value; + }); + return settingResults; } else { return {}; @@ -54,87 +42,74 @@ Wine.prototype.dosbox = function () { } /** - * Get one dosbox setting + * Sets a dosbox setting + * * @param {string} key The key of the setting (example dosbox_memsize) - * @returns {*} The value (example: 64) + * @param {any} value The value to be set + * @returns {Dosbox} This */ - this.getSetting = function (key) { - return this.getSettings()[key]; - } + withSetting(key, value) { + this.settings[key] = value; - /** - * Set or get one dosbox setting - * @param {string} key The key of the setting (example dosbox_memsize) - * @param {string} value: The value to be set - * @returns {*} The value (example: 64) if this is a getter, the same object otherwise - */ - this.setting = function (key, value) { - if (arguments.length == 1) { - return this.getSettings()[key]; - } else { - this.setSetting(key, value); - } + return this; } /** * Sets dosbox_memsize parameter in the current prefix * https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D + * * @param {int} memSize The memory size - * @returns {string} current memory size + * @returns {Dosbox} This */ - this.memSize = function (memSize) { - if (arguments.length == 0) { - return this.getSetting("dosbox_memsize") - } else { - this.setSetting("dosbox_memsize", memSize); - return this; - } + withMemSize(memSize) { + return this.withSetting("dosbox_memsize", memSize); } /** * Sets render_aspect parameter in the current prefix * https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D + * * @param {boolean} renderAspect The render aspect - * @returns {string} current renderAspect + * @returns {Dosbox} This */ - this.renderAspect = function (renderAspect) { - if (arguments.length == 0) { - return this.getSetting("render_aspect") - } else { - this.setSetting("render_aspect", renderAspect); - return this; - } + withRenderAspect(renderAspect) { + return this.withSetting("render_aspect", renderAspect); } /** * Sets render_frameskip parameter in the current prefix * https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D + * * @param {int} renderFrameSkip The render frameskip - * @returns {string} current frameskip + * @returns {Dosbox} This */ - this.renderFrameSkip = function (renderFrameSkip) { - if (arguments.length == 0) { - return this.getSetting("render_frameskip") - } else { - this.setSetting("render_frameskip", renderFrameSkip); - return this; - } + withRenderFrameSkip(renderFrameSkip) { + return this.withSetting("render_frameskip", renderFrameSkip); } /** * Sets CPU cycles in the current prefix * https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D - * @param {*} cpuCycles (example: max 95% limit 33000) - * @returns {string} current cpuCycles + * + * @param {int} cpuCycles (example: max 95% limit 33000) + * @returns {Dosbox} This */ - this.cpuCycles = function (cpuCycles) { - if (arguments.length == 0) { - return this.getSetting("cpu_cycles") - } else { - this.setSetting("cpu_cycles", cpuCycles); - return this; - } + withCpuCycles(cpuCycles) { + return this.withSetting("cpu_cycles", cpuCycles); } - return this; -} + go() { + const settingsToWrite = this.getSettings(); + + for (const key in this.settings) { + settingsToWrite[key] = this.settings[key]; + } + + const newFileString = Object.entries(settingsToWrite) + .filter(([key, value]) => key !== "" && value) + .map(([key, value]) => `${key}=${value}`) + .join("\n"); + + writeToFile(this.dosConfigFile(), newFileString); + } +}; diff --git a/Engines/Wine/Plugins/DirectDraw renderer/script.js b/Engines/Wine/Plugins/DirectDraw renderer/script.js index 62b8e356f3..1f71275ead 100644 --- a/Engines/Wine/Plugins/DirectDraw renderer/script.js +++ b/Engines/Wine/Plugins/DirectDraw renderer/script.js @@ -1,18 +1,28 @@ -const Wine = include("engines.wine.engine.object"); - -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** - * force the DirectDrawRenderer - * @param {string} mode (gdi or opengl) - * @returns {Wine} Wine object + * Plugin to force the DirectDrawRenderer */ -Wine.prototype.DirectDrawRenderer = function (mode) { - var regeditFileContent = - "REGEDIT4\n" + - "\n" + - "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n" + - "\"DirectDrawRenderer\"=\"" + mode + "\"" - this.regedit().patch(regeditFileContent); - return this; -}; \ No newline at end of file +module.default = class DirectDrawRenderer { + constructor(wine) { + this.wine = wine; + } + + /** + * Selects the used direct draw mode (either gdi or opengl) + * + * @param {string} mode gdi or opengl + * @returns {DirectDrawRenderer} This + */ + withMode(mode) { + this.mode = mode; + + return this; + } + + go() { + const regeditFileContent = `REGEDIT4\n\n[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n"DirectDrawRenderer"="${this.mode}"`; + + new Regedit(this.wine).patch(regeditFileContent); + } +}; diff --git a/Engines/Wine/Plugins/Font smoothing/script.js b/Engines/Wine/Plugins/Font smoothing/script.js index 35a8fb9ce5..27688ee8c5 100644 --- a/Engines/Wine/Plugins/Font smoothing/script.js +++ b/Engines/Wine/Plugins/Font smoothing/script.js @@ -1,44 +1,65 @@ -const Wine = include("engines.wine.engine.object"); - -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** - * Force the Font smoothing - * @param {string} mode ("RGB", "BGR" or "Gray Scale") - * @returns {Wine} Wine object + * Plugin to force the Font smoothing */ -Wine.prototype.fontSmoothing = function (mode) { - if (mode === undefined) - { - throw tr("No font smoothing mode specified!") - } - let fontSmoothingType; - let fontSmoothingOrientation; - if (mode === "RGB") { - fontSmoothingType = "2"; - fontSmoothingOrientation = "1"; - } - else if (mode === "BGR") { - fontSmoothingType = "2"; - fontSmoothingOrientation = "0"; +module.default = class FontSmoothing { + constructor(wine) { + this.wine = wine; } - else if (mode === "Gray Scale"){ - fontSmoothingType = "1"; - fontSmoothingOrientation = "1"; + + /** + * Specifies the used font smoothing mode + * + * @param {string} mode "RGB", "BGR" or "Gray Scale" + * @returns {FontSmoothing} This + */ + withMode(mode) { + this.mode = mode; + + return this; } - else { - throw tr("Unknown font smoothing mode: \"{0}\"", mode); + + fetchSmootingSettings() { + const mode = this.mode; + + if (mode === "RGB") { + return { + fontSmoothingType: "2", + fontSmoothingOrientation: "1" + }; + } else if (mode === "BGR") { + return { + fontSmoothingType: "2", + fontSmoothingOrientation: "0" + }; + } else if (mode === "Gray Scale") { + return { + fontSmoothingType: "1", + fontSmoothingOrientation: "1" + }; + } else { + throw tr('Unknown font smoothing mode: "{0}"', mode); + } } - const regeditFileContent = - "REGEDIT4\n" + - "\n" + - "[HKEY_CURRENT_USER\\Control Panel\\Desktop]\n" + - "\"FontSmoothing\"=\"2\"\n" + - "\"FontSmoothingType\"=dword:0000000" + fontSmoothingType + "\n" + - "\"FontSmoothingGamma\"=dword:00000578\n" + - "\"FontSmoothingOrientation\"=dword:0000000" + fontSmoothingOrientation + "\n"; - - this.regedit().patch(regeditFileContent); - return this; + go() { + const mode = this.mode; + + if (mode === undefined) { + throw new Error(tr("No font smoothing mode specified!")); + } + + const { fontSmoothingType, fontSmoothingOrientation } = this.fetchSmootingSettings(); + + const regeditFileContent = + `REGEDIT4\n\n` + + `[HKEY_CURRENT_USER\\Control Panel\\Desktop]\n` + + `"FontSmoothing"="2"\n` + + `"FontSmoothingType"=dword:0000000${fontSmoothingType}\n` + + `"FontSmoothingGamma"=dword:00000578\n` + + `"FontSmoothingOrientation"=dword:0000000${fontSmoothingOrientation}\n`; + + new Regedit(this.wine).patch(regeditFileContent); + } }; diff --git a/Engines/Wine/Plugins/GLSL/script.js b/Engines/Wine/Plugins/GLSL/script.js index 7bcf5e40c6..cb4a845555 100644 --- a/Engines/Wine/Plugins/GLSL/script.js +++ b/Engines/Wine/Plugins/GLSL/script.js @@ -1,18 +1,28 @@ -const Wine = include("engines.wine.engine.object"); - -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** - * force the Use of GLSL - * @param {string} mode (enabled or disabled) - * @returns {Wine} Wine object + * Plugin to force the use of GLSL */ -Wine.prototype.UseGLSL = function (mode) { - var regeditFileContent = - "REGEDIT4\n" + - "\n" + - "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n" + - "\"UseGLSL\"=\"" + mode + "\"" - this.regedit().patch(regeditFileContent); - return this; -}; \ No newline at end of file +module.default = class GLSL { + constructor(wine) { + this.wine = wine; + } + + /** + * Specifies the mode + * + * @param {string} mode enabled or disabled + * @returns {GLSL} This + */ + withMode(mode) { + this.mode = mode; + + return this; + } + + go() { + const regeditFileContent = `REGEDIT4\n\n[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n"UseGLSL"="${this.mode}"`; + + new Regedit(this.wine).patch(regeditFileContent); + } +}; diff --git a/Engines/Wine/Plugins/OpenGL version/script.js b/Engines/Wine/Plugins/OpenGL version/script.js index d67f248fcd..506a6aecf5 100644 --- a/Engines/Wine/Plugins/OpenGL version/script.js +++ b/Engines/Wine/Plugins/OpenGL version/script.js @@ -1,19 +1,30 @@ -const Wine = include("engines.wine.engine.object"); +const Regedit = include("engines.wine.plugins.regedit"); -include("engines.wine.plugins.regedit"); +module.default = class OpenGL { + constructor(wine) { + this.wine = wine; + } -/** - * sets OpenGL max core version - * @param {number} major major version - * @param {number} minor minor version - * @returns {Wine} Wine object - */ -Wine.prototype.setVersionGL = function (major, minor) { - var regeditFileContent = - "REGEDIT4\n" + - "\n" + - "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n" + - "\"MaxVersionGL\"=dword:000"+ major + "000" + minor - this.regedit().patch(regeditFileContent); - return this; -}; \ No newline at end of file + /** + * Specifies the major and minor versions + * + * @param {number} major The major version + * @param {number} minor The minor version + * @returns {OpenGL} This + */ + withVersion(major, minor) { + this.major = major; + this.minor = minor; + + return this; + } + + go() { + const regeditFileContent = + `REGEDIT4\n\n` + + `[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n` + + `"MaxVersionGL"=dword:000${this.major}000${this.minor}`; + + new Regedit(this.wine).patch(regeditFileContent); + } +}; diff --git a/Engines/Wine/Plugins/UseTakeFocus/script.js b/Engines/Wine/Plugins/UseTakeFocus/script.js index 1fb9940b0c..eb2667269d 100644 --- a/Engines/Wine/Plugins/UseTakeFocus/script.js +++ b/Engines/Wine/Plugins/UseTakeFocus/script.js @@ -1,18 +1,28 @@ -const Wine = include("engines.wine.engine.object"); - -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** - * force the UseTakeFocus - * @param {string} mode ("Y" or "N") - * @returns {Wine} Wine object + * Plugin to force UseTakeFocus */ -Wine.prototype.UseTakeFocus = function (mode) { - var regeditFileContent = - "REGEDIT4\n" + - "\n" + - "[HKEY_CURRENT_USER\\Software\\Wine\\X11 Driver]\n" + - "\"UseTakeFocus\"=\"" + mode + "\"\n"; - this.regedit().patch(regeditFileContent); - return this; +module.default = class TakeFocus { + constructor(wine) { + this.wine = wine; + } + + /** + * Specifies the mode + * + * @param {string} mode "Y" or "N" + * @returns {TakeFocus} This + */ + withMode(mode) { + this.mode = mode; + + return this; + } + + go() { + const regeditFileContent = `REGEDIT4\n\n[HKEY_CURRENT_USER\\Software\\Wine\\X11 Driver]\n"UseTakeFocus"="${this.mode}"\n`; + + new Regedit(this.wine).patch(regeditFileContent); + } }; diff --git a/Engines/Wine/Plugins/Windows version/script.js b/Engines/Wine/Plugins/Windows version/script.js index 413734c1e9..977ca2c78c 100644 --- a/Engines/Wine/Plugins/Windows version/script.js +++ b/Engines/Wine/Plugins/Windows version/script.js @@ -1,72 +1,69 @@ -const Wine = include("engines.wine.engine.object"); - -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** - * default windows version - * @param {string} version (win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31) - * @param {string} [servicePack] e.g. sp3 - * @returns {string|Wine} get: Windows version, set: Wine object + * Plugin to set the windows version */ -Wine.prototype.windowsVersion = function (version, servicePack) { - // get - if (arguments.length == 0) { - return this.regedit().fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "Version"]); +module.default = class WindowsVersion { + constructor(wine) { + this.wine = wine; + this.applications = {}; } - // set - var regeditFileContent; - if (version == null) { - regeditFileContent = - "REGEDIT4\n" + - "\n" + - "[HKEY_CURRENT_USER\\Software\\Wine]\n" + - "\"Version\"=-\n"; - } else { - regeditFileContent = - "REGEDIT4\n" + - "\n" + - "[HKEY_CURRENT_USER\\Software\\Wine]\n" + - "\"Version\"=\"" + version + "\"\n"; + getWindowsVersion() { + return new Regedit(this.wine).fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "Version"]); + } - if (servicePack) { - var servicePackNumber = servicePack.replace("sp", ""); - regeditFileContent += "[HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows NT\\CurrentVersion]\n"; - regeditFileContent += "\"CSDVersion\"=\"Service Pack " + servicePackNumber + "\"\n"; - regeditFileContent += "[HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Windows]\n"; - regeditFileContent += "\"CSDVersion\"=dword:00000" + servicePackNumber + "00\n"; - } + /** + * Specifies the default windows version + * + * @param {string} version win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31 + * @param {string} servicePack e.g. sp3 + * @returns {WindowsVersion} This + */ + withWindowsVersion(version, servicePack) { + this.version = version; + this.servicePack = servicePack; + + return this; } - this.regedit().patch(regeditFileContent); - return this; -}; + /** + * Specifies the windows version for a given application + * @param {string} application The application executable + * @param {string} os The windows version + * @returns {WindowsVersion} This + */ + withApplicationWindowsVersion(application, os) { + this.applications[application] = os; -var SetOsForApplication = function () { - var that = this; - that._regeditFileContent = - "REGEDIT4\n" + - "\n"; + return this; + } - that.wine = function (wine) { - that._wine = wine; - return that; - }; + go() { + let regeditFileContent = `REGEDIT4\n\n[HKEY_CURRENT_USER\\Software\\Wine]\n`; - that.set = function (application, os) { - that._regeditFileContent += "[HKEY_CURRENT_USER\\Software\\Wine\\AppDefaults\\" + application + "]\n"; - that._regeditFileContent += "\"Version\"=\"" + os + "\"\n"; + // set the global windows version + if (this.version) { + regeditFileContent += `"Version"="${this.version}"\n`; - return that; - }; + if (this.servicePack) { + const servicePackNumber = this.servicePack.replace("sp", ""); - that.do = function () { - that._wine.regedit().patch(that._regeditFileContent); - return that._wine; - } -}; + regeditFileContent += `[HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows NT\\CurrentVersion]\n`; + regeditFileContent += `"CSDVersion"="Service Pack ${servicePackNumber}"\n`; + regeditFileContent += `[HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Windows]\n`; + regeditFileContent += `"CSDVersion"=dword:00000${servicePackNumber}00\n`; + } + } else { + regeditFileContent += `"Version"=-\n`; + } -Wine.prototype.setOsForApplication = function () { - return new SetOsForApplication() - .wine(this) + // set the local windows version + Object.entries(this.applications).forEach(([application, os]) => { + regeditFileContent += `[HKEY_CURRENT_USER\\Software\\Wine\\AppDefaults\\${application}]\n`; + regeditFileContent += `"Version"="${os}"\n`; + }); + + new Regedit(this.wine).patch(regeditFileContent); + } }; diff --git a/Engines/Wine/Plugins/csmt/script.js b/Engines/Wine/Plugins/csmt/script.js index 56b03b1756..f671fc3313 100644 --- a/Engines/Wine/Plugins/csmt/script.js +++ b/Engines/Wine/Plugins/csmt/script.js @@ -1,17 +1,16 @@ -const Wine = include("engines.wine.engine.object"); - -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** - * enable command stream multi-threading - * @returns {Wine} Wine object + * Plugin to enable command stream multi-threading */ -Wine.prototype.enableCSMT = function () { - var regeditFileContent = - "REGEDIT4\n" + - "\n" + - "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n" + - "\"csmt\"=dword:1" - this.regedit().patch(regeditFileContent); - return this; -}; \ No newline at end of file +module.default = class CSMT { + constructor(wine) { + this.wine = wine; + } + + go() { + const regeditFileContent = `REGEDIT4\n\n[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n"csmt"=dword:1`; + + new Regedit(this.wine).patch(regeditFileContent); + } +}; diff --git a/Engines/Wine/Plugins/hdpi/script.js b/Engines/Wine/Plugins/hdpi/script.js index e5567ed163..fd74f34201 100644 --- a/Engines/Wine/Plugins/hdpi/script.js +++ b/Engines/Wine/Plugins/hdpi/script.js @@ -1,30 +1,68 @@ -const Wine = include("engines.wine.engine.object"); - -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** -* gets/sets hdpi state -* @param {boolean} [hdpi] true if hdpi shall be enabled -* @returns {boolean|Wine} get: if is hdpi, set: Wine object -*/ -Wine.prototype.hdpi = function (hdpi) { - // get - if (arguments.length == 0) { - return (this.regedit().fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "Mac Driver", "RetinaMode"]) == "y"); + * Plugin to manage the hdpi state + + * @returns {boolean|Wine} get: if is hdpi, set: Wine object + */ +module.default = class HDPI { + constructor(wine) { + this.wine = wine; + } + + /** + * Specifies whether hdpi should be enabled or not + * + * @param {boolean} hdpi true if hdpi shall be enabled + * @returns {HDPI} This + */ + withHdpi(hdpi) { + this.hdpi = hdpi; + + return this; + } + + fetchHdpiInformation() { + if (this.hdpi) { + return { + yn: "y", + fontDpiLogPixels: "dword:000000C0" + }; + } else { + return { + yn: "n", + fontDpiLogPixels: "dword:00000060" + }; + } } - // set - var hdpiYn = hdpi ? "y" : "n"; - var fontDpiLogPixels = hdpi ? "dword:000000C0" : "dword:00000060" - - var regeditFileContent = - "REGEDIT4\n" + - "\n" + - "[HKEY_CURRENT_USER\\Software\\Wine\\Mac Driver]\n" + - "\"RetinaMode\"=\"" + hdpiYn + "\"\n" + - "\n" + - "[HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Hardware Profiles\\Current\\Software\\Fonts]\n" + - "\"LogPixels\"=" + fontDpiLogPixels + "\n"; - this.regedit().patch(regeditFileContent); - return this; + /** + * Fetches whether hdpi is enabled or not + * + * @returns {boolean} True if hdpi is enabled, false otherwise + */ + isHdpi() { + const hdpi = new Regedit(this.wine).fetchValue([ + "HKEY_CURRENT_USER", + "Software", + "Wine", + "Mac Driver", + "RetinaMode" + ]); + + return hdpi == "y"; + } + + go() { + const { yn, fontDpiLogPixels } = this.fetchHdpiInformation(); + + const regeditFileContent = + `REGEDIT4\n\n` + + `[HKEY_CURRENT_USER\\Software\\Wine\\Mac Driver]\n` + + `"RetinaMode"="${yn}"\n\n` + + `[HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Hardware Profiles\\Current\\Software\\Fonts]\n` + + `"LogPixels"=${fontDpiLogPixels}\n`; + + new Regedit(this.wine).patch(regeditFileContent); + } }; diff --git a/Engines/Wine/Plugins/managed/script.js b/Engines/Wine/Plugins/managed/script.js index 06e529b5fa..976c261cbd 100644 --- a/Engines/Wine/Plugins/managed/script.js +++ b/Engines/Wine/Plugins/managed/script.js @@ -1,57 +1,60 @@ -const Wine = include("engines.wine.engine.object"); - -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** -* gets/sets managed state -* @param {boolean} [managed] true if it shall be managed -* @returns {boolean|Wine} get: if is managed, set: Wine object -*/ -Wine.prototype.managed = function (managed) { - // get - if (arguments.length == 0) { - return (this.regedit().fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "X11 Driver", "Managed"]) == "Y"); + * Plugin to set the managed state + * + * @param {boolean} [managed] true if it shall be managed + * @returns {boolean|Wine} get: if is managed, set: Wine object + */ +module.default = class Managed { + constructor(wine) { + this.wine = wine; + this.applications = {}; } - // set - var managedYn = managed ? "Y" : "N"; + /** + * Specifies the global managed state + * + * @param {boolean} managed True if it shall be managed + * @returns {Managed} This + */ + withManaged(managed) { + this.managed = managed; - var regeditFileContent = - "REGEDIT4\n" + - "\n" + - "[HKEY_CURRENT_USER\\Software\\Wine\\X11 Driver]\n" + - "\"Managed\"=\"" + managedYn + "\"\n"; - this.regedit().patch(regeditFileContent); - return this; -}; + return this; + } -var SetManagedForApplication = function () { - var that = this; - that._regeditFileContent = - "REGEDIT4\n" + - "\n"; + /** + * Specifies the managed state for a given application + * @param {string} application The application + * @param {boolean} managed True if the application shall be managed + * @returns {Managed} This + */ + withManagedApplication(application, managed) { + this.applications[application] = managed; - that.wine = function (wine) { - that._wine = wine; - return that; - }; + return this; + } - that.set = function (application, managed) { - var managedYn = managed ? "Y" : "N"; + go() { + let regeditFileContent = `REGEDIT4\n\n[HKEY_CURRENT_USER\\Software\\Wine\\X11 Driver]\n`; - that._regeditFileContent += "[HKEY_CURRENT_USER\\Software\\Wine\\AppDefaults\\" + application + "\\X11 Driver]\n"; - that._regeditFileContent += "\"Managed\"=\"" + managedYn + "\"\n"; + // apply global managed + if (this.managed) { + const globalYN = this.managed ? "Y" : "N"; - return that; - }; + regeditFileContent += `"Managed"="${globalYN}"\n`; + } - that.do = function () { - that._wine.regedit().patch(that._regeditFileContent); - return that._wine; + // apply managed for single applications + Object.entries(this.applications).forEach(([application, value]) => { + const localYN = value ? "Y" : "N"; + + regeditFileContent += + `[HKEY_CURRENT_USER\\Software\\Wine\\AppDefaults\\${application}\\X11 Driver]\n` + + `"Managed"="${localYN}"\n`; + }); + + new Regedit(this.wine).patch(regeditFileContent); } }; - -Wine.prototype.setManagedForApplication = function () { - return new SetManagedForApplication() - .wine(this) -}; \ No newline at end of file diff --git a/Engines/Wine/Plugins/native application/script.js b/Engines/Wine/Plugins/native application/script.js index 57de656416..a15457f4d7 100644 --- a/Engines/Wine/Plugins/native application/script.js +++ b/Engines/Wine/Plugins/native application/script.js @@ -1,41 +1,49 @@ -const Wine = include("engines.wine.engine.object"); - -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** - * use native application for a certain file extension - * @param {string} [extension] file extension (pdf, txt, rtf) - * @returns {string|Wine} get: native application, set: Wine object + * Plugin to use native application for a certain file extension */ -Wine.prototype.nativeApplication = function (extension) { - // FIXME: get - if (arguments.length == 0) { - return this.regedit().fetchValue(["HKEY_CLASSES_ROOT", "." + extension]); +module.default = class NativeApplication { + constructor(wine) { + this.wine = wine; + } + + /** + * Specifies the file extension + * + * @param {string} extension The file extension (pdf, txt, rtf) + * @returns {NativeApplication} This + */ + withExtension(extension) { + this.extension = extension; + + return this; } - // set - var mimetype = null; - switch (extension) { - case "pdf": - mimetype = "application/pdf"; - break; - case "txt": - mimetype = "application/plain"; - break; - case "rtf": - mimetype = "application/rtf"; - break; - default: - throw tr("Could not determine mimetype for file extension \"{0}\"", extension); + fetchMimetype() { + switch (this.extension) { + case "pdf": + return "application/pdf"; + case "txt": + return "application/plain"; + case "rtf": + return "application/rtf"; + default: + throw new Error(tr('Could not determine mimetype for file extension "{0}"', this.extension)); + } + } + + go() { + const mimetype = this.fetchMimetype(); + + const regeditFileContent = + `REGEDIT4\n\n` + + `[HKEY_CLASSES_ROOT\\.${this.extension}]\n` + + `@="${this.extension}file"\n` + + `"Content Type"="${mimetype}"\n` + + `[HKEY_CLASSES_ROOT\\${this.extension}file\\Shell\\Open\\command]\n` + + `@="winebrowser "%1""`; + + new Regedit(this.wine).patch(regeditFileContent); } - var regeditFileContent = - "REGEDIT4\n" + - "\n" + - "[HKEY_CLASSES_ROOT\\." + extension + "]\n" + - "@=\"" + extension + "file\"\n" + - "\"Content Type\"=\"" + mimetype + "\"\n" + - "[HKEY_CLASSES_ROOT\\" + extension + "file\\Shell\\Open\\command]\n" + - "@=\"winebrowser \"%1\"\""; - this.regedit().patch(regeditFileContent); - return this; -}; \ No newline at end of file +}; diff --git a/Engines/Wine/Plugins/nocrashdialog/script.js b/Engines/Wine/Plugins/nocrashdialog/script.js index 1b758da43d..17762d9777 100644 --- a/Engines/Wine/Plugins/nocrashdialog/script.js +++ b/Engines/Wine/Plugins/nocrashdialog/script.js @@ -1,17 +1,16 @@ -const Wine = include("engines.wine.engine.object"); - -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** - * disables the crashdialog - * @returns {Wine} Wine object + * Plugin to disable the crashdialog */ -Wine.prototype.nocrashdialog = function () { - var regeditFileContent = - "REGEDIT4\n" + - "\n" + - "[HKEY_CURRENT_USER\\Software\\Wine\\WineDbg]\n" + - "\"ShowCrashDialog\"=\"00000000\"" - this.regedit().patch(regeditFileContent); - return this; +module.default = class NoCrashDialog { + constructor(wine) { + this.wine = wine; + } + + go() { + const regeditFileContent = `REGEDIT4\n\n[HKEY_CURRENT_USER\\Software\\Wine\\WineDbg]\n"ShowCrashDialog"="00000000"`; + + new Regedit(this.wine).patch(regeditFileContent); + } }; diff --git a/Engines/Wine/Plugins/override DLL/script.js b/Engines/Wine/Plugins/override DLL/script.js index 4ab5d15f82..7331d21972 100644 --- a/Engines/Wine/Plugins/override DLL/script.js +++ b/Engines/Wine/Plugins/override DLL/script.js @@ -1,36 +1,26 @@ -const Wine = include("engines.wine.engine.object"); +const Regedit = include("engines.wine.plugins.regedit"); -include("engines.wine.plugins.regedit"); +module.default = class OverrideDLL { + constructor(wine) { + this.wine = wine; + this.modes = {}; + } -var OverrideDLL = function () { - var that = this; - that._regeditFileContent = - "REGEDIT4\n" + - "\n" + - "[HKEY_CURRENT_USER\\Software\\Wine\\DllOverrides]\n"; + withMode(mode, libraries) { + this.modes[mode] = libraries; - that.wine = function (wine) { - that._wine = wine; - return that; - }; + return this; + } - that.set = function (mode, libraries) { - libraries.forEach(function (library) { - // make sure library does not end with ".dll" - library = library.replace(".dll", ""); - that._regeditFileContent += "\"*" + library + "\"=\"" + mode + "\"\n"; - }); + go() { + let regeditFileContent = `REGEDIT4\n\n[HKEY_CURRENT_USER\\Software\\Wine\\DllOverrides]\n`; - return that; - }; + Object.entries(this.modes) + .map(([mode, libraries]) => libraries.map(library => [library, mode])) + .forEach(([library, mode]) => { + regeditFileContent += `"*${library}"="${mode}"\n`; + }); - that.do = function () { - that._wine.regedit().patch(that._regeditFileContent); - return that._wine; + new Regedit(this.wine).patch(regeditFileContent); } }; - -Wine.prototype.overrideDLL = function () { - return new OverrideDLL() - .wine(this) -}; \ No newline at end of file diff --git a/Engines/Wine/Plugins/regedit/script.js b/Engines/Wine/Plugins/regedit/script.js index 142aa0a5a5..323e64c453 100644 --- a/Engines/Wine/Plugins/regedit/script.js +++ b/Engines/Wine/Plugins/regedit/script.js @@ -1,64 +1,78 @@ -const Wine = include("engines.wine.engine.object"); -const {createTempFile, writeToFile} = include("utils.functions.filesystem.files"); +const { createTempFile, writeToFile } = include("utils.functions.filesystem.files"); + +const FileClass = Java.type("java.io.File"); +const ArrayListClass = Java.type("java.util.ArrayList"); /** - * Regedit support - * @returns {Wine} Wine object + * Plugin to provide Regedit support */ -Wine.prototype.regedit = function () { - var _wine = this; - - this.open = function (args) { - _wine.run("regedit", [args], this.prefixDirectory(), false, true); - return _wine; - }; - - this.patch = function (patchContent) { - if (typeof patchContent.getClass !== "undefined" && patchContent.getClass().getCanonicalName() == "byte[]") { - var StringClass = Java.type('java.lang.String'); - patchContent = new StringClass(patchContent); +module.default = class Regedit { + constructor(wine) { + this.wine = wine; + } + + convertPatchContent(patchContent, contentType) { + if (contentType && contentType === "binary") { + return patchContent.map(byte => String.fromCharCode(byte)).join(""); + } else { + return patchContent; } - var tmpFile = createTempFile("reg"); - writeToFile(tmpFile, patchContent); - _wine.run("regedit", [tmpFile], this.prefixDirectory(), false, true); - return _wine; - }; - - this.deleteKey = function (keyPath) { - _wine.run("reg", ["delete", keyPath, "/f"], this.prefixDirectory(), false, true); - return _wine; - }; - - this.deleteValue = function (keyPath, value) { - _wine.run("reg", ["delete", keyPath, "/v", value, "/f"], this.prefixDirectory(), false, true); - return _wine; - }; - - this.fetchValue = function (keyPath) { - var root = keyPath[0]; - var registryFile; + } + + fetchRegistryFile(root) { switch (root) { case "HKEY_CURRENT_USER": - registryFile = "user.reg"; - break; + return "user.reg"; case "HKEY_LOCAL_MACHINE": - registryFile = "system.reg"; - break; + return "system.reg"; default: - throw "Illegal registry root exception"; + throw new Error("Illegal registry root exception"); } + } + + open(args) { + this.wine.run("regedit", [args], this.wine.prefixDirectory(), false, true); + + return this; + } + + patch(patchContent, contentType) { + const content = this.convertPatchContent(patchContent, contentType); + const tmpFile = createTempFile("reg"); + + writeToFile(tmpFile, content); + + this.wine.run("regedit", [tmpFile], this.wine.prefixDirectory(), false, true); - keyPath.shift(); + return this; + } + + deleteKey(keyPath) { + this.wine.run("reg", ["delete", keyPath, "/f"], this.wine.prefixDirectory(), false, true); + + return this; + } + + deleteValue(keyPath, value) { + this.wine.run("reg", ["delete", keyPath, "/v", value, "/f"], this.wine.prefixDirectory(), false, true); + + return this; + } + + fetchValue(keyPath) { + const root = keyPath.shift(); + + const registryFile = this.fetchRegistryFile(root); // ensure that correct type is passed to Java - var ArrayListClass = Java.type('java.util.ArrayList'); - var keyPathList = new ArrayListClass(); - for (var level in keyPath) { + const keyPathList = new ArrayListClass(); + for (const level in keyPath) { keyPathList.add(keyPath[level]); } - var FileClass = Java.type('java.io.File'); - var registryValue = Bean("registryParser").parseFile(new FileClass(this.prefixDirectory() + "/" + registryFile), root).getChild(keyPathList); + const registryValue = Bean("registryParser") + .parseFile(new FileClass(this.wine.prefixDirectory() + "/" + registryFile), root) + .getChild(keyPathList); if (registryValue == null) { return null; @@ -69,9 +83,5 @@ Wine.prototype.regedit = function () { } else { return registryValue; } - }; - - return this; + } }; - -Wine.prototype.registry = Wine.prototype.regedit; diff --git a/Engines/Wine/Plugins/register font/script.js b/Engines/Wine/Plugins/register font/script.js index 008df099ae..f0040a7a0d 100644 --- a/Engines/Wine/Plugins/register font/script.js +++ b/Engines/Wine/Plugins/register font/script.js @@ -1,39 +1,27 @@ -const Wine = include("engines.wine.engine.object"); +const Regedit = include("engines.wine.plugins.regedit"); -include("engines.wine.plugins.regedit"); - -var RegisterFont = function () { - var that = this; - that._regeditFileContentNT = - "REGEDIT4\n" + - "\n" + - "[HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Fonts]\n"; +module.default = class RegisterFont { + constructor(wine) { + this.wine = wine; + this.fonts = {}; + } - that._regeditFileContent = - "REGEDIT4\n" + - "\n" + - "[HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Fonts]\n"; + withFont(font, file) { + this.fonts[font] = file; - that.wine = function (wine) { - that._wine = wine; - return that; - }; + return this; + } - that.set = function (font, file) { - that._regeditFileContentNT += "\"*" + font + "\"=\"" + file + "\"\n"; - that._regeditFileContent += "\"*" + font + "\"=\"" + file + "\"\n"; + go() { + let regeditFileContentNT = `REGEDIT4\n\n[HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Fonts]\n`; + let regeditFileContent = `REGEDIT4\n\n[HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Fonts]\n`; - return that; - }; + Object.entries(this.fonts).forEach(([font, file]) => { + regeditFileContentNT += `"*${font}"="${file}"\n`; + regeditFileContent += `"*${font}"="${file}"\n`; + }); - that.do = function () { - that._wine.regedit().patch(that._regeditFileContentNT); - that._wine.regedit().patch(that._regeditFileContent); - return that._wine; + new Regedit(this.wine).patch(regeditFileContentNT); + new Regedit(this.wine).patch(regeditFileContent); } }; - -Wine.prototype.registerFont = function () { - return new RegisterFont() - .wine(this) -}; \ No newline at end of file diff --git a/Engines/Wine/Plugins/regsvr32/script.js b/Engines/Wine/Plugins/regsvr32/script.js index 5833f781fb..79291af007 100644 --- a/Engines/Wine/Plugins/regsvr32/script.js +++ b/Engines/Wine/Plugins/regsvr32/script.js @@ -1,16 +1,19 @@ -const Wine = include("engines.wine.engine.object"); - /** -* runs "regsvr32" -* @returns {Wine} Wine object -*/ -Wine.prototype.regsvr32 = function () { - var _wine = this; + * Plugin to run "regsvr32" + */ +module.default = class Regsvr32 { + constructor(wine) { + this.wine = wine; + this.dlls = []; + } + + withDll(dll) { + this.dlls.push(dll); - this.install = function (dll) { - _wine.run("regsvr32", ["/i", dll], this.prefixDirectory(), false, true); - return _wine; - }; + return this; + } - return this; -}; \ No newline at end of file + go() { + this.dlls.forEach(dll => this.wine.run("regsvr32", ["/i", dll], this.wine.prefixDirectory(), false, true)); + } +}; diff --git a/Engines/Wine/Plugins/sound driver/script.js b/Engines/Wine/Plugins/sound driver/script.js index ecbd82b5e8..4bfbae7350 100644 --- a/Engines/Wine/Plugins/sound driver/script.js +++ b/Engines/Wine/Plugins/sound driver/script.js @@ -1,18 +1,28 @@ -const Wine = include("engines.wine.engine.object"); - -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** - * sets sound driver - * @param {string} driver (alsa, pulse) - * @returns {Wine} Wine object + * Plugin to set the sound driver */ -Wine.prototype.setSoundDriver = function (driver) { - var regeditFileContent = - "REGEDIT4\n" + - "\n" + - "[HKEY_CURRENT_USER\\Software\\Wine\\Drivers]\n" + - "\"Audio\"=\"" + driver + "\"\n"; - this.regedit().patch(regeditFileContent); - return this; -}; \ No newline at end of file +module.default = class SoundDriver { + constructor(wine) { + this.wine = wine; + } + + /** + * Specifies the used sound driver + * + * @param {string} driver alsa or pulse + * @returns {SoundDriver} This + */ + withDriver(driver) { + this.driver = driver; + + return this; + } + + go() { + const regeditFileContent = `REGEDIT4\n\n[HKEY_CURRENT_USER\\Software\\Wine\\Drivers]\n"Audio"="${this.driver}"\n`; + + new Regedit(this.wine).patch(regeditFileContent); + } +}; diff --git a/Engines/Wine/Plugins/virtual desktop/script.js b/Engines/Wine/Plugins/virtual desktop/script.js index 4e8485cca9..eb9520218e 100644 --- a/Engines/Wine/Plugins/virtual desktop/script.js +++ b/Engines/Wine/Plugins/virtual desktop/script.js @@ -1,31 +1,58 @@ /* eslint-disable no-undef */ -const Wine = include("engines.wine.engine.object"); -const {getScreenWidth, getScreenHeight} = include("utils.functions.system.virtual_desktop"); +const { getScreenWidth, getScreenHeight } = include("utils.functions.system.virtual_desktop"); -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** - * Sets Virtual Desktop with window resolution - * @param {number} width width of virtual desktop (in px) - * @param {number} height height of virtual desktop (in px) - * @returns {Wine} Wine object + * Plugin to set a Virtual Desktop with window resolution */ -Wine.prototype.setVirtualDesktop = function (width, height) { - if (!width) - { - width = getScreenWidth(); +module.default = class VirtualDesktop { + constructor(wine) { + this.wine = wine; } - if (!height) - { - height = getScreenHeight(); + + /** + * Specifies the dimensions of the virtual desktop + * + * @param {number} width width of virtual desktop (in px) + * @param {number} height height of virtual desktop (in px) + * @returns {VirtualDesktop} This + */ + withDimensions(width, height) { + this.width = width; + this.height = height; + + return this; + } + + fetchDimensions() { + let width = this.width; + let height = this.height; + + if (!width) { + width = getScreenWidth(); + } + + if (!height) { + height = getScreenHeight(); + } + + return { + width: width, + height: height + }; + } + + go() { + const { width, height } = this.fetchDimensions(); + + const regeditFileContent = + `REGEDIT4\n\n` + + `[HKEY_CURRENT_USER\\Software\\Wine\\Explorer\\Desktops]\n` + + `"Default"="${width}x${height}"\n` + + `[HKEY_CURRENT_USER\\Software\\Wine\\Explorer]\n` + + `"Desktop"="Default"\n`; + + new Regedit(this.wine).patch(regeditFileContent); } - const regeditFileContent = - "REGEDIT4\n" + - "\n" + - "[HKEY_CURRENT_USER\\Software\\Wine\\Explorer\\Desktops]\n" + - "\"Default\"=\"" + width + "x" + height + "\"\n" + - "[HKEY_CURRENT_USER\\Software\\Wine\\Explorer]\n" + - "\"Desktop\"=\"" + "Default" + "\"\n"; - this.regedit().patch(regeditFileContent); - return this; }; diff --git a/Engines/Wine/QuickScript/Steam Script/script.js b/Engines/Wine/QuickScript/Steam Script/script.js index d4a464a070..3b7a7d9784 100644 --- a/Engines/Wine/QuickScript/Steam Script/script.js +++ b/Engines/Wine/QuickScript/Steam Script/script.js @@ -1,12 +1,14 @@ 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"); 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 OverrideDLL = include("engines.wine.plugins.override_dll"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); + +const Thread = Java.type("java.lang.Thread"); module.default = class SteamScript extends QuickScript { constructor() { @@ -36,30 +38,46 @@ 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 +85,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 +95,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()); @@ -114,23 +134,26 @@ module.default = class SteamScript extends QuickScript { 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(); - // Fix for Uplay games that are executed on steam - wine.setOsForApplication().set("upc.exe", "winvista").do(); - wine.setOsForApplication().set("UbisoftGameLauncher.exe", "winvista").do(); + new WindowsVersion(wine) + .withApplicationWindowsVersion("upc.exe", "winvista") + .withApplicationWindowsVersion("UbisoftGameLauncher.exe", "winvista") + .go(); // 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 +169,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...")); @@ -173,9 +196,7 @@ module.default = class SteamScript extends QuickScript { // deactivate game overlay if desired if (!this._gameOverlay) { - wine.overrideDLL() - .set("", ["gameoverlayrenderer"]) - .do(); + new OverrideDLL(wine).withMode("", ["gameoverlayrenderer"]).go(); } // back to generic wait (might have been changed in postInstall) @@ -183,4 +204,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 e136c87ae6..000d4c76a0 100644 --- a/Engines/Wine/QuickScript/Uplay Script/script.js +++ b/Engines/Wine/QuickScript/Uplay Script/script.js @@ -1,11 +1,11 @@ const QuickScript = include("engines.wine.quick_script.quick_script"); const Downloader = include("utils.functions.net.download"); const Wine = include("engines.wine.engine.object"); -const {fileExists, createTempFile} = include("utils.functions.filesystem.files"); +const { fileExists, createTempFile } = include("utils.functions.filesystem.files"); const Luna = include("engines.wine.verbs.luna"); const Corefonts = include("engines.wine.verbs.corefonts"); -include("engines.wine.plugins.windows_version"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); module.default = class UplayScript extends QuickScript { constructor() { @@ -22,11 +22,25 @@ module.default = class UplayScript extends QuickScript { } downloadStarted(wine) { - return fileExists(wine.prefixDirectory() + "/drive_c/" + wine.programFiles() + "/Ubisoft/Ubisoft Game Launcher/data/" + this._appId + "/manifests"); + return fileExists( + wine.prefixDirectory() + + "/drive_c/" + + wine.programFiles() + + "/Ubisoft/Ubisoft Game Launcher/data/" + + this._appId + + "/manifests" + ); } downloadFinished(wine) { - return !fileExists(wine.prefixDirectory() + "/drive_c/" + wine.programFiles() + "/Ubisoft/Ubisoft Game Launcher/data/" + this._appId + "/manifests"); + return !fileExists( + wine.prefixDirectory() + + "/drive_c/" + + wine.programFiles() + + "/Ubisoft/Ubisoft Game Launcher/data/" + + this._appId + + "/manifests" + ); } go() { @@ -55,11 +69,18 @@ module.default = class UplayScript extends QuickScript { 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)); + 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 + ) + ); wine.run(tempFile, [], null, false, true); - wine.setOsForApplication().set("upc.exe", "winvista").do(); - wine.setOsForApplication().set("UbisoftGameLauncher.exe", "winvista").do(); + new WindowsVersion(wine) + .withApplicationWindowsVersion("upc.exe", "winvista") + .withApplicationWindowsVersion("UbisoftGameLauncher.exe", "winvista") + .go(); // Uplay installation has finished setupWizard.wait(tr("Please wait...")); @@ -71,7 +92,11 @@ module.default = class UplayScript extends QuickScript { this._createShortcut(wine.prefix()); - wine.runInsidePrefix(wine.programFiles() + "/Ubisoft/Ubisoft Game Launcher/Uplay.exe", ["uplay://launch/" + this._appId + "/0"], true); + wine.runInsidePrefix( + wine.programFiles() + "/Ubisoft/Ubisoft Game Launcher/Uplay.exe", + ["uplay://launch/" + this._appId + "/0"], + true + ); // wait until download is finished setupWizard.wait(tr("Please wait until Uplay has finished the download...")); @@ -91,4 +116,4 @@ module.default = class UplayScript extends QuickScript { setupWizard.close(); } -} +}; diff --git a/Engines/Wine/Settings/DirectDraw renderer/script.js b/Engines/Wine/Settings/DirectDraw renderer/script.js index a94cd5b171..fca3262277 100644 --- a/Engines/Wine/Settings/DirectDraw renderer/script.js +++ b/Engines/Wine/Settings/DirectDraw renderer/script.js @@ -1,6 +1,6 @@ const Wine = include("engines.wine.engine.object"); -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** * setting to set the DirectDraw renderer @@ -22,32 +22,37 @@ module.default = class DirectDrawRendererSetting { } getCurrentOption(container) { - var currentValue = new Wine() - .prefix(container) - .regedit() - .fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "Direct3D", "DirectDrawRenderer"]); + const wine = new Wine().prefix(container); + + const currentValue = new Regedit(wine).fetchValue([ + "HKEY_CURRENT_USER", + "Software", + "Wine", + "Direct3D", + "DirectDrawRenderer" + ]); + // find matching option (use default if not found) - var index = Math.max(this.registryValues.indexOf(currentValue), 0); + const index = Math.max(this.registryValues.indexOf(currentValue), 0); return this.options[index]; } setOption(container, optionIndex) { + const wine = new Wine().prefix(container); + if (0 == optionIndex) { - new Wine() - .prefix(container) - .regedit() - .deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "DirectDrawRenderer"); + new Regedit(wine).deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "DirectDrawRenderer"); } else { - var regeditFileContent = + const regeditFileContent = "REGEDIT4\n" + "\n" + "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n" + - "\"DirectDrawRenderer\"=\"" + this.registryValues[optionIndex] + "\"\n"; - new Wine() - .prefix(container) - .regedit() - .patch(regeditFileContent); + '"DirectDrawRenderer"="' + + this.registryValues[optionIndex] + + '"\n'; + + new Regedit(wine).patch(regeditFileContent); } } -} +}; diff --git a/Engines/Wine/Settings/Font smoothing/script.js b/Engines/Wine/Settings/Font smoothing/script.js index b781688000..4bcdfcd95e 100644 --- a/Engines/Wine/Settings/Font smoothing/script.js +++ b/Engines/Wine/Settings/Font smoothing/script.js @@ -1,7 +1,7 @@ const Wine = include("engines.wine.engine.object"); -include("engines.wine.plugins.regedit"); -include("engines.wine.plugins.font_smoothing"); +const Regedit = include("engines.wine.plugins.regedit"); +const FontSmoothing = include("engines.wine.plugins.font_smoothing"); /** * Setting to set the Fonts Smoothing @@ -21,20 +21,28 @@ module.default = class FontSmoothingSetting { } getCurrentOption(container) { - const fontSmoothing = new Wine() - .prefix(container) - .regedit() - .fetchValue(["HKEY_CURRENT_USER", "Control Panel", "Desktop", "FontSmoothing"]); + const wine = new Wine().prefix(container); - const fontSmoothingType = new Wine() - .prefix(container) - .regedit() - .fetchValue(["HKEY_CURRENT_USER", "Control Panel", "Desktop", "FontSmoothingType"]); + const fontSmoothing = new Regedit(wine).fetchValue([ + "HKEY_CURRENT_USER", + "Control Panel", + "Desktop", + "FontSmoothing" + ]); - const fontSmoothingOrientation = new Wine() - .prefix(container) - .regedit() - .fetchValue(["HKEY_CURRENT_USER", "Control Panel", "Desktop", "FontSmoothingOrientation"]); + const fontSmoothingType = new Regedit(wine).fetchValue([ + "HKEY_CURRENT_USER", + "Control Panel", + "Desktop", + "FontSmoothingType" + ]); + + const fontSmoothingOrientation = new Regedit(wine).fetchValue([ + "HKEY_CURRENT_USER", + "Control Panel", + "Desktop", + "FontSmoothingOrientation" + ]); let index; @@ -56,6 +64,8 @@ module.default = class FontSmoothingSetting { } setOption(container, optionIndex) { + const wine = new Wine().prefix(container); + if (0 === optionIndex) { const regeditFileContent = "REGEDIT4\n" + @@ -66,12 +76,9 @@ module.default = class FontSmoothingSetting { '"FontSmoothingGamma"=dword:00000000\n' + '"FontSmoothingOrientation"=dword:00000001'; - new Wine() - .prefix(container) - .regedit() - .patch(regeditFileContent); + new Regedit(wine).patch(regeditFileContent); } else { - new Wine().prefix(container).fontSmoothing(this.options[optionIndex]); + new FontSmoothing(wine).withMode(this.options[optionIndex]).go(); } } -} +}; diff --git a/Engines/Wine/Settings/GLSL/script.js b/Engines/Wine/Settings/GLSL/script.js index af17d73e85..c59f6f5786 100644 --- a/Engines/Wine/Settings/GLSL/script.js +++ b/Engines/Wine/Settings/GLSL/script.js @@ -1,6 +1,6 @@ const Wine = include("engines.wine.engine.object"); -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** * Setting to enable/disable GLSL @@ -22,31 +22,37 @@ module.default = class GLSLSetting { } getCurrentOption(container) { - var currentValue = new Wine() - .prefix(container) - .regedit() - .fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "Direct3D", "UseGLSL"]); + const wine = new Wine().prefix(container); + + var currentValue = new Regedit(wine).fetchValue([ + "HKEY_CURRENT_USER", + "Software", + "Wine", + "Direct3D", + "UseGLSL" + ]); + // find matching option (use default if not found) - var index = Math.max(this.registryValues.indexOf(currentValue), 0); + const index = Math.max(this.registryValues.indexOf(currentValue), 0); + return this.options[index]; } setOption(container, optionIndex) { + const wine = new Wine().prefix(container); + if (0 == optionIndex) { - new Wine() - .prefix(container) - .regedit() - .deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "UseGLSL"); + new Regedit(wine).deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "UseGLSL"); } else { - var regeditFileContent = + const regeditFileContent = "REGEDIT4\n" + "\n" + "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n" + - "\"UseGLSL\"=\"" + this.registryValues[optionIndex] + "\"\n"; - new Wine() - .prefix(container) - .regedit() - .patch(regeditFileContent); + '"UseGLSL"="' + + this.registryValues[optionIndex] + + '"\n'; + + new Regedit(wine).patch(regeditFileContent); } } -} +}; diff --git a/Engines/Wine/Settings/UseTakeFocus/script.js b/Engines/Wine/Settings/UseTakeFocus/script.js index 31eb1a796c..6105bdf1f0 100644 --- a/Engines/Wine/Settings/UseTakeFocus/script.js +++ b/Engines/Wine/Settings/UseTakeFocus/script.js @@ -1,7 +1,7 @@ const Wine = include("engines.wine.engine.object"); -include("engines.wine.plugins.regedit"); -include("engines.wine.plugins.usetakefocus"); +const Regedit = include("engines.wine.plugins.regedit"); +const TakeFocus = include("engines.wine.plugins.usetakefocus"); /** * Setting to enable/disable UseTakeFocus @@ -24,25 +24,29 @@ module.default = class UseTakeFocusSetting { } getCurrentOption(container) { - var currentValue = new Wine() - .prefix(container) - .regedit() - .fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "X11 Driver", "UseTakeFocus"]); + const wine = new Wine().prefix(container); + + const currentValue = new Regedit(wine).fetchValue([ + "HKEY_CURRENT_USER", + "Software", + "Wine", + "X11 Driver", + "UseTakeFocus" + ]); + // find matching option (use default if not found) - var index = Math.max(this.registryValues.indexOf(currentValue), 0); + const index = Math.max(this.registryValues.indexOf(currentValue), 0); + return this.options[index]; } setOption(container, optionIndex) { + const wine = new Wine().prefix(container); + if (0 == optionIndex) { - new Wine() - .prefix(container) - .regedit() - .deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\X11 Driver", "UseTakeFocus"); + new Regedit(wine).deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\X11 Driver", "UseTakeFocus"); } else { - new Wine() - .prefix(container) - .UseTakeFocus(this.registryValues[optionIndex]); + new TakeFocus(wine).withMode(this.registryValues[optionIndex]).go(); } } -} +}; diff --git a/Engines/Wine/Settings/always offscreen/script.js b/Engines/Wine/Settings/always offscreen/script.js index 7b4750e158..caa0b8f77e 100644 --- a/Engines/Wine/Settings/always offscreen/script.js +++ b/Engines/Wine/Settings/always offscreen/script.js @@ -1,6 +1,6 @@ const Wine = include("engines.wine.engine.object"); -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** * setting to set always offscreen @@ -22,10 +22,15 @@ module.default = class AlwaysOffscreenSetting { } getCurrentOption(container) { - const currentValue = new Wine() - .prefix(container) - .regedit() - .fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "Direct3D", "AlwaysOffscreen"]); + const wine = new Wine().prefix(container); + + const currentValue = new Regedit(wine).fetchValue([ + "HKEY_CURRENT_USER", + "Software", + "Wine", + "Direct3D", + "AlwaysOffscreen" + ]); // find matching option (use default if not found) const index = Math.max(this.registryValues.indexOf(currentValue), 0); @@ -34,21 +39,20 @@ module.default = class AlwaysOffscreenSetting { } setOption(container, optionIndex) { + const wine = new Wine().prefix(container); + if (0 == optionIndex) { - new Wine() - .prefix(container) - .regedit() - .deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "AlwaysOffscreen"); + new Regedit(wine).deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "AlwaysOffscreen"); } else { const regeditFileContent = "REGEDIT4\n" + "\n" + "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n" + - "\"AlwaysOffscreen\"=\"" + this.registryValues[optionIndex] + "\"\n"; - new Wine() - .prefix(container) - .regedit() - .patch(regeditFileContent); + '"AlwaysOffscreen"="' + + this.registryValues[optionIndex] + + '"\n'; + + new Regedit(wine).patch(regeditFileContent); } } -} +}; diff --git a/Engines/Wine/Settings/hdpi/script.js b/Engines/Wine/Settings/hdpi/script.js index 84a35cd1ea..c3b90ac8ae 100644 --- a/Engines/Wine/Settings/hdpi/script.js +++ b/Engines/Wine/Settings/hdpi/script.js @@ -1,11 +1,10 @@ const Wine = include("engines.wine.engine.object"); -include("engines.wine.plugins.hdpi"); +const HDPI = include("engines.wine.plugins.hdpi"); /** * Setting to enable/disable Retina */ -// eslint-disable-next-line no-unused-vars module.default = class HDPISetting { constructor() { this.options = [tr("Disabled"), tr("Enabled")]; @@ -20,16 +19,16 @@ module.default = class HDPISetting { } getCurrentOption(container) { - var currentValue = new Wine() - .prefix(container) - .hdpi(); + const wine = new Wine().prefix(container); + + const currentValue = new HDPI(wine).isHdpi(); return currentValue ? this.options[1] : this.options[0]; } setOption(container, optionIndex) { - new Wine() - .prefix(container) - .hdpi(1 == optionIndex); + const wine = new Wine().prefix(container); + + new HDPI(wine).withHdpi(1 == optionIndex).go(); } -} +}; diff --git a/Engines/Wine/Settings/mouse warp override/script.js b/Engines/Wine/Settings/mouse warp override/script.js index 0b932b4ab2..76027ade89 100644 --- a/Engines/Wine/Settings/mouse warp override/script.js +++ b/Engines/Wine/Settings/mouse warp override/script.js @@ -1,6 +1,6 @@ const Wine = include("engines.wine.engine.object"); -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** * Setting to configure mouse warp override @@ -22,32 +22,37 @@ module.default = class MouseWarpOverrideSetting { } getCurrentOption(container) { - var currentValue = new Wine() - .prefix(container) - .regedit() - .fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "DirectInput", "MouseWarpOverride"]); + const wine = new Wine().prefix(container); + + var currentValue = new Regedit(wine).fetchValue([ + "HKEY_CURRENT_USER", + "Software", + "Wine", + "DirectInput", + "MouseWarpOverride" + ]); + // find matching option (use default if not found) - var index = Math.max(this.registryValues.indexOf(currentValue), 0); + const index = Math.max(this.registryValues.indexOf(currentValue), 0); return this.options[index]; } setOption(container, optionIndex) { + const wine = new Wine().prefix(container); + if (0 == optionIndex) { - new Wine() - .prefix(container) - .regedit() - .deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\DirectInput", "MouseWarpOverride"); + new Regedit(wine).deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\DirectInput", "MouseWarpOverride"); } else { - var regeditFileContent = + const regeditFileContent = "REGEDIT4\n" + "\n" + "[HKEY_CURRENT_USER\\Software\\Wine\\DirectInput]\n" + - "\"MouseWarpOverride\"=\"" + this.registryValues[optionIndex] + "\"\n"; - new Wine() - .prefix(container) - .regedit() - .patch(regeditFileContent); + '"MouseWarpOverride"="' + + this.registryValues[optionIndex] + + '"\n'; + + new Regedit(wine).patch(regeditFileContent); } } -} +}; diff --git a/Engines/Wine/Settings/multisampling/script.js b/Engines/Wine/Settings/multisampling/script.js index 9f9cc02203..96c8cf9ff3 100644 --- a/Engines/Wine/Settings/multisampling/script.js +++ b/Engines/Wine/Settings/multisampling/script.js @@ -1,6 +1,6 @@ const Wine = include("engines.wine.engine.object"); -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** * Setting to configure multisampling @@ -22,31 +22,37 @@ module.default = class MultisamplingSetting { } getCurrentOption(container) { - var currentValue = new Wine() - .prefix(container) - .regedit() - .fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "Direct3D", "Multisampling"]); + const wine = new Wine().prefix(container); + + var currentValue = new Regedit(wine).fetchValue([ + "HKEY_CURRENT_USER", + "Software", + "Wine", + "Direct3D", + "Multisampling" + ]); + // find matching option (use default if not found) - var index = Math.max(this.registryValues.indexOf(currentValue), 0); + const index = Math.max(this.registryValues.indexOf(currentValue), 0); + return this.options[index]; } setOption(container, optionIndex) { + const wine = new Wine().prefix(container); + if (0 == optionIndex) { - new Wine() - .prefix(container) - .regedit() - .deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "Multisampling"); + new Regedit(wine).deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "Multisampling"); } else { - var regeditFileContent = + const regeditFileContent = "REGEDIT4\n" + "\n" + "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n" + - "\"Multisampling\"=\"" + this.registryValues[optionIndex] + "\"\n"; - new Wine() - .prefix(container) - .regedit() - .patch(regeditFileContent); + '"Multisampling"="' + + this.registryValues[optionIndex] + + '"\n'; + + new Regedit(wine).patch(regeditFileContent); } } -} +}; diff --git a/Engines/Wine/Settings/offscreen rendering mode/script.js b/Engines/Wine/Settings/offscreen rendering mode/script.js index 668b84deb0..af016c247b 100644 --- a/Engines/Wine/Settings/offscreen rendering mode/script.js +++ b/Engines/Wine/Settings/offscreen rendering mode/script.js @@ -1,6 +1,6 @@ const Wine = include("engines.wine.engine.object"); -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** * Setting to set the offscreen rendering mode @@ -22,31 +22,37 @@ module.default = class OffscreenRenderingModeSetting { } getCurrentOption(container) { - var currentValue = new Wine() - .prefix(container) - .regedit() - .fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "Direct3D", "OffscreenRenderingMode"]); + const wine = new Wine().prefix(container); + + var currentValue = new Regedit(wine).fetchValue([ + "HKEY_CURRENT_USER", + "Software", + "Wine", + "Direct3D", + "OffscreenRenderingMode" + ]); + // find matching option (use default if not found) - var index = Math.max(this.registryValues.indexOf(currentValue), 0); + const index = Math.max(this.registryValues.indexOf(currentValue), 0); + return this.options[index]; } setOption(container, optionIndex) { + const wine = new Wine().prefix(container); + if (0 == optionIndex) { - new Wine() - .prefix(container) - .regedit() - .deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "OffscreenRenderingMode"); + new Regedit(wine).deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "OffscreenRenderingMode"); } else { - var regeditFileContent = + const regeditFileContent = "REGEDIT4\n" + "\n" + "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n" + - "\"OffscreenRenderingMode\"=\"" + this.registryValues[optionIndex] + "\"\n"; - new Wine() - .prefix(container) - .regedit() - .patch(regeditFileContent); + '"OffscreenRenderingMode"="' + + this.registryValues[optionIndex] + + '"\n'; + + new Regedit(wine).patch(regeditFileContent); } } -} +}; diff --git a/Engines/Wine/Settings/render target lock mode/script.js b/Engines/Wine/Settings/render target lock mode/script.js index c063e03ce1..faf7676c05 100644 --- a/Engines/Wine/Settings/render target lock mode/script.js +++ b/Engines/Wine/Settings/render target lock mode/script.js @@ -1,6 +1,6 @@ const Wine = include("engines.wine.engine.object"); -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** * Setting to set the render target lock mode @@ -22,31 +22,37 @@ module.default = class RenderTargetModeLockSetting { } getCurrentOption(container) { - var currentValue = new Wine() - .prefix(container) - .regedit() - .fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "Direct3D", "RenderTargetModeLock"]); + const wine = new Wine().prefix(container); + + var currentValue = new Regedit(wine).fetchValue([ + "HKEY_CURRENT_USER", + "Software", + "Wine", + "Direct3D", + "RenderTargetModeLock" + ]); + // find matching option (use default if not found) - var index = Math.max(this.registryValues.indexOf(currentValue), 0); + const index = Math.max(this.registryValues.indexOf(currentValue), 0); + return this.options[index]; } setOption(container, optionIndex) { + const wine = new Wine().prefix(container); + if (0 == optionIndex) { - new Wine() - .prefix(container) - .regedit() - .deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "RenderTargetModeLock"); + new Regedit(wine).deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "RenderTargetModeLock"); } else { - var regeditFileContent = + const regeditFileContent = "REGEDIT4\n" + "\n" + "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n" + - "\"RenderTargetModeLock\"=\"" + this.registryValues[optionIndex] + "\"\n"; - new Wine() - .prefix(container) - .regedit() - .patch(regeditFileContent); + '"RenderTargetModeLock"="' + + this.registryValues[optionIndex] + + '"\n'; + + new Regedit(wine).patch(regeditFileContent); } } -} +}; diff --git a/Engines/Wine/Settings/strict draw ordering/script.js b/Engines/Wine/Settings/strict draw ordering/script.js index 6a7afa4520..0c0e4095d4 100644 --- a/Engines/Wine/Settings/strict draw ordering/script.js +++ b/Engines/Wine/Settings/strict draw ordering/script.js @@ -1,6 +1,6 @@ const Wine = include("engines.wine.engine.object"); -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** * Setting to configure strict draw ordering @@ -22,31 +22,37 @@ module.default = class StrictDrawOrderingSetting { } getCurrentOption(container) { - var currentValue = new Wine() - .prefix(container) - .regedit() - .fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "Direct3D", "StrictDrawOrdering"]); + const wine = new Wine().prefix(container); + + var currentValue = new Regedit(wine).fetchValue([ + "HKEY_CURRENT_USER", + "Software", + "Wine", + "Direct3D", + "StrictDrawOrdering" + ]); + // find matching option (use default if not found) - var index = Math.max(this.registryValues.indexOf(currentValue), 0); + const index = Math.max(this.registryValues.indexOf(currentValue), 0); + return this.options[index]; } setOption(container, optionIndex) { + const wine = new Wine().prefix(container); + if (0 == optionIndex) { - new Wine() - .prefix(container) - .regedit() - .deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "StrictDrawOrdering"); + new Regedit(wine).deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "StrictDrawOrdering"); } else { - var regeditFileContent = + const regeditFileContent = "REGEDIT4\n" + "\n" + "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n" + - "\"StrictDrawOrdering\"=\"" + this.registryValues[optionIndex] + "\"\n"; - new Wine() - .prefix(container) - .regedit() - .patch(regeditFileContent); + '"StrictDrawOrdering"="' + + this.registryValues[optionIndex] + + '"\n'; + + new Regedit(wine).patch(regeditFileContent); } } -} +}; diff --git a/Engines/Wine/Settings/video memory size/script.js b/Engines/Wine/Settings/video memory size/script.js index 37a1428fec..53be7ad9c4 100644 --- a/Engines/Wine/Settings/video memory size/script.js +++ b/Engines/Wine/Settings/video memory size/script.js @@ -1,6 +1,6 @@ const Wine = include("engines.wine.engine.object"); -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** * Setting to set the video memory size @@ -22,31 +22,37 @@ module.default = class VideoMemorySizeSetting { } getCurrentOption(container) { - var currentValue = new Wine() - .prefix(container) - .regedit() - .fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "Direct3D", "VideoMemorySize"]); + const wine = new Wine().prefix(container); + + const currentValue = new Regedit(wine).fetchValue([ + "HKEY_CURRENT_USER", + "Software", + "Wine", + "Direct3D", + "VideoMemorySize" + ]); + // find matching option (use default if not found) - var index = Math.max(this.registryValues.indexOf(currentValue), 0); + const index = Math.max(this.registryValues.indexOf(currentValue), 0); + return this.options[index]; } setOption(container, optionIndex) { + const wine = new Wine().prefix(container); + if (0 == optionIndex) { - new Wine() - .prefix(container) - .regedit() - .deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "VideoMemorySize"); + new Regedit(wine).deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "VideoMemorySize"); } else { - var regeditFileContent = + const regeditFileContent = "REGEDIT4\n" + "\n" + "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n" + - "\"VideoMemorySize\"=\"" + this.registryValues[optionIndex] + "\"\n"; - new Wine() - .prefix(container) - .regedit() - .patch(regeditFileContent); + '"VideoMemorySize"="' + + this.registryValues[optionIndex] + + '"\n'; + + new Regedit(wine).patch(regeditFileContent); } } -} +}; diff --git a/Engines/Wine/Tools/Wine Registry Editor/script.js b/Engines/Wine/Tools/Wine Registry Editor/script.js index ff341a7318..eea777b0e5 100644 --- a/Engines/Wine/Tools/Wine Registry Editor/script.js +++ b/Engines/Wine/Tools/Wine Registry Editor/script.js @@ -1,7 +1,5 @@ const Wine = include("engines.wine.engine.object"); -include("engines.wine.plugins.regedit"); - /** * Tool to open the Wine registry editor */ @@ -12,8 +10,6 @@ module.default = class WineRegistryEditorTool { } run(container) { - new Wine() - .prefix(container) - .run("regedit", [], null, false, true); + new Wine().prefix(container).run("regedit", [], null, false, true); } -} +}; diff --git a/Engines/Wine/Verbs/D9VK/script.js b/Engines/Wine/Verbs/D9VK/script.js index 073344f30a..bc0e390a32 100644 --- a/Engines/Wine/Verbs/D9VK/script.js +++ b/Engines/Wine/Verbs/D9VK/script.js @@ -7,7 +7,7 @@ const operatingSystemFetcher = Bean("operatingSystemFetcher"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install D9VK @@ -34,7 +34,7 @@ class D9VK { const wizard = this.wine.wizard(); const prefixDirectory = this.wine.prefixDirectory(); const system32directory = this.wine.system32directory(); - const architecture = this.wine.architecture(): + const architecture = this.wine.architecture(); print("NOTE: Wine version should be greater or equal to 3.10"); @@ -77,10 +77,7 @@ class D9VK { if (file.endsWith(".dll")) { cp(`${d9vkTmpDir}/x32/${file}`, system32directory); - this.wine - .overrideDLL() - .set("native", [file]) - .do(); + new OverrideDLL(this.wine).withMode("native", [file]).go(); } }); diff --git a/Engines/Wine/Verbs/DXVK/script.js b/Engines/Wine/Verbs/DXVK/script.js index 6992625e9a..7cbc461a77 100644 --- a/Engines/Wine/Verbs/DXVK/script.js +++ b/Engines/Wine/Verbs/DXVK/script.js @@ -7,7 +7,7 @@ const operatingSystemFetcher = Bean("operatingSystemFetcher"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install DXVK @@ -84,10 +84,7 @@ class DXVK { if (file.endsWith(".dll")) { cp(`${dxvkTmpDir}/x32/${file}`, sys32dir); - this.wine - .overrideDLL() - .set("native", [file]) - .do(); + new OverrideDLL(this.wine).withMode("native", [file]).go(); } }); diff --git a/Engines/Wine/Verbs/FAudio/script.js b/Engines/Wine/Verbs/FAudio/script.js index 53e48eb429..3d3182cd5c 100644 --- a/Engines/Wine/Verbs/FAudio/script.js +++ b/Engines/Wine/Verbs/FAudio/script.js @@ -2,10 +2,11 @@ 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 { getGithubReleases } = include("utils.functions.net.githubreleases"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install FAudio @@ -38,7 +39,8 @@ class FAudio { } if (typeof this.faudioVersion !== "string") { - this.faudioVersion = "19.08"; + const versions = getGithubReleases("Kron4ek", "FAudio-Builds", wizard); + this.faudioVersion = versions[0]; } const setupFile = new Resource() @@ -61,10 +63,7 @@ class FAudio { if (file.endsWith(".dll")) { cp(`${faudioDir}/x64/${file}`, system64directory); - this.wine - .overrideDLL() - .set("native", [file]) - .do(); + new OverrideDLL(this.wine).withMode("native", [file]).go(); } }); } @@ -76,9 +75,9 @@ class FAudio { 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 versions = getGithubReleases("Kron4ek", "FAudio-Builds", wizard); - const selectedVersion = wizard.menu(tr("Please select the version."), versions, "19.08"); + const selectedVersion = wizard.menu(tr("Please select the version."), versions, versions[0]); // install selected version new FAudio(wine).withVersion(selectedVersion.text).go(); diff --git a/Engines/Wine/Verbs/Remove Mono/script.js b/Engines/Wine/Verbs/Remove Mono/script.js index 6261f18752..767df5b157 100644 --- a/Engines/Wine/Verbs/Remove Mono/script.js +++ b/Engines/Wine/Verbs/Remove Mono/script.js @@ -3,7 +3,7 @@ const { remove } = include("utils.functions.filesystem.files"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** * Verb to remove mono @@ -21,15 +21,15 @@ class RemoveMono { if (this.wine.uninstall("Mono")) { wizard.wait(tr("Please wait...")); - this.wine.regedit().deleteKey("HKLM\\Software\\Microsoft\\.NETFramework\\v2.0.50727\\SBSDisabled"); + new Regedit(this.wine).deleteKey("HKLM\\Software\\Microsoft\\.NETFramework\\v2.0.50727\\SBSDisabled"); wizard.wait(tr("Please wait...")); - this.wine.regedit().deleteKey("HKLM\\Software\\Microsoft\\NET Framework Setup\\NDP\\v3.5"); + new Regedit(this.wine).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"); + new Regedit(this.wine).deleteKey("HKLM\\Software\\Microsoft\\NET Framework Setup\\NDP\\v4"); remove(`${system32directory}/mscoree.dll`); diff --git a/Engines/Wine/Verbs/Tahoma/script.js b/Engines/Wine/Verbs/Tahoma/script.js index 44ec9d1cb4..5e75061757 100644 --- a/Engines/Wine/Verbs/Tahoma/script.js +++ b/Engines/Wine/Verbs/Tahoma/script.js @@ -5,7 +5,7 @@ const { CabExtract } = include("utils.functions.filesystem.extract"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.register_font"); +const RegisterFont = include("engines.wine.plugins.register_font"); /** * Verb to install the Tahoma font @@ -36,11 +36,10 @@ class Tahoma { 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(); + new RegisterFont(this.wine) + .withFont("Tahoma", "tahoma.ttf") + .withFont("Tahoma Bold", "tahomabd.ttf") + .go(); } static install(container) { diff --git a/Engines/Wine/Verbs/VK9/script.js b/Engines/Wine/Verbs/VK9/script.js index 0264b30f59..8b0f42b9c3 100644 --- a/Engines/Wine/Verbs/VK9/script.js +++ b/Engines/Wine/Verbs/VK9/script.js @@ -5,7 +5,7 @@ const { cp, remove } = include("utils.functions.filesystem.files"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); const operatingSystemFetcher = Bean("operatingSystemFetcher"); @@ -95,10 +95,7 @@ class VK9 { remove(`${prefixDirectory}/TMP64/`); } - this.wine - .overrideDLL() - .set("native", ["d3d9"]) - .do(); + new OverrideDLL(this.wine).withMode("native", ["d3d9"]).go(); } static install(container) { diff --git a/Engines/Wine/Verbs/adobeair/script.js b/Engines/Wine/Verbs/adobeair/script.js index c5d334f5fb..a7289adacb 100644 --- a/Engines/Wine/Verbs/adobeair/script.js +++ b/Engines/Wine/Verbs/adobeair/script.js @@ -3,7 +3,7 @@ const Resource = include("utils.functions.net.resource"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.windows_version"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); /** * Verb to install adobeair @@ -15,11 +15,12 @@ class AdobeAir { 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(); + const currentWindowsVersion = new WindowsVersion(this.wine).getWindowsVersion(); - this.wine.windowsVersion("winxp"); + new WindowsVersion(this.wine).withWindowsVersion("winxp").go(); const adobeair = new Resource() .wizard(wizard) @@ -28,9 +29,10 @@ class AdobeAir { .get(); this.wine.run(adobeair); + this.wine.wait(); - this.wine.windowsVersion(currentWindowsVersion); + new WindowsVersion(this.wine).withWindowsVersion(currentWindowsVersion).go(); } static install(container) { diff --git a/Engines/Wine/Verbs/amstream/script.js b/Engines/Wine/Verbs/amstream/script.js index 91b430bbe3..8535cbefc4 100644 --- a/Engines/Wine/Verbs/amstream/script.js +++ b/Engines/Wine/Verbs/amstream/script.js @@ -5,8 +5,8 @@ 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"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); +const Regsvr32 = include("engines.wine.plugins.regsvr32"); /** * Verb to install amstream @@ -49,7 +49,7 @@ class Amstream { system32directory ); - this.wine.regsvr32().install("amstream.dll"); + new Regsvr32(this.wine).withDll("amstream.dll").go(); if (architecture == "amd64") { const system64directory = this.wine.system64directory(); @@ -84,10 +84,7 @@ class Amstream { this.wine.regsvr64().install("amstream.dll"); } - this.wine - .overrideDLL() - .set("native,builtin", ["amstream"]) - .do(); + new OverrideDLL(this.wine).withMode("native,builtin", ["amstream"]).go(); } static install(container) { diff --git a/Engines/Wine/Verbs/corefonts/script.js b/Engines/Wine/Verbs/corefonts/script.js index 2cf6ddf899..b16a397f92 100644 --- a/Engines/Wine/Verbs/corefonts/script.js +++ b/Engines/Wine/Verbs/corefonts/script.js @@ -4,7 +4,7 @@ const { CabExtract } = include("utils.functions.filesystem.extract"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.register_font"); +const RegisterFont = include("engines.wine.plugins.register_font"); /** * Verb to install corefonts @@ -107,38 +107,37 @@ class Corefonts { 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(); + new RegisterFont(this.wine) + .withFont("Arial", "Arial.TTF") + .withFont("Arial Bold", "Arialbd.TTF") + .withFont("Arial Bold Italic", "Arialbi.TTF") + .withFont("Arial Italic", "Ariali.TTF") + .withFont("Arial Black", "AriBlk.TTF") + .withFont("Comic Sans MS", "Comic.TTF") + .withFont("Comic Sans MS Bold", "Comicbd.TTF") + .withFont("Courier New", "Cour.TTF") + .withFont("Courier New Bold", "CourBD.TTF") + .withFont("Courier New Bold Italic", "CourBI.TTF") + .withFont("Courier New Italic", "Couri.TTF") + .withFont("Georgia", "Georgia.TTF") + .withFont("Georgia Bold", "Georgiab.TTF") + .withFont("Georgia Bold Italic", "Georgiaz.TTF") + .withFont("Georgia Italic", "Georgiai.TTF") + .withFont("Impact", "Impact.TTF") + .withFont("Times New Roman", "Times.TTF") + .withFont("Times New Roman Bold", "Timesbd.TTF") + .withFont("Times New Roman Bold Italic", "Timesbi.TTF") + .withFont("Times New Roman Italic", "Timesi.TTF") + .withFont("Trebucet MS", "Trebuc.TTF") + .withFont("Trebucet MS Bold", "Trebucbd.TTF") + .withFont("Trebucet MS Bold Italic", "Trebucbi.TTF") + .withFont("Trebucet MS Italic", "Trebucit.TTF") + .withFont("Verdana", "Verdana.TTF") + .withFont("Verdana Bold", "Verdanab.TTF") + .withFont("Verdana Bold Italic", "Verdanaz.TTF") + .withFont("Verdana Italic", "Verdanai.TTF") + .withFont("Webdings", "Webdings.TTF") + .go(); } static install(container) { diff --git a/Engines/Wine/Verbs/crypt32/script.js b/Engines/Wine/Verbs/crypt32/script.js index 50ecb962af..04be485636 100644 --- a/Engines/Wine/Verbs/crypt32/script.js +++ b/Engines/Wine/Verbs/crypt32/script.js @@ -2,7 +2,7 @@ const Wine = include("engines.wine.engine.object"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); const WindowsXPSP3 = include("engines.wine.verbs.sp3extract"); /** @@ -17,10 +17,7 @@ class Crypt32 { new WindowsXPSP3(this.wine).withFileToExtract("crypt32.dll").go(); new WindowsXPSP3(this.wine).withFileToExtract("msasn1.dll").go(); - this.wine - .overrideDLL() - .set("native, builtin", ["crypt32"]) - .do(); + new OverrideDLL(this.wine).withMode("native, builtin", ["crypt32"]).go(); } static install(container) { diff --git a/Engines/Wine/Verbs/d3drm/script.js b/Engines/Wine/Verbs/d3drm/script.js index 28c3516a17..a1adc2dfa0 100644 --- a/Engines/Wine/Verbs/d3drm/script.js +++ b/Engines/Wine/Verbs/d3drm/script.js @@ -4,7 +4,7 @@ const { CabExtract } = include("utils.functions.filesystem.extract"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install d3drm @@ -42,10 +42,7 @@ class D3drm { .to(system32directory) .extract(["-L", "-F", "d3drm.dll"]); - this.wine - .overrideDLL() - .set("native", ["d3drm"]) - .do(); + new OverrideDLL(this.wine).withMode("native", ["d3drm"]).go(); } static install(container) { diff --git a/Engines/Wine/Verbs/d3dx10/script.js b/Engines/Wine/Verbs/d3dx10/script.js index c17812b978..946f1bd554 100644 --- a/Engines/Wine/Verbs/d3dx10/script.js +++ b/Engines/Wine/Verbs/d3dx10/script.js @@ -4,7 +4,7 @@ const { CabExtract } = include("utils.functions.filesystem.extract"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install D3DX10 @@ -112,9 +112,8 @@ class D3DX10 { this.extractDirectXToSystemDirectory(progressBar, filesToExtractx64, system64directory, "d3dx10*.dll"); } - this.wine - .overrideDLL() - .set("native", [ + new OverrideDLL(this.wine) + .withMode("native", [ "d3dx10_33", "d3dx10_34", "d3dx10_35", @@ -127,7 +126,7 @@ class D3DX10 { "d3dx10_42", "d3dx10_43" ]) - .do(); + .go(); } static install(container) { diff --git a/Engines/Wine/Verbs/d3dx11/script.js b/Engines/Wine/Verbs/d3dx11/script.js index d5b0d71961..6f6ddef5f1 100644 --- a/Engines/Wine/Verbs/d3dx11/script.js +++ b/Engines/Wine/Verbs/d3dx11/script.js @@ -4,7 +4,7 @@ const { CabExtract } = include("utils.functions.filesystem.extract"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install D3DX11 @@ -92,10 +92,7 @@ class D3DX11 { this.extractDirectXToSystemDirectory(progressBar, filesToExtractx64, system64directory, "*.dll"); } - this.wine - .overrideDLL() - .set("native, builtin", ["d3dx11_42", "d3dx11_43"]) - .do(); + new OverrideDLL(this.wine).withMode("native, builtin", ["d3dx11_42", "d3dx11_43"]).go(); } static install(container) { diff --git a/Engines/Wine/Verbs/d3dx9/script.js b/Engines/Wine/Verbs/d3dx9/script.js index ea3e497247..91dbbce5ee 100644 --- a/Engines/Wine/Verbs/d3dx9/script.js +++ b/Engines/Wine/Verbs/d3dx9/script.js @@ -4,7 +4,7 @@ const { CabExtract } = include("utils.functions.filesystem.extract"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install D3DX9 @@ -128,9 +128,8 @@ class D3DX9 { this.extractDirectXToSystemDirectory(progressBar, filesToExtractx64, system64directory, "d3dx9*.dll"); } - this.wine - .overrideDLL() - .set("native", [ + new OverrideDLL(this.wine) + .withMode("native", [ "d3dx9_24", "d3dx9_25", "d3dx9_26", @@ -152,7 +151,7 @@ class D3DX9 { "d3dx9_42", "d3dx9_43" ]) - .do(); + .go(); } static install(container) { diff --git a/Engines/Wine/Verbs/devenum/script.js b/Engines/Wine/Verbs/devenum/script.js index 24fcc1f3ae..458f4120f8 100644 --- a/Engines/Wine/Verbs/devenum/script.js +++ b/Engines/Wine/Verbs/devenum/script.js @@ -4,8 +4,8 @@ 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"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); +const Regsvr32 = include("engines.wine.plugins.regsvr32"); /** * Verb to install devenum @@ -43,11 +43,9 @@ class Devenum { .to(system32directory) .extract(["-L", "-F", "devenum.dll"]); - this.wine.regsvr32().install("devenum.dll"); - this.wine - .overrideDLL() - .set("native", ["devenum"]) - .do(); + new Regsvr32(this.wine).withDll("devenum.dll").go(); + + new OverrideDLL(this.wine).withMode("native", ["devenum"]).go(); } static install(container) { diff --git a/Engines/Wine/Verbs/dotnet20/script.js b/Engines/Wine/Verbs/dotnet20/script.js index f560bd7d2c..f2db5c3371 100644 --- a/Engines/Wine/Verbs/dotnet20/script.js +++ b/Engines/Wine/Verbs/dotnet20/script.js @@ -1,11 +1,11 @@ const Wine = include("engines.wine.engine.object"); + const Resource = include("utils.functions.net.resource"); 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"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); const RemoveMono = include("engines.wine.verbs.remove_mono"); /** @@ -18,11 +18,13 @@ class DotNET20 { go() { const wizard = this.wine.wizard(); - const windowsVersion = this.wine.windowsVersion(); + + const windowsVersion = new WindowsVersion(this.wine).getWindowsVersion(); + const system32directory = this.wine.system32directory(); if (this.wine.architecture() == "x86") { - this.wine.windowsVersion("win2k"); + new WindowsVersion(this.wine).withWindowsVersion("win2k").go(); const setupFile32 = new Resource() .wizard(wizard) @@ -37,7 +39,7 @@ class DotNET20 { this.wine.run(setupFile32, ["/q:a", "/c:install.exe /q"], null, false, true); - this.wine.windowsVersion(windowsVersion); + new WindowsVersion(this.wine).withWindowsVersion(windowsVersion).go(); remove(`${system32directory}/msvcr80.dll`); remove(`${system32directory}/msvcm80.dll`); diff --git a/Engines/Wine/Verbs/dotnet20sp2/script.js b/Engines/Wine/Verbs/dotnet20sp2/script.js index 05bf86947b..fa6f584e27 100644 --- a/Engines/Wine/Verbs/dotnet20sp2/script.js +++ b/Engines/Wine/Verbs/dotnet20sp2/script.js @@ -4,9 +4,9 @@ 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"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); +const Regedit = include("engines.wine.plugins.regedit"); const RemoveMono = include("engines.wine.verbs.remove_mono"); /** @@ -19,15 +19,13 @@ class DotNET20SP2 { go() { const wizard = this.wine.wizard(); - const osVersion = this.wine.windowsVersion(); const system32directory = this.wine.system32directory(); - this.wine.windowsVersion("winxp"); + const osVersion = new WindowsVersion(this.wine).getWindowsVersion(); - this.wine - .overrideDLL() - .set("builtin", ["ngen.exe", "regsvcs.exe", "mscorsvw.exe"]) - .do(); + new WindowsVersion(this.wine).withWindowsVersion("winxp").go(); + + new OverrideDLL(this.wine).withMode("builtin", ["ngen.exe", "regsvcs.exe", "mscorsvw.exe"]).go(); new RemoveMono(this.wine).go(); @@ -63,11 +61,11 @@ class DotNET20SP2 { this.wine.run(setupFile64, [setupFile64, "/q", '/c:"install.exe /q"'], null, false, true); } - this.wine.windowsVersion(osVersion); + new WindowsVersion(this.wine).withWindowsVersion(osVersion).go(); - 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"); + new Regedit(this.wine).deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*ngen.exe"); + new Regedit(this.wine).deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*regsvcs.exe"); + new Regedit(this.wine).deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*mscorsvw.exe"); } static install(container) { diff --git a/Engines/Wine/Verbs/dotnet40/script.js b/Engines/Wine/Verbs/dotnet40/script.js index 4ddb4b86ee..bdc031c1ed 100755 --- a/Engines/Wine/Verbs/dotnet40/script.js +++ b/Engines/Wine/Verbs/dotnet40/script.js @@ -3,9 +3,9 @@ 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"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); +const Regedit = include("engines.wine.plugins.regedit"); const RemoveMono = include("engines.wine.verbs.remove_mono"); /** @@ -18,7 +18,8 @@ class DotNET40 { go() { const wizard = this.wine.wizard(); - const windowsVersion = this.wine.windowsVersion(); + + const windowsVersion = new WindowsVersion(this.wine).getWindowsVersion(); if (this.wine.architecture() == "amd64") { print( @@ -40,12 +41,9 @@ class DotNET40 { new RemoveMono(this.wine).go(); - this.wine.windowsVersion("winxp"); + new WindowsVersion(this.wine).withWindowsVersion("winxp").go(); - this.wine - .overrideDLL() - .set("builtin", ["fusion"]) - .do(); + new OverrideDLL(this.wine).withMode("builtin", ["fusion"]).go(); wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.0")); @@ -53,12 +51,9 @@ class DotNET40 { wizard.wait(tr("Please wait...")); - this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); + new Regedit(this.wine).deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); - this.wine - .overrideDLL() - .set("native", ["mscoree"]) - .do(); + new OverrideDLL(this.wine).withMode("native", ["mscoree"]).go(); wizard.wait(tr("Please wait...")); @@ -69,13 +64,13 @@ class DotNET40 { '"Install"=dword:0001\n' + '"Version"="4.0.30319"'; - this.wine.regedit().patch(regeditFileContent); + new Regedit(this.wine).patch(regeditFileContent); //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); + new WindowsVersion(this.wine).withWindowsVersion(windowsVersion).go(); } static install(container) { diff --git a/Engines/Wine/Verbs/dotnet45/script.js b/Engines/Wine/Verbs/dotnet45/script.js index 677af49130..d35f5ffcbf 100755 --- a/Engines/Wine/Verbs/dotnet45/script.js +++ b/Engines/Wine/Verbs/dotnet45/script.js @@ -3,9 +3,9 @@ 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"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); +const Regedit = include("engines.wine.plugins.regedit"); const RemoveMono = include("engines.wine.verbs.remove_mono"); const DotNET40 = include("engines.wine.verbs.dotnet40"); @@ -19,9 +19,10 @@ class DotNET45 { go() { const wizard = this.wine.wizard(); - const windowsVersion = this.wine.windowsVersion(); const architecture = this.wine.architecture(); + const windowsVersion = new WindowsVersion(this.wine).getWindowsVersion(); + if (architecture == "amd64") { print( tr( @@ -44,12 +45,9 @@ class DotNET45 { new DotNET40(this.wine).go(); - this.wine.windowsVersion("win7"); + new WindowsVersion(this.wine).withWindowsVersion("win7").go(); - this.wine - .overrideDLL() - .set("builtin", ["fusion"]) - .do(); + new OverrideDLL(this.wine).withMode("builtin", ["fusion"]).go(); wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.5")); @@ -57,14 +55,11 @@ class DotNET45 { wizard.wait(tr("Please wait...")); - this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); + new Regedit(this.wine).deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); - this.wine - .overrideDLL() - .set("native", ["mscoree"]) - .do(); + new OverrideDLL(this.wine).withMode("native", ["mscoree"]).go(); - this.wine.windowsVersion(windowsVersion); + new WindowsVersion(this.wine).withWindowsVersion(windowsVersion).go(); if (windowsVersion != "win2003") { print(tr('{0} applications can have issues when windows version is not set to "win2003"', ".NET 4.5")); diff --git a/Engines/Wine/Verbs/dotnet452/script.js b/Engines/Wine/Verbs/dotnet452/script.js index f60c73cb9a..855e40b082 100755 --- a/Engines/Wine/Verbs/dotnet452/script.js +++ b/Engines/Wine/Verbs/dotnet452/script.js @@ -3,9 +3,9 @@ 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"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); +const Regedit = include("engines.wine.plugins.regedit"); const RemoveMono = include("engines.wine.verbs.remove_mono"); const DotNET40 = include("engines.wine.verbs.dotnet40"); @@ -19,7 +19,8 @@ class DotNET452 { go() { const wizard = this.wine.wizard(); - const windowsVersion = this.wine.windowsVersion(); + + const windowsVersion = new WindowsVersion(this.wine).getWindowsVersion(); print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet452")); @@ -36,12 +37,9 @@ class DotNET452 { new DotNET40(this.wine).go(); - this.wine.windowsVersion("win7"); + new WindowsVersion(this.wine).withWindowsVersion("win7").go(); - this.wine - .overrideDLL() - .set("builtin", ["fusion"]) - .do(); + new OverrideDLL(this.wine).withMode("builtin", ["fusion"]).go(); wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.5.2")); @@ -49,14 +47,11 @@ class DotNET452 { wizard.wait(tr("Please wait...")); - this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); + new Regedit(this.wine).deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); - this.wine - .overrideDLL() - .set("native", ["mscoree"]) - .do(); + new OverrideDLL(this.wine).withMode("native", ["mscoree"]).go(); - this.wine.windowsVersion(windowsVersion); + new WindowsVersion(this.wine).withWindowsVersion(windowsVersion).go(); if (windowsVersion != "win2003") { print(tr('{0} applications can have issues when windows version is not set to "win2003"', ".NET 4.5.2")); diff --git a/Engines/Wine/Verbs/dotnet46/script.js b/Engines/Wine/Verbs/dotnet46/script.js index 9e564fb389..bfc9c9c2c2 100755 --- a/Engines/Wine/Verbs/dotnet46/script.js +++ b/Engines/Wine/Verbs/dotnet46/script.js @@ -3,9 +3,9 @@ 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"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); +const Regedit = include("engines.wine.plugins.regedit"); const RemoveMono = include("engines.wine.verbs.remove_mono"); const DotNET45 = include("engines.wine.verbs.dotnet45"); @@ -19,7 +19,8 @@ class DotNET46 { go() { const wizard = this.wine.wizard(); - const windowsVersion = this.wine.windowsVersion(); + + const windowsVersion = new WindowsVersion(this.wine).getWindowsVersion(); print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet46")); @@ -36,12 +37,9 @@ class DotNET46 { new DotNET45(this.wine).go(); - this.wine.windowsVersion("win7"); + new WindowsVersion(this.wine).withWindowsVersion("win7").go(); - this.wine - .overrideDLL() - .set("builtin", ["fusion"]) - .do(); + new OverrideDLL(this.wine).withMode("builtin", ["fusion"]).go(); wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.6")); @@ -49,14 +47,11 @@ class DotNET46 { wizard.wait(tr("Please wait...")); - this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); + new Regedit(this.wine).deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); - this.wine - .overrideDLL() - .set("native", ["mscoree"]) - .do(); + new OverrideDLL(this.wine).withMode("native", ["mscoree"]).go(); - this.wine.windowsVersion(windowsVersion); + new WindowsVersion(this.wine).withWindowsVersion(windowsVersion).go(); } static install(container) { diff --git a/Engines/Wine/Verbs/dotnet461/script.js b/Engines/Wine/Verbs/dotnet461/script.js index f665b5fa54..02bc468c36 100755 --- a/Engines/Wine/Verbs/dotnet461/script.js +++ b/Engines/Wine/Verbs/dotnet461/script.js @@ -3,9 +3,9 @@ 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"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); +const Regedit = include("engines.wine.plugins.regedit"); const RemoveMono = include("engines.wine.verbs.remove_mono"); const DotNET46 = include("engines.wine.verbs.dotnet46"); @@ -19,7 +19,8 @@ class DotNET461 { go() { const wizard = this.wine.wizard(); - const windowsVersion = this.wine.windowsVersion(); + + const windowsVersion = new WindowsVersion(this.wine).getWindowsVersion(); print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet461")); @@ -36,12 +37,9 @@ class DotNET461 { new DotNET46(this.wine).go(); - this.wine.windowsVersion("win7"); + new WindowsVersion(this.wine).withWindowsVersion("win7").go(); - this.wine - .overrideDLL() - .set("builtin", ["fusion"]) - .do(); + new OverrideDLL(this.wine).withMode("builtin", ["fusion"]).go(); wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.6.1")); @@ -49,14 +47,11 @@ class DotNET461 { wizard.wait(tr("Please wait...")); - this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); + new Regedit(this.wine).deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); - this.wine - .overrideDLL() - .set("native", ["mscoree"]) - .do(); + new OverrideDLL(this.wine).withMode("native", ["mscoree"]).go(); - this.wine.windowsVersion(windowsVersion); + new WindowsVersion(this.wine).withWindowsVersion(windowsVersion).go(); } static install(container) { diff --git a/Engines/Wine/Verbs/dotnet462/script.js b/Engines/Wine/Verbs/dotnet462/script.js index df93f0a2a1..ccf1b17e67 100755 --- a/Engines/Wine/Verbs/dotnet462/script.js +++ b/Engines/Wine/Verbs/dotnet462/script.js @@ -3,9 +3,9 @@ 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"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); +const Regedit = include("engines.wine.plugins.regedit"); const RemoveMono = include("engines.wine.verbs.remove_mono"); const DotNET461 = include("engines.wine.verbs.dotnet461"); @@ -19,7 +19,8 @@ class DotNET462 { go() { const wizard = this.wine.wizard(); - const windowsVersion = this.wine.windowsVersion(); + + const windowsVersion = new WindowsVersion(this.wine).getWindowsVersion(); print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet462")); @@ -36,12 +37,9 @@ class DotNET462 { new DotNET461(this.wine).go(); - this.wine.windowsVersion("win7"); + new WindowsVersion(this.wine).withWindowsVersion("win7").go(); - this.wine - .overrideDLL() - .set("builtin", ["fusion"]) - .do(); + new OverrideDLL(this.wine).withMode("builtin", ["fusion"]).go(); wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.6.2")); @@ -49,14 +47,11 @@ class DotNET462 { wizard.wait(tr("Please wait...")); - this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); + new Regedit(this.wine).deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); - this.wine - .overrideDLL() - .set("native", ["mscoree"]) - .do(); + new OverrideDLL(this.wine).withMode("native", ["mscoree"]).go(); - this.wine.windowsVersion(windowsVersion); + new WindowsVersion(this.wine).withWindowsVersion(windowsVersion).go(); } static install(container) { diff --git a/Engines/Wine/Verbs/dotnet472/script.js b/Engines/Wine/Verbs/dotnet472/script.js index 22f1fb72ad..55b025a3df 100755 --- a/Engines/Wine/Verbs/dotnet472/script.js +++ b/Engines/Wine/Verbs/dotnet472/script.js @@ -3,9 +3,9 @@ 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"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); +const Regedit = include("engines.wine.plugins.regedit"); const RemoveMono = include("engines.wine.verbs.remove_mono"); const DotNET462 = include("engines.wine.verbs.dotnet462"); @@ -19,7 +19,8 @@ class DotNET472 { go() { const wizard = this.wine.wizard(); - const windowsVersion = this.wine.windowsVersion(); + + const windowsVersion = new WindowsVersion(this.wine).getWindowsVersion(); print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet472")); @@ -36,12 +37,9 @@ class DotNET472 { new DotNET462(this.wine).go(); - this.wine.windowsVersion("win7"); + new WindowsVersion(this.wine).withWindowsVersion("win7").go(); - this.wine - .overrideDLL() - .set("builtin", ["fusion"]) - .do(); + new OverrideDLL(this.wine).withMode("builtin", ["fusion"]).go(); wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.7.2")); @@ -49,14 +47,11 @@ class DotNET472 { wizard.wait(tr("Please wait...")); - this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); + new Regedit(this.wine).deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); - this.wine - .overrideDLL() - .set("native", ["mscoree"]) - .do(); + new OverrideDLL(this.wine).withMode("native", ["mscoree"]).go(); - this.wine.windowsVersion(windowsVersion); + new WindowsVersion(this.wine).withWindowsVersion(windowsVersion).go(); } static install(container) { diff --git a/Engines/Wine/Verbs/gallium9/script.js b/Engines/Wine/Verbs/gallium9/script.js index efb30e5a25..693043c174 100644 --- a/Engines/Wine/Verbs/gallium9/script.js +++ b/Engines/Wine/Verbs/gallium9/script.js @@ -2,10 +2,11 @@ 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 { getGithubReleases } = include("utils.functions.net.githubreleases"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install Gallium 9 Standalone @@ -34,7 +35,8 @@ class Gallium9 { const system32directory = this.wine.system32directory(); if (typeof this.gallium9Version !== "string") { - this.gallium9Version = "0.4"; + const versions = getGithubReleases("iXit", "wine-nine-standalone", wizard); + this.gallium9Version = versions[0]; } wizard.message( @@ -46,9 +48,9 @@ class Gallium9 { 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` + `https://github.com/iXit/wine-nine-standalone/releases/download/${this.gallium9Version}/gallium-nine-standalone-${this.gallium9Version}.tar.gz` ) - .name(`gallium-nine-standalone-v${this.gallium9Version}.tar.gz`) + .name(`gallium-nine-standalone-${this.gallium9Version}.tar.gz`) .get(); new Extractor() @@ -81,24 +83,21 @@ class Gallium9 { ); lns(`${system64directory}/d3d9-nine.dll`, `${system64directory}/d3d9.dll`); - this.wine.run(`${system64directory}ninewinecfg.exe`, ["-e"], null, false, true); + this.wine.run(`${system64directory}/ninewinecfg.exe`, ["-e"], null, false, true); } else { - this.wine.run(`${system32directory}ninewinecfg.exe`, ["-e"], null, false, true); + this.wine.run(`${system32directory}/ninewinecfg.exe`, ["-e"], null, false, true); } - this.wine - .overrideDLL() - .set("native", ["d3d9"]) - .do(); + new OverrideDLL(this.wine).withMode("native", ["d3d9"]).go(); } static install(container) { const wine = new Wine(); const wizard = SetupWizard(InstallationType.VERBS, "gallium9", Optional.empty()); - const versions = ["0.4", "0.3", "0.2"]; + const versions = getGithubReleases("iXit", "wine-nine-standalone", wizard); - const selectedVersion = wizard.menu(tr("Please select the version."), versions, "0.4"); + const selectedVersion = wizard.menu(tr("Please select the version."), versions, versions[0]); wine.prefix(container); wine.wizard(wizard); diff --git a/Engines/Wine/Verbs/gdiplus/script.js b/Engines/Wine/Verbs/gdiplus/script.js index 73832d13dc..e937f5172f 100644 --- a/Engines/Wine/Verbs/gdiplus/script.js +++ b/Engines/Wine/Verbs/gdiplus/script.js @@ -5,7 +5,7 @@ const { cp, remove } = include("utils.functions.filesystem.files"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install gdiplus @@ -23,46 +23,59 @@ class GDIPlus { 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") + .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) + .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); - + .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 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") + .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) + .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); + .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(); - - cp(`${prefixDirectory}/drive_c/Tmp/asms/10/msft/windows/gdiplus/gdiplus.dll`, system32directory); + new OverrideDLL(this.wine).withMode("native", ["gdiplus"]).go(); } static install(container) { diff --git a/Engines/Wine/Verbs/gdiplus_winxp/script.js b/Engines/Wine/Verbs/gdiplus_winxp/script.js index e1c16a787b..012f734e0e 100644 --- a/Engines/Wine/Verbs/gdiplus_winxp/script.js +++ b/Engines/Wine/Verbs/gdiplus_winxp/script.js @@ -5,7 +5,7 @@ const { remove, cat, writeToFile } = include("utils.functions.filesystem.files") const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install gdiplus (windows xp) @@ -24,32 +24,37 @@ class GDIPlusWinXP { 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") + .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) + .wizard(wizard) .to(`${prefixDirectory}/drive_c/gdiplus/`) .extract(["-F", "FL_gdiplus_dll_____X86.3643236F_FC70_11D3_A536_0090278A1BB8"]); - + new CabExtract() .archive(setupFile) - .wizard(wizard) + .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`); + .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(); + new OverrideDLL(this.wine).withMode("native", ["gdiplus"]).go(); } static install(container) { @@ -65,4 +70,4 @@ class GDIPlusWinXP { } } -module.default = GDIPlusWindowsXP; +module.default = GDIPlusWinXP; diff --git a/Engines/Wine/Verbs/luna/script.js b/Engines/Wine/Verbs/luna/script.js index 91ad54f72e..60ffa3818c 100644 --- a/Engines/Wine/Verbs/luna/script.js +++ b/Engines/Wine/Verbs/luna/script.js @@ -4,7 +4,7 @@ const { mkdir, cp } = include("utils.functions.filesystem.files"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** * Verb to install luna @@ -36,7 +36,7 @@ class Luna { cp(lunaStyle, `${prefixDirectory}/drive_c/windows/Resources/Themes/luna/`); - this.wine.regedit().open(lunaReg); + new Regedit(this.wine).open(lunaReg); } static install(container) { diff --git a/Engines/Wine/Verbs/mfc42/script.js b/Engines/Wine/Verbs/mfc42/script.js index ade268ae13..05fd61492b 100644 --- a/Engines/Wine/Verbs/mfc42/script.js +++ b/Engines/Wine/Verbs/mfc42/script.js @@ -5,7 +5,7 @@ const { remove } = include("utils.functions.filesystem.files"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install mfc42.dll and mfc42u.dll @@ -41,10 +41,7 @@ class Mfc42 { .to(system32directory) .extract(["-F", "mfc42*.dll"]); - this.wine - .overrideDLL() - .set("native, builtin", ["mfc42", "mfc42u"]) - .do(); + new OverrideDLL(this.wine).withMode("native, builtin", ["mfc42", "mfc42u"]).go(); } static install(container) { diff --git a/Engines/Wine/Verbs/mspatcha/script.js b/Engines/Wine/Verbs/mspatcha/script.js index 3bbcc45946..92c857be15 100644 --- a/Engines/Wine/Verbs/mspatcha/script.js +++ b/Engines/Wine/Verbs/mspatcha/script.js @@ -5,7 +5,7 @@ const { remove } = include("utils.functions.filesystem.files"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install mspatcha @@ -45,10 +45,7 @@ class Mspatcha { remove(`${system32directory}/i386/`); - this.wine - .overrideDLL() - .set("native, builtin", ["mspatcha"]) - .do(); + new OverrideDLL(this.wine).withMode("native, builtin", ["mspatcha"]).go(); } static install(container) { diff --git a/Engines/Wine/Verbs/msxml3/script.js b/Engines/Wine/Verbs/msxml3/script.js index 25c2f2c91c..b97f15c1a2 100644 --- a/Engines/Wine/Verbs/msxml3/script.js +++ b/Engines/Wine/Verbs/msxml3/script.js @@ -4,7 +4,7 @@ const { remove } = include("utils.functions.filesystem.files"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install msxml3 @@ -27,10 +27,7 @@ class Msxml3 { remove(`${system32directory}/msxml3.dll`); - this.wine - .overrideDLL() - .set("native", ["msxml3"]) - .do(); + new OverrideDLL(this.wine).withMode("native", ["msxml3"]).go(); wizard.wait(tr("Please wait while {0} is installed...", "msxml3")); diff --git a/Engines/Wine/Verbs/msxml6/script.js b/Engines/Wine/Verbs/msxml6/script.js index 9ff0c4abaa..7f344f4fa4 100644 --- a/Engines/Wine/Verbs/msxml6/script.js +++ b/Engines/Wine/Verbs/msxml6/script.js @@ -1,10 +1,10 @@ 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"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install msxml6 @@ -17,17 +17,19 @@ class Msxml6 { go() { const wizard = this.wine.wizard(); const system32directory = this.wine.system32directory(); - const system64directory = this.wine.system64directory(); - remove(`${system32directory}/msxml6.dll`); + if (fileExists(`${system32directory}/msxml6.dll`)) { + remove(`${system32directory}/msxml6.dll`); + } - this.wine - .overrideDLL() - .set("native,builtin", ["msxml6"]) - .do(); + new OverrideDLL(this.wine).withMode("native,builtin", ["msxml6"]).go(); if (this.wine.architecture() == "amd64") { - remove(`${system64directory}/msxml6.dll`); + const system64directory = this.wine.system64directory(); + + if (fileExists(`${system64directory}/msxml6.dll`)) { + remove(`${system64directory}/msxml6.dll`); + } const setupFile64 = new Resource() .wizard(wizard) @@ -40,7 +42,7 @@ class Msxml6 { wizard.wait(tr("Please wait while {0} is installed...", "msxml6")); - this.run(setupFile64, ["/q:a", "/c:msxml6_x64.msi /q"], null, false, true); + this.wine.run(setupFile64, ["/q:a", "/c:msxml6_x64.msi /q"], null, false, true); } else { const setupFile32 = new Resource() .wizard(wizard) @@ -53,7 +55,7 @@ class Msxml6 { 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.run(setupFile32, ["/q:a", "/c:msxml6_x86.msi /q"], null, false, true); } } diff --git a/Engines/Wine/Verbs/quartz/script.js b/Engines/Wine/Verbs/quartz/script.js index cd66d10ffd..1faf375785 100644 --- a/Engines/Wine/Verbs/quartz/script.js +++ b/Engines/Wine/Verbs/quartz/script.js @@ -5,8 +5,8 @@ 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"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); +const Regsvr32 = include("engines.wine.plugins.regsvr32"); /** * Verb to install quartz @@ -44,12 +44,9 @@ class Quartz { remove(`${prefixDirectory}/TMP/`); - this.wine.regsvr32().install("quartz.dll"); + new Regsvr32(this.wine).withDll("quartz.dll").go(); - this.wine - .overrideDLL() - .set("native, builtin", ["quartz"]) - .do(); + new OverrideDLL(this.wine).withMode("native, builtin", ["quartz"]).go(); } static install(container) { diff --git a/Engines/Wine/Verbs/secur32/script.js b/Engines/Wine/Verbs/secur32/script.js index cf4f58ce02..7b7bcfd126 100644 --- a/Engines/Wine/Verbs/secur32/script.js +++ b/Engines/Wine/Verbs/secur32/script.js @@ -5,7 +5,7 @@ const { cp, remove } = include("utils.functions.filesystem.files"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install secur32 @@ -77,10 +77,7 @@ class Secur32 { remove(`${prefixDirectory}/TMP/`); } - this.wine - .overrideDLL() - .set("native, builtin", ["secur32"]) - .do(); + new OverrideDLL(this.wine).withMode("native, builtin", ["secur32"]).go(); } static install(container) { diff --git a/Engines/Wine/Verbs/vcrun2005/script.js b/Engines/Wine/Verbs/vcrun2005/script.js index 09f296ff93..386babdf7a 100644 --- a/Engines/Wine/Verbs/vcrun2005/script.js +++ b/Engines/Wine/Verbs/vcrun2005/script.js @@ -3,7 +3,7 @@ const Resource = include("utils.functions.net.resource"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install vcrun2005 @@ -27,10 +27,9 @@ class Vcrun2005 { this.wine.run(setupFile, "/q", null, false, true); - this.wine - .overrideDLL() - .set("native, builtin", ["atl80", "msvcm80", "msvcp80", "msvcr80", "vcomp"]) - .do(); + new OverrideDLL(this.wine) + .withMode("native, builtin", ["atl80", "msvcm80", "msvcp80", "msvcr80", "vcomp"]) + .go(); } install(container) { diff --git a/Engines/Wine/Verbs/vcrun2008/script.js b/Engines/Wine/Verbs/vcrun2008/script.js index c7f7931bec..b0b826fb2c 100644 --- a/Engines/Wine/Verbs/vcrun2008/script.js +++ b/Engines/Wine/Verbs/vcrun2008/script.js @@ -3,7 +3,7 @@ const Resource = include("utils.functions.net.resource"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install vcrun2008 @@ -42,10 +42,9 @@ class Vcrun2008 { this.wine.run(setupFile64, "/q", null, false, true); } - this.wine - .overrideDLL() - .set("native, builtin", ["atl90", "msvcm90", "msvcp90", "msvcr90", "vcomp90"]) - .do(); + new OverrideDLL(this.wine) + .withMode("native, builtin", ["atl90", "msvcm90", "msvcp90", "msvcr90", "vcomp90"]) + .go(); } static install(container) { diff --git a/Engines/Wine/Verbs/vcrun2010/script.js b/Engines/Wine/Verbs/vcrun2010/script.js index 404485dce7..ed66ffe60f 100644 --- a/Engines/Wine/Verbs/vcrun2010/script.js +++ b/Engines/Wine/Verbs/vcrun2010/script.js @@ -3,7 +3,7 @@ const Resource = include("utils.functions.net.resource"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install vcrun2010 @@ -42,10 +42,7 @@ class Vcrun2010 { this.wine.run(setupFile64, "/q", null, false, true); } - this.wine - .overrideDLL() - .set("native, builtin", ["atl100", "msvcp100", "msvcr100", "vcomp100"]) - .do(); + new OverrideDLL(this.wine).withMode("native, builtin", ["atl100", "msvcp100", "msvcr100", "vcomp100"]).go(); } static install(container) { diff --git a/Engines/Wine/Verbs/vcrun2012/script.js b/Engines/Wine/Verbs/vcrun2012/script.js index 2254a8a11e..46a9564f04 100644 --- a/Engines/Wine/Verbs/vcrun2012/script.js +++ b/Engines/Wine/Verbs/vcrun2012/script.js @@ -3,7 +3,7 @@ const Resource = include("utils.functions.net.resource"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install vcrun2012 @@ -44,10 +44,7 @@ class Vcrun2012 { this.wine.run(setupFile64, "/q", null, false, true); } - this.wine - .overrideDLL() - .set("native, builtin", ["atl110", "msvcp110", "msvcr110", "vcomp110"]) - .do(); + new OverrideDLL(this.wine).withMode("native, builtin", ["atl110", "msvcp110", "msvcr110", "vcomp110"]).go(); } static install(container) { diff --git a/Engines/Wine/Verbs/vcrun2013/script.js b/Engines/Wine/Verbs/vcrun2013/script.js index 0e37806682..244a8a17ec 100644 --- a/Engines/Wine/Verbs/vcrun2013/script.js +++ b/Engines/Wine/Verbs/vcrun2013/script.js @@ -3,7 +3,7 @@ const Resource = include("utils.functions.net.resource"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install vcrun2013 @@ -42,10 +42,7 @@ class Vcrun2013 { this.wine.run(setupFile64, "/q", null, false, true); } - this.wine - .overrideDLL() - .set("native, builtin", ["atl120", "msvcp120", "msvcr120", "vcomp120"]) - .do(); + new OverrideDLL(this.wine).withMode("native, builtin", ["atl120", "msvcp120", "msvcr120", "vcomp120"]).go(); } install(container) { diff --git a/Engines/Wine/Verbs/vcrun2015/script.js b/Engines/Wine/Verbs/vcrun2015/script.js index 25d0326026..e7ef12eb33 100644 --- a/Engines/Wine/Verbs/vcrun2015/script.js +++ b/Engines/Wine/Verbs/vcrun2015/script.js @@ -3,7 +3,7 @@ const Resource = include("utils.functions.net.resource"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install vcrun2015 @@ -42,9 +42,8 @@ class Vcrun2015 { this.wine.run(setupFile64, "/q", null, false, true); } - this.wine - .overrideDLL() - .set("native, builtin", [ + new OverrideDLL(this.wine) + .withMode("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", @@ -60,7 +59,7 @@ class Vcrun2015 { "vcomp140", "vcruntime140" ]) - .do(); + .go(); } static install(container) { diff --git a/Engines/Wine/Verbs/vcrun2017/script.js b/Engines/Wine/Verbs/vcrun2017/script.js index c1e5cfb6f1..282c950b3e 100644 --- a/Engines/Wine/Verbs/vcrun2017/script.js +++ b/Engines/Wine/Verbs/vcrun2017/script.js @@ -3,7 +3,7 @@ const Resource = include("utils.functions.net.resource"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install vcrun2017 @@ -44,9 +44,8 @@ class Vcrun2017 { this.wine.run(setupFile64, "/q", null, false, true); } - this.wine - .overrideDLL() - .set("native, builtin", [ + new OverrideDLL(this.wine) + .withMode("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", @@ -62,7 +61,7 @@ class Vcrun2017 { "vcomp140", "vcruntime140" ]) - .do(); + .go(); } static install(container) { diff --git a/Engines/Wine/Verbs/vulkanSDK/script.js b/Engines/Wine/Verbs/vulkanSDK/script.js index c114b394e3..5e348a4e67 100644 --- a/Engines/Wine/Verbs/vulkanSDK/script.js +++ b/Engines/Wine/Verbs/vulkanSDK/script.js @@ -4,7 +4,7 @@ const { touch, writeToFile } = include("utils.functions.filesystem.files"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** * Verb to install all the necessary things to run winevulkan (even inside wine mainline or newest wine-staging) @@ -58,7 +58,7 @@ class VulkanSDK { "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Khronos\\Vulkan\\Drivers]\n" + '"C:\\\\Windows\\\\winevulkan.json"=dword:00000000'; - this.wine.regedit().patch(regeditFileContent32); + new Regedit(this.wine).patch(regeditFileContent32); if (this.wine.architecture() == "amd64") { const regeditFileContent64 = @@ -67,7 +67,7 @@ class VulkanSDK { "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Khronos\\Vulkan\\Drivers\\]\n" + '"C:\\\\Windows\\\\winevulkan.json"=dword:00000000'; - this.wine.regedit().patch(regeditFileContent64); + new Regedit(this.wine).patch(regeditFileContent64); } } diff --git a/Engines/Wine/Verbs/xact/script.js b/Engines/Wine/Verbs/xact/script.js index 61c9bf7dec..662792f0f3 100644 --- a/Engines/Wine/Verbs/xact/script.js +++ b/Engines/Wine/Verbs/xact/script.js @@ -5,7 +5,7 @@ const { remove } = include("utils.functions.filesystem.files"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.regsvr32"); +const Regsvr32 = include("engines.wine.plugins.regsvr32"); /** * Verb to install xact @@ -60,7 +60,7 @@ class Xact { progressBar.setText(tr("Registering {0}...", "Xact")); progressBar.setProgressPercentage((numberOfExtractedFiles * 100) / dllToRegsvr.length); - this.wine.regsvr32().install(dll); + new Regsvr32(this.wine).withDll(dll).go(); return numberOfExtractedFiles + 1; }, 0); @@ -197,7 +197,7 @@ class Xact { if (architecture == "amd64") { const system64directory = this.wine.system64directory(); - + //---------------------------------------------------------Extract xactengine*.dll (x64)-------------------------------------------- new CabExtract() .wizard(wizard) diff --git a/Utils/Functions/Net/GithubReleases/script.js b/Utils/Functions/Net/GithubReleases/script.js new file mode 100644 index 0000000000..c777e4aeb1 --- /dev/null +++ b/Utils/Functions/Net/GithubReleases/script.js @@ -0,0 +1,29 @@ +const Downloader = include("utils.functions.net.download"); +const {createTempDir, remove, cat} = include("utils.functions.filesystem.files"); + +/** + * Get an array of tag corresponding to the releases in a git repository + * + * @param {string} repositoryOwner owner of the repository + * @param {string} repositoryName name of the repository + * @param {wizard} wizard the wizard + * @returns {string[]} list of version tag in the repository + */ +module.getGithubReleases = function getGithubReleases(repositoryOwner, repositoryName, wizard) { + const tmpDir = createTempDir(); + + const releasesFile = new Downloader() + .wizard(wizard) + .url( + `https://api.github.com/repos/${repositoryOwner}/${repositoryName}/releases` + ) + .message(tr("Fetching versions list...")) + .to(tmpDir + "/releases.json") + .get(); + + const versions = JSON.parse(cat(releasesFile)).map(version => version.tag_name); + + remove(tmpDir); + + return versions; +}; diff --git a/Utils/Functions/Net/GithubReleases/script.json b/Utils/Functions/Net/GithubReleases/script.json new file mode 100644 index 0000000000..906570b9c0 --- /dev/null +++ b/Utils/Functions/Net/GithubReleases/script.json @@ -0,0 +1,11 @@ +{ + "scriptName" : "Github Releases", + "id" : "utils.functions.net.githubreleases", + "compatibleOperatingSystems" : [ + "MACOSX", + "LINUX" + ], + "testingOperatingSystems" : [], + "free" : true, + "requiresPatch" : false +} diff --git a/docs/jsdoc/AdobeAir.html b/docs/jsdoc/AdobeAir.html index 59b37333b3..8a89518376 100644 --- a/docs/jsdoc/AdobeAir.html +++ b/docs/jsdoc/AdobeAir.html @@ -155,7 +155,7 @@

new AdobeAir<
diff --git a/docs/jsdoc/Amstream.html b/docs/jsdoc/Amstream.html index 7bd5acdf71..106bb83974 100644 --- a/docs/jsdoc/Amstream.html +++ b/docs/jsdoc/Amstream.html @@ -155,7 +155,7 @@

new Amstream<
diff --git a/docs/jsdoc/Atmlib.html b/docs/jsdoc/Atmlib.html index fcc56f112c..54ee2514fb 100644 --- a/docs/jsdoc/Atmlib.html +++ b/docs/jsdoc/Atmlib.html @@ -155,7 +155,7 @@

new Atmlib
diff --git a/docs/jsdoc/Corefonts.html b/docs/jsdoc/Corefonts.html index 19f7333070..4b545c5c29 100644 --- a/docs/jsdoc/Corefonts.html +++ b/docs/jsdoc/Corefonts.html @@ -155,7 +155,7 @@

new Corefont
diff --git a/docs/jsdoc/Crypt32.html b/docs/jsdoc/Crypt32.html index 5c34676de6..d5a4e6f1ae 100644 --- a/docs/jsdoc/Crypt32.html +++ b/docs/jsdoc/Crypt32.html @@ -155,7 +155,7 @@

new Crypt32
diff --git a/docs/jsdoc/D3DX10.html b/docs/jsdoc/D3DX10.html index 7ec9b4af32..bec1544bc7 100644 --- a/docs/jsdoc/D3DX10.html +++ b/docs/jsdoc/D3DX10.html @@ -383,7 +383,7 @@
Returns:

diff --git a/docs/jsdoc/D3DX11.html b/docs/jsdoc/D3DX11.html index 2c8424daff..899079f696 100644 --- a/docs/jsdoc/D3DX11.html +++ b/docs/jsdoc/D3DX11.html @@ -383,7 +383,7 @@
Returns:

diff --git a/docs/jsdoc/D3DX9.html b/docs/jsdoc/D3DX9.html index 7b33fa3ddc..1bd64ffc39 100644 --- a/docs/jsdoc/D3DX9.html +++ b/docs/jsdoc/D3DX9.html @@ -383,7 +383,7 @@
Returns:

diff --git a/docs/jsdoc/D3drm.html b/docs/jsdoc/D3drm.html index d3943f6233..0279dd39b9 100644 --- a/docs/jsdoc/D3drm.html +++ b/docs/jsdoc/D3drm.html @@ -155,7 +155,7 @@

new D3drm
diff --git a/docs/jsdoc/D9VK.html b/docs/jsdoc/D9VK.html index da1da90c94..385fdc72e0 100644 --- a/docs/jsdoc/D9VK.html +++ b/docs/jsdoc/D9VK.html @@ -319,7 +319,7 @@
Returns:

diff --git a/docs/jsdoc/DXVK.html b/docs/jsdoc/DXVK.html index 3da172ee0d..faac2515f5 100644 --- a/docs/jsdoc/DXVK.html +++ b/docs/jsdoc/DXVK.html @@ -320,7 +320,7 @@
Returns:

diff --git a/docs/jsdoc/Devenum.html b/docs/jsdoc/Devenum.html index 43c54a751e..a557fbedea 100644 --- a/docs/jsdoc/Devenum.html +++ b/docs/jsdoc/Devenum.html @@ -155,7 +155,7 @@

new Devenum
diff --git a/docs/jsdoc/DotNET20.html b/docs/jsdoc/DotNET20.html index 0f0da8571f..e3221175ad 100644 --- a/docs/jsdoc/DotNET20.html +++ b/docs/jsdoc/DotNET20.html @@ -155,7 +155,7 @@

new DotNET20<
diff --git a/docs/jsdoc/DotNET20SP2.html b/docs/jsdoc/DotNET20SP2.html index 2795ce73ed..97dc314998 100644 --- a/docs/jsdoc/DotNET20SP2.html +++ b/docs/jsdoc/DotNET20SP2.html @@ -155,7 +155,7 @@

new DotNET
diff --git a/docs/jsdoc/DotNET40.html b/docs/jsdoc/DotNET40.html index 26ad8b7061..05f63f676d 100644 --- a/docs/jsdoc/DotNET40.html +++ b/docs/jsdoc/DotNET40.html @@ -155,7 +155,7 @@

new DotNET40<
diff --git a/docs/jsdoc/DotNET45.html b/docs/jsdoc/DotNET45.html index eb2b739d26..4c44513a1e 100644 --- a/docs/jsdoc/DotNET45.html +++ b/docs/jsdoc/DotNET45.html @@ -155,7 +155,7 @@

new DotNET45<
diff --git a/docs/jsdoc/DotNET452.html b/docs/jsdoc/DotNET452.html index 18ac4cb0ef..71a104a9c8 100644 --- a/docs/jsdoc/DotNET452.html +++ b/docs/jsdoc/DotNET452.html @@ -155,7 +155,7 @@

new DotNET45
diff --git a/docs/jsdoc/DotNET46.html b/docs/jsdoc/DotNET46.html index 7b69f8b912..cdde7117f8 100644 --- a/docs/jsdoc/DotNET46.html +++ b/docs/jsdoc/DotNET46.html @@ -155,7 +155,7 @@

new DotNET46<
diff --git a/docs/jsdoc/DotNET461.html b/docs/jsdoc/DotNET461.html index a71429dfde..62331b3d4b 100644 --- a/docs/jsdoc/DotNET461.html +++ b/docs/jsdoc/DotNET461.html @@ -155,7 +155,7 @@

new DotNET46
diff --git a/docs/jsdoc/DotNET462.html b/docs/jsdoc/DotNET462.html index bfb0531632..22f8adfa7a 100644 --- a/docs/jsdoc/DotNET462.html +++ b/docs/jsdoc/DotNET462.html @@ -155,7 +155,7 @@

new DotNET46
diff --git a/docs/jsdoc/DotNET472.html b/docs/jsdoc/DotNET472.html index 959200ba76..e213ee714b 100644 --- a/docs/jsdoc/DotNET472.html +++ b/docs/jsdoc/DotNET472.html @@ -155,7 +155,7 @@

new DotNET47
diff --git a/docs/jsdoc/Engines_Wine_Engine_Implementation_script.js.html b/docs/jsdoc/Engines_Wine_Engine_Implementation_script.js.html index 356fd49101..c4d85cbac8 100644 --- a/docs/jsdoc/Engines_Wine_Engine_Implementation_script.js.html +++ b/docs/jsdoc/Engines_Wine_Engine_Implementation_script.js.html @@ -51,6 +51,7 @@

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

this._ldPath = propertyReader.getProperty("application.environment.ld"); this._wineEnginesDirectory = propertyReader.getProperty("application.user.engines") + "/wine"; this._winePrefixesDirectory = propertyReader.getProperty("application.user.containers") + "/" + WINE_PREFIX_DIR + "/"; + this._useRuntime = (propertyReader.getProperty("application.environment.wineRuntime") !== "false"); this._wineWebServiceUrl = propertyReader.getProperty("webservice.wine.url"); this._wizard = null; this._workingContainer = ""; @@ -71,7 +72,9 @@

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

} install(subCategory, version) { - this._installRuntime(this.getWizard()); + if (this._useRuntime) { + this._installRuntime(this.getWizard()); + } const [distribution, , architecture] = subCategory.split("-"); const localDirectory = this.getLocalDirectory(subCategory, version); @@ -472,23 +475,26 @@

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

ldPath = userData.ldPath + ldPath; } + let runtimePath = ""; + let runtimePath64 = ""; + if (this._useRuntime) { + runtimePath = this._wineEnginesDirectory + "/runtime/lib/"; + runtimePath64 = this._wineEnginesDirectory + "/runtime/lib64/"; + } + const wineLibPath = this.getLocalDirectory(subCategory, version) + "/lib/"; + const wineLibPath64 = this.getLocalDirectory(subCategory, version) + "/lib64/"; + if (architecture == "amd64") { ldPath = - this._wineEnginesDirectory + - "/runtime/lib64/:" + - this._wineEnginesDirectory + - "/runtime/lib/:" + - this.getLocalDirectory(subCategory, version) + - "/lib64/:" + - this.getLocalDirectory(subCategory, version) + - "/lib/:" + + runtimePath64 + ":" + + runtimePath + ":" + + wineLibPath64 + ":" + + wineLibPath + ":" + ldPath; } else { ldPath = - this._wineEnginesDirectory + - "/runtime/lib/:" + - this.getLocalDirectory(subCategory, version) + - "/lib/:" + + runtimePath + ":" + + wineLibPath + ":" + ldPath; } environment.put("LD_LIBRARY_PATH", ldPath); @@ -580,7 +586,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 c4e6c8bc5b..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 d8bc25dac8..7246dc1b63 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_DOS support_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_DOS support_script.js.html @@ -26,55 +26,43 @@

Source: Engines/Wine/Plugins/DOS support/script.js

-
const Wine = include("engines.wine.engine.object");
-const {writeToFile, fileExists, cat} = include("utils.functions.filesystem.files");
+            
const { writeToFile, fileExists, cat } = include("utils.functions.filesystem.files");
 
 /**
- * This extensions allows script to add extra settings to dos_support wine builds
- * @returns {Wine} Wine object
+ * Plugin to add extra settings to dos_support wine builds
  */
-Wine.prototype.dosbox = function () {
-    var _wine = this;
+module.default = class Dosbox {
+    constructor(wine) {
+        this.wine = wine;
+        this.settings = {};
+    }
 
     /**
      * Fetch the prefix dosbox configuration file
+     *
      * @returns {string} The dosbox configuration file path
      */
-    this.dosConfigFile = function () {
-        return _wine.prefixDirectory() + "/playonlinux_dos.cfg";
-    }
-
-    /**
-     * Set a setting in the prefix dosbox configuration file
-     * @param {string} key The key (example: dosbox_memsize)
-     * @param {*} value The value (example: 64)
-     * @returns {void}
-     */
-    this.setSetting = function (key, value) {
-        var settingsToWrite = this.getSettings();
-        settingsToWrite[key] = value;
-
-        var newFileString = "";
-        for (var keyToWrite in settingsToWrite) {
-            if (keyToWrite !== "" && settingsToWrite[keyToWrite]) {
-                newFileString += keyToWrite + "=" + settingsToWrite[keyToWrite] + "\n"
-            }
-        }
-        writeToFile(this.dosConfigFile(), newFileString);
+    dosConfigFile() {
+        return `${this.wine.prefixDirectory()}/playonlinux_dos.cfg`;
     }
 
     /**
      * Fetch all prefix dosbox sttings
-     * @returns {{}} All the settings
+     *
+     * @returns {object} All the settings
      */
-    this.getSettings = function () {
+    getSettings() {
         if (fileExists(this.dosConfigFile())) {
-            var dosboxSettingsContent = cat(this.dosConfigFile());
-            var settingResults = {};
-            dosboxSettingsContent.split("\n").forEach(function (dosboxSettingLine) {
-                var splitDosboxSettingLine = dosboxSettingLine.split("=");
-                settingResults[splitDosboxSettingLine[0]] = splitDosboxSettingLine[1];
-            });
+            const settingResults = {};
+
+            cat(this.dosConfigFile())
+                .split("\n")
+                .forEach(dosboxSettingLine => {
+                    const [key, value] = dosboxSettingLine.split("=");
+
+                    settingResults[key] = value;
+                });
+
             return settingResults;
         } else {
             return {};
@@ -82,90 +70,77 @@ 

Source: Engines/Wine/Plugins/DOS support/script.js

} /** - * Get one dosbox setting + * Sets a dosbox setting + * * @param {string} key The key of the setting (example dosbox_memsize) - * @returns {*} The value (example: 64) + * @param {any} value The value to be set + * @returns {Dosbox} This */ - this.getSetting = function (key) { - return this.getSettings()[key]; - } + withSetting(key, value) { + this.settings[key] = value; - /** - * Set or get one dosbox setting - * @param {string} key The key of the setting (example dosbox_memsize) - * @param {string} value: The value to be set - * @returns {*} The value (example: 64) if this is a getter, the same object otherwise - */ - this.setting = function (key, value) { - if (arguments.length == 1) { - return this.getSettings()[key]; - } else { - this.setSetting(key, value); - } + return this; } /** * Sets dosbox_memsize parameter in the current prefix * https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D + * * @param {int} memSize The memory size - * @returns {string} current memory size + * @returns {Dosbox} This */ - this.memSize = function (memSize) { - if (arguments.length == 0) { - return this.getSetting("dosbox_memsize") - } else { - this.setSetting("dosbox_memsize", memSize); - return this; - } + withMemSize(memSize) { + return this.withSetting("dosbox_memsize", memSize); } /** * Sets render_aspect parameter in the current prefix * https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D + * * @param {boolean} renderAspect The render aspect - * @returns {string} current renderAspect + * @returns {Dosbox} This */ - this.renderAspect = function (renderAspect) { - if (arguments.length == 0) { - return this.getSetting("render_aspect") - } else { - this.setSetting("render_aspect", renderAspect); - return this; - } + withRenderAspect(renderAspect) { + return this.withSetting("render_aspect", renderAspect); } /** * Sets render_frameskip parameter in the current prefix * https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D + * * @param {int} renderFrameSkip The render frameskip - * @returns {string} current frameskip + * @returns {Dosbox} This */ - this.renderFrameSkip = function (renderFrameSkip) { - if (arguments.length == 0) { - return this.getSetting("render_frameskip") - } else { - this.setSetting("render_frameskip", renderFrameSkip); - return this; - } + withRenderFrameSkip(renderFrameSkip) { + return this.withSetting("render_frameskip", renderFrameSkip); } /** * Sets CPU cycles in the current prefix * https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D - * @param {*} cpuCycles (example: max 95% limit 33000) - * @returns {string} current cpuCycles + * + * @param {int} cpuCycles (example: max 95% limit 33000) + * @returns {Dosbox} This */ - this.cpuCycles = function (cpuCycles) { - if (arguments.length == 0) { - return this.getSetting("cpu_cycles") - } else { - this.setSetting("cpu_cycles", cpuCycles); - return this; - } + withCpuCycles(cpuCycles) { + return this.withSetting("cpu_cycles", cpuCycles); } - return this; -} + go() { + const settingsToWrite = this.getSettings(); + + for (const key in this.settings) { + settingsToWrite[key] = this.settings[key]; + } + + const newFileString = Object.entries(settingsToWrite) + .filter(([key, value]) => key !== "" && value) + .map(([key, value]) => `${key}=${value}`) + .join("\n"); + + writeToFile(this.dosConfigFile(), newFileString); + } +};
@@ -176,7 +151,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 73ebc77628..7853a498c9 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_DirectDraw renderer_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_DirectDraw renderer_script.js.html @@ -26,24 +26,35 @@

Source: Engines/Wine/Plugins/DirectDraw renderer/script.j
-
const Wine = include("engines.wine.engine.object");
-
-include("engines.wine.plugins.regedit");
+            
const Regedit = include("engines.wine.plugins.regedit");
 
 /**
- * force the DirectDrawRenderer
- * @param {string} mode (gdi or opengl)
- * @returns {Wine} Wine object
+ * Plugin to force the DirectDrawRenderer
  */
-Wine.prototype.DirectDrawRenderer = function (mode) {
-    var regeditFileContent =
-        "REGEDIT4\n" +
-        "\n" +
-        "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n" +
-        "\"DirectDrawRenderer\"=\"" + mode + "\""
-    this.regedit().patch(regeditFileContent);
-    return this;
-};
+module.default = class DirectDrawRenderer { + constructor(wine) { + this.wine = wine; + } + + /** + * Selects the used direct draw mode (either gdi or opengl) + * + * @param {string} mode gdi or opengl + * @returns {DirectDrawRenderer} This + */ + withMode(mode) { + this.mode = mode; + + return this; + } + + go() { + const regeditFileContent = `REGEDIT4\n\n[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n"DirectDrawRenderer"="${this.mode}"`; + + new Regedit(this.wine).patch(regeditFileContent); + } +}; +
@@ -53,7 +64,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 b46e08b4b4..be326ada7b 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_Font smoothing_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_Font smoothing_script.js.html @@ -26,49 +26,70 @@

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

-
const Wine = include("engines.wine.engine.object");
-
-include("engines.wine.plugins.regedit");
+            
const Regedit = include("engines.wine.plugins.regedit");
 
 /**
- * Force the Font smoothing
- * @param {string} mode ("RGB", "BGR" or "Gray Scale")
- * @returns {Wine} Wine object
+ * Plugin to force the Font smoothing
  */
-Wine.prototype.fontSmoothing = function (mode) {
-    if (mode === undefined)
-    {
-        throw tr("No font smoothing mode specified!")
-    }
-    let fontSmoothingType;
-    let fontSmoothingOrientation;
-    if (mode === "RGB") {
-        fontSmoothingType = "2";
-        fontSmoothingOrientation = "1";
-    }
-    else if (mode === "BGR") {
-        fontSmoothingType = "2";
-        fontSmoothingOrientation = "0";
+module.default = class FontSmoothing {
+    constructor(wine) {
+        this.wine = wine;
     }
-    else if (mode === "Gray Scale"){
-        fontSmoothingType = "1";
-        fontSmoothingOrientation = "1";
+
+    /**
+     * Specifies the used font smoothing mode
+     *
+     * @param {string} mode "RGB", "BGR" or "Gray Scale"
+     * @returns {FontSmoothing} This
+     */
+    withMode(mode) {
+        this.mode = mode;
+
+        return this;
     }
-    else {
-        throw tr("Unknown font smoothing mode: \"{0}\"", mode);
+
+    fetchSmootingSettings() {
+        const mode = this.mode;
+
+        if (mode === "RGB") {
+            return {
+                fontSmoothingType: "2",
+                fontSmoothingOrientation: "1"
+            };
+        } else if (mode === "BGR") {
+            return {
+                fontSmoothingType: "2",
+                fontSmoothingOrientation: "0"
+            };
+        } else if (mode === "Gray Scale") {
+            return {
+                fontSmoothingType: "1",
+                fontSmoothingOrientation: "1"
+            };
+        } else {
+            throw tr('Unknown font smoothing mode: "{0}"', mode);
+        }
     }
 
-    const regeditFileContent =
-                        "REGEDIT4\n"                                                            +
-			"\n"                                                                    +
-			"[HKEY_CURRENT_USER\\Control Panel\\Desktop]\n"                         +
-			"\"FontSmoothing\"=\"2\"\n"                                             +
-			"\"FontSmoothingType\"=dword:0000000" + fontSmoothingType + "\n"        +
-			"\"FontSmoothingGamma\"=dword:00000578\n"                               +
-			"\"FontSmoothingOrientation\"=dword:0000000" + fontSmoothingOrientation + "\n";
-
-    this.regedit().patch(regeditFileContent);
-    return this;
+    go() {
+        const mode = this.mode;
+
+        if (mode === undefined) {
+            throw new Error(tr("No font smoothing mode specified!"));
+        }
+
+        const { fontSmoothingType, fontSmoothingOrientation } = this.fetchSmootingSettings();
+
+        const regeditFileContent =
+            `REGEDIT4\n\n` +
+            `[HKEY_CURRENT_USER\\Control Panel\\Desktop]\n` +
+            `"FontSmoothing"="2"\n` +
+            `"FontSmoothingType"=dword:0000000${fontSmoothingType}\n` +
+            `"FontSmoothingGamma"=dword:00000578\n` +
+            `"FontSmoothingOrientation"=dword:0000000${fontSmoothingOrientation}\n`;
+
+        new Regedit(this.wine).patch(regeditFileContent);
+    }
 };
 
@@ -80,7 +101,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 c20751f06a..29601d88d9 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_GLSL_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_GLSL_script.js.html @@ -26,24 +26,35 @@

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

-
const Wine = include("engines.wine.engine.object");
-
-include("engines.wine.plugins.regedit");
+            
const Regedit = include("engines.wine.plugins.regedit");
 
 /**
- * force the Use of GLSL
- * @param {string} mode (enabled or disabled)
- * @returns {Wine} Wine object
+ * Plugin to force the use of GLSL
  */
-Wine.prototype.UseGLSL = function (mode) {
-    var regeditFileContent =
-        "REGEDIT4\n" +
-        "\n" +
-        "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n" +
-        "\"UseGLSL\"=\"" + mode + "\""
-    this.regedit().patch(regeditFileContent);
-    return this;
-};
+module.default = class GLSL { + constructor(wine) { + this.wine = wine; + } + + /** + * Specifies the mode + * + * @param {string} mode enabled or disabled + * @returns {GLSL} This + */ + withMode(mode) { + this.mode = mode; + + return this; + } + + go() { + const regeditFileContent = `REGEDIT4\n\n[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n"UseGLSL"="${this.mode}"`; + + new Regedit(this.wine).patch(regeditFileContent); + } +}; +
@@ -53,7 +64,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 1e95e0f03d..d288e81d84 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_OpenGL version_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_OpenGL version_script.js.html @@ -26,25 +26,37 @@

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

-
const Wine = include("engines.wine.engine.object");
-
-include("engines.wine.plugins.regedit");
-
-/**
- * sets OpenGL max core version
- * @param {number} major major version
- * @param {number} minor minor version
- * @returns {Wine} Wine object
- */
-Wine.prototype.setVersionGL = function (major, minor) {
-    var regeditFileContent =
-        "REGEDIT4\n" +
-        "\n" +
-        "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n" +
-        "\"MaxVersionGL\"=dword:000"+ major + "000" + minor
-    this.regedit().patch(regeditFileContent);
-    return this;
-};
+
const Regedit = include("engines.wine.plugins.regedit");
+
+module.default = class OpenGL {
+    constructor(wine) {
+        this.wine = wine;
+    }
+
+    /**
+     * Specifies the major and minor versions
+     *
+     * @param {number} major The major version
+     * @param {number} minor The minor version
+     * @returns {OpenGL} This
+     */
+    withVersion(major, minor) {
+        this.major = major;
+        this.minor = minor;
+
+        return this;
+    }
+
+    go() {
+        const regeditFileContent =
+            `REGEDIT4\n\n` +
+            `[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n` +
+            `"MaxVersionGL"=dword:000${this.major}000${this.minor}`;
+
+        new Regedit(this.wine).patch(regeditFileContent);
+    }
+};
+
@@ -54,7 +66,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 1cd89161e7..6f12ce8cd6 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_UseTakeFocus_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_UseTakeFocus_script.js.html @@ -26,23 +26,33 @@

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

-
const Wine = include("engines.wine.engine.object");
-
-include("engines.wine.plugins.regedit");
+            
const Regedit = include("engines.wine.plugins.regedit");
 
 /**
- * force the UseTakeFocus
- * @param {string} mode ("Y" or "N")
- * @returns {Wine} Wine object
+ * Plugin to force UseTakeFocus
  */
-Wine.prototype.UseTakeFocus = function (mode) {
-    var regeditFileContent =
-        "REGEDIT4\n" +
-        "\n" +
-        "[HKEY_CURRENT_USER\\Software\\Wine\\X11 Driver]\n" +
-        "\"UseTakeFocus\"=\"" + mode + "\"\n";
-    this.regedit().patch(regeditFileContent);
-    return this;
+module.default = class TakeFocus {
+    constructor(wine) {
+        this.wine = wine;
+    }
+
+    /**
+     * Specifies the mode
+     *
+     * @param {string} mode "Y" or "N"
+     * @returns {TakeFocus} This
+     */
+    withMode(mode) {
+        this.mode = mode;
+
+        return this;
+    }
+
+    go() {
+        const regeditFileContent = `REGEDIT4\n\n[HKEY_CURRENT_USER\\Software\\Wine\\X11 Driver]\n"UseTakeFocus"="${this.mode}"\n`;
+
+        new Regedit(this.wine).patch(regeditFileContent);
+    }
 };
 
@@ -54,7 +64,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 724599cf9b..701b5c50ab 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_Windows version_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_Windows version_script.js.html @@ -26,77 +26,74 @@

Source: Engines/Wine/Plugins/Windows version/script.js
-
const Wine = include("engines.wine.engine.object");
-
-include("engines.wine.plugins.regedit");
+            
const Regedit = include("engines.wine.plugins.regedit");
 
 /**
- * default windows version
- * @param {string} version (win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31)
- * @param {string} [servicePack] e.g. sp3
- * @returns {string|Wine} get: Windows version, set: Wine object
+ * Plugin to set the windows version
  */
-Wine.prototype.windowsVersion = function (version, servicePack) {
-    // get
-    if (arguments.length == 0) {
-        return this.regedit().fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "Version"]);
+module.default = class WindowsVersion {
+    constructor(wine) {
+        this.wine = wine;
+        this.applications = {};
     }
 
-    // set
-    var regeditFileContent;
-    if (version == null) {
-        regeditFileContent =
-            "REGEDIT4\n" +
-            "\n" +
-            "[HKEY_CURRENT_USER\\Software\\Wine]\n" +
-            "\"Version\"=-\n";
-    } else {
-        regeditFileContent =
-            "REGEDIT4\n" +
-            "\n" +
-            "[HKEY_CURRENT_USER\\Software\\Wine]\n" +
-            "\"Version\"=\"" + version + "\"\n";
-
-        if (servicePack) {
-            var servicePackNumber = servicePack.replace("sp", "");
-            regeditFileContent += "[HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows NT\\CurrentVersion]\n";
-            regeditFileContent += "\"CSDVersion\"=\"Service Pack " + servicePackNumber + "\"\n";
-            regeditFileContent += "[HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Windows]\n";
-            regeditFileContent += "\"CSDVersion\"=dword:00000" + servicePackNumber + "00\n";
-        }
+    getWindowsVersion() {
+        return new Regedit(this.wine).fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "Version"]);
     }
 
-    this.regedit().patch(regeditFileContent);
-    return this;
-};
+    /**
+     * Specifies the default windows version
+     *
+     * @param {string} version win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31
+     * @param {string} servicePack e.g. sp3
+     * @returns {WindowsVersion} This
+     */
+    withWindowsVersion(version, servicePack) {
+        this.version = version;
+        this.servicePack = servicePack;
+
+        return this;
+    }
 
-var SetOsForApplication = function () {
-    var that = this;
-    that._regeditFileContent =
-        "REGEDIT4\n" +
-        "\n";
+    /**
+     * Specifies the windows version for a given application
+     * @param {string} application The application executable
+     * @param {string} os The windows version
+     * @returns {WindowsVersion} This
+     */
+    withApplicationWindowsVersion(application, os) {
+        this.applications[application] = os;
 
-    that.wine = function (wine) {
-        that._wine = wine;
-        return that;
-    };
+        return this;
+    }
 
-    that.set = function (application, os) {
-        that._regeditFileContent += "[HKEY_CURRENT_USER\\Software\\Wine\\AppDefaults\\" + application + "]\n";
-        that._regeditFileContent += "\"Version\"=\"" + os + "\"\n";
+    go() {
+        let regeditFileContent = `REGEDIT4\n\n[HKEY_CURRENT_USER\\Software\\Wine]\n`;
 
-        return that;
-    };
+        // set the global windows version
+        if (this.version) {
+            regeditFileContent += `"Version"="${this.version}"\n`;
 
-    that.do = function () {
-        that._wine.regedit().patch(that._regeditFileContent);
-        return that._wine;
-    }
-};
+            if (this.servicePack) {
+                const servicePackNumber = this.servicePack.replace("sp", "");
+
+                regeditFileContent += `[HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows NT\\CurrentVersion]\n`;
+                regeditFileContent += `"CSDVersion"="Service Pack ${servicePackNumber}"\n`;
+                regeditFileContent += `[HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Windows]\n`;
+                regeditFileContent += `"CSDVersion"=dword:00000${servicePackNumber}00\n`;
+            }
+        } else {
+            regeditFileContent += `"Version"=-\n`;
+        }
 
-Wine.prototype.setOsForApplication = function () {
-    return new SetOsForApplication()
-        .wine(this)
+        // set the local windows version
+        Object.entries(this.applications).forEach(([application, os]) => {
+            regeditFileContent += `[HKEY_CURRENT_USER\\Software\\Wine\\AppDefaults\\${application}]\n`;
+            regeditFileContent += `"Version"="${os}"\n`;
+        });
+
+        new Regedit(this.wine).patch(regeditFileContent);
+    }
 };
 
@@ -108,7 +105,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 47d64b4193..24c81655ef 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_csmt_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_csmt_script.js.html @@ -26,23 +26,23 @@

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

-
const Wine = include("engines.wine.engine.object");
-
-include("engines.wine.plugins.regedit");
+            
const Regedit = include("engines.wine.plugins.regedit");
 
 /**
- * enable command stream multi-threading
- * @returns {Wine} Wine object
+ * Plugin to enable command stream multi-threading
  */
-Wine.prototype.enableCSMT = function () {
-    var regeditFileContent =
-        "REGEDIT4\n" +
-        "\n" +
-        "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n" +
-        "\"csmt\"=dword:1"
-    this.regedit().patch(regeditFileContent);
-    return this;
-};
+module.default = class CSMT { + constructor(wine) { + this.wine = wine; + } + + go() { + const regeditFileContent = `REGEDIT4\n\n[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n"csmt"=dword:1`; + + new Regedit(this.wine).patch(regeditFileContent); + } +}; +
@@ -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 697b2898bc..102efb09d8 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_hdpi_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_hdpi_script.js.html @@ -26,35 +26,73 @@

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

-
const Wine = include("engines.wine.engine.object");
-
-include("engines.wine.plugins.regedit");
+            
const Regedit = include("engines.wine.plugins.regedit");
 
 /**
-* gets/sets hdpi state
-* @param {boolean} [hdpi] true if hdpi shall be enabled
-* @returns {boolean|Wine} get: if is hdpi, set: Wine object
-*/
-Wine.prototype.hdpi = function (hdpi) {
-    // get
-    if (arguments.length == 0) {
-        return (this.regedit().fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "Mac Driver", "RetinaMode"]) == "y");
+ * Plugin to manage the hdpi state
+
+ * @returns {boolean|Wine} get: if is hdpi, set: Wine object
+ */
+module.default = class HDPI {
+    constructor(wine) {
+        this.wine = wine;
+    }
+
+    /**
+     * Specifies whether hdpi should be enabled or not
+     *
+     * @param {boolean} hdpi true if hdpi shall be enabled
+     * @returns {HDPI} This
+     */
+    withHdpi(hdpi) {
+        this.hdpi = hdpi;
+
+        return this;
+    }
+
+    fetchHdpiInformation() {
+        if (this.hdpi) {
+            return {
+                yn: "y",
+                fontDpiLogPixels: "dword:000000C0"
+            };
+        } else {
+            return {
+                yn: "n",
+                fontDpiLogPixels: "dword:00000060"
+            };
+        }
+    }
+
+    /**
+     * Fetches whether hdpi is enabled or not
+     *
+     * @returns {boolean} True if hdpi is enabled, false otherwise
+     */
+    isHdpi() {
+        const hdpi = new Regedit(this.wine).fetchValue([
+            "HKEY_CURRENT_USER",
+            "Software",
+            "Wine",
+            "Mac Driver",
+            "RetinaMode"
+        ]);
+
+        return hdpi == "y";
     }
 
-    // set
-    var hdpiYn = hdpi ? "y" : "n";
-    var fontDpiLogPixels = hdpi ? "dword:000000C0" : "dword:00000060"
-
-    var regeditFileContent =
-        "REGEDIT4\n" +
-        "\n" +
-        "[HKEY_CURRENT_USER\\Software\\Wine\\Mac Driver]\n" +
-        "\"RetinaMode\"=\"" + hdpiYn + "\"\n" +
-        "\n" +
-        "[HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Hardware Profiles\\Current\\Software\\Fonts]\n" +
-        "\"LogPixels\"=" + fontDpiLogPixels + "\n";
-    this.regedit().patch(regeditFileContent);
-    return this;
+    go() {
+        const { yn, fontDpiLogPixels } = this.fetchHdpiInformation();
+
+        const regeditFileContent =
+            `REGEDIT4\n\n` +
+            `[HKEY_CURRENT_USER\\Software\\Wine\\Mac Driver]\n` +
+            `"RetinaMode"="${yn}"\n\n` +
+            `[HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Hardware Profiles\\Current\\Software\\Fonts]\n` +
+            `"LogPixels"=${fontDpiLogPixels}\n`;
+
+        new Regedit(this.wine).patch(regeditFileContent);
+    }
 };
 
@@ -66,7 +104,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 badafe739a..2690182ba8 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_managed_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_managed_script.js.html @@ -26,63 +26,67 @@

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

-
const Wine = include("engines.wine.engine.object");
-
-include("engines.wine.plugins.regedit");
+            
const Regedit = include("engines.wine.plugins.regedit");
 
 /**
-* gets/sets managed state
-* @param {boolean} [managed] true if it shall be managed
-* @returns {boolean|Wine} get: if is managed, set: Wine object
-*/
-Wine.prototype.managed = function (managed) {
-    // get
-    if (arguments.length == 0) {
-        return (this.regedit().fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "X11 Driver", "Managed"]) == "Y");
+ * Plugin to set the managed state
+ *
+ * @param {boolean} [managed] true if it shall be managed
+ * @returns {boolean|Wine} get: if is managed, set: Wine object
+ */
+module.default = class Managed {
+    constructor(wine) {
+        this.wine = wine;
+        this.applications = {};
     }
 
-    // set
-    var managedYn = managed ? "Y" : "N";
+    /**
+     * Specifies the global managed state
+     *
+     * @param {boolean} managed True if it shall be managed
+     * @returns {Managed} This
+     */
+    withManaged(managed) {
+        this.managed = managed;
 
-    var regeditFileContent =
-        "REGEDIT4\n" +
-        "\n" +
-        "[HKEY_CURRENT_USER\\Software\\Wine\\X11 Driver]\n" +
-        "\"Managed\"=\"" + managedYn + "\"\n";
-    this.regedit().patch(regeditFileContent);
-    return this;
-};
+        return this;
+    }
 
-var SetManagedForApplication = function () {
-    var that = this;
-    that._regeditFileContent =
-        "REGEDIT4\n" +
-        "\n";
+    /**
+     * Specifies the managed state for a given application
+     * @param {string} application The application
+     * @param {boolean} managed True if the application shall be managed
+     * @returns {Managed} This
+     */
+    withManagedApplication(application, managed) {
+        this.applications[application] = managed;
 
-    that.wine = function (wine) {
-        that._wine = wine;
-        return that;
-    };
+        return this;
+    }
 
-    that.set = function (application, managed) {
-        var managedYn = managed ? "Y" : "N";
+    go() {
+        let regeditFileContent = `REGEDIT4\n\n[HKEY_CURRENT_USER\\Software\\Wine\\X11 Driver]\n`;
 
-        that._regeditFileContent += "[HKEY_CURRENT_USER\\Software\\Wine\\AppDefaults\\" + application + "\\X11 Driver]\n";
-        that._regeditFileContent += "\"Managed\"=\"" + managedYn + "\"\n";
+        // apply global managed
+        if (this.managed) {
+            const globalYN = this.managed ? "Y" : "N";
 
-        return that;
-    };
+            regeditFileContent += `"Managed"="${globalYN}"\n`;
+        }
 
-    that.do =  function () {
-        that._wine.regedit().patch(that._regeditFileContent);
-        return that._wine;
+        // apply managed for single applications
+        Object.entries(this.applications).forEach(([application, value]) => {
+            const localYN = value ? "Y" : "N";
+
+            regeditFileContent +=
+                `[HKEY_CURRENT_USER\\Software\\Wine\\AppDefaults\\${application}\\X11 Driver]\n` +
+                `"Managed"="${localYN}"\n`;
+        });
+
+        new Regedit(this.wine).patch(regeditFileContent);
     }
 };
-
-Wine.prototype.setManagedForApplication = function () {
-    return new SetManagedForApplication()
-        .wine(this)
-};
+
@@ -92,7 +96,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 589207f7f8..ccf7ecec90 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_native application_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_native application_script.js.html @@ -26,47 +26,56 @@

Source: Engines/Wine/Plugins/native application/script.js
-
const Wine = include("engines.wine.engine.object");
-
-include("engines.wine.plugins.regedit");
+            
const Regedit = include("engines.wine.plugins.regedit");
 
 /**
- * use native application for a certain file extension
- * @param {string} [extension] file extension (pdf, txt, rtf)
- * @returns {string|Wine} get: native application, set: Wine object
+ * Plugin to use native application for a certain file extension
  */
-Wine.prototype.nativeApplication = function (extension) {
-    // FIXME: get
-    if (arguments.length == 0) {
-        return this.regedit().fetchValue(["HKEY_CLASSES_ROOT", "." + extension]);
+module.default = class NativeApplication {
+    constructor(wine) {
+        this.wine = wine;
+    }
+
+    /**
+     * Specifies the file extension
+     *
+     * @param {string} extension The file extension (pdf, txt, rtf)
+     * @returns {NativeApplication} This
+     */
+    withExtension(extension) {
+        this.extension = extension;
+
+        return this;
     }
 
-    // set
-    var mimetype = null;
-    switch (extension) {
-        case "pdf":
-            mimetype = "application/pdf";
-            break;
-        case "txt":
-            mimetype = "application/plain";
-            break;
-        case "rtf":
-            mimetype = "application/rtf";
-            break;
-        default:
-            throw tr("Could not determine mimetype for file extension \"{0}\"", extension);
+    fetchMimetype() {
+        switch (this.extension) {
+            case "pdf":
+                return "application/pdf";
+            case "txt":
+                return "application/plain";
+            case "rtf":
+                return "application/rtf";
+            default:
+                throw new Error(tr('Could not determine mimetype for file extension "{0}"', this.extension));
+        }
+    }
+
+    go() {
+        const mimetype = this.fetchMimetype();
+
+        const regeditFileContent =
+            `REGEDIT4\n\n` +
+            `[HKEY_CLASSES_ROOT\\.${this.extension}]\n` +
+            `@="${this.extension}file"\n` +
+            `"Content Type"="${mimetype}"\n` +
+            `[HKEY_CLASSES_ROOT\\${this.extension}file\\Shell\\Open\\command]\n` +
+            `@="winebrowser "%1""`;
+
+        new Regedit(this.wine).patch(regeditFileContent);
     }
-    var regeditFileContent =
-        "REGEDIT4\n" +
-        "\n" +
-        "[HKEY_CLASSES_ROOT\\." + extension + "]\n" +
-        "@=\"" + extension + "file\"\n" +
-        "\"Content Type\"=\"" + mimetype + "\"\n" +
-        "[HKEY_CLASSES_ROOT\\" + extension + "file\\Shell\\Open\\command]\n" +
-        "@=\"winebrowser \"%1\"\"";
-    this.regedit().patch(regeditFileContent);
-    return this;
-};
+}; +
@@ -76,7 +85,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 c7d832d67c..27103cdc68 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_nocrashdialog_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_nocrashdialog_script.js.html @@ -26,22 +26,21 @@

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

-
const Wine = include("engines.wine.engine.object");
-
-include("engines.wine.plugins.regedit");
+            
const Regedit = include("engines.wine.plugins.regedit");
 
 /**
- * disables the crashdialog
- * @returns {Wine} Wine object
+ * Plugin to disable the crashdialog
  */
-Wine.prototype.nocrashdialog = function () {
-    var regeditFileContent =
-        "REGEDIT4\n" +
-        "\n" +
-        "[HKEY_CURRENT_USER\\Software\\Wine\\WineDbg]\n" +
-        "\"ShowCrashDialog\"=\"00000000\""
-    this.regedit().patch(regeditFileContent);
-    return this;
+module.default = class NoCrashDialog {
+    constructor(wine) {
+        this.wine = wine;
+    }
+
+    go() {
+        const regeditFileContent = `REGEDIT4\n\n[HKEY_CURRENT_USER\\Software\\Wine\\WineDbg]\n"ShowCrashDialog"="00000000"`;
+
+        new Regedit(this.wine).patch(regeditFileContent);
+    }
 };
 
@@ -53,7 +52,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 9995b28d50..b227d8019c 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_regedit_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_regedit_script.js.html @@ -26,67 +26,81 @@

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

-
const Wine = include("engines.wine.engine.object");
-const {createTempFile, writeToFile} = include("utils.functions.filesystem.files");
+            
const { createTempFile, writeToFile } = include("utils.functions.filesystem.files");
+
+const FileClass = Java.type("java.io.File");
+const ArrayListClass = Java.type("java.util.ArrayList");
 
 /**
- * Regedit support
- * @returns {Wine} Wine object
+ * Plugin to provide Regedit support
  */
-Wine.prototype.regedit = function () {
-    var _wine = this;
-
-    this.open = function (args) {
-        _wine.run("regedit", [args], this.prefixDirectory(), false, true);
-        return _wine;
-    };
-
-    this.patch = function (patchContent) {
-        if (typeof patchContent.getClass !== "undefined" && patchContent.getClass().getCanonicalName() == "byte[]") {
-            var StringClass = Java.type('java.lang.String');
-            patchContent = new StringClass(patchContent);
+module.default = class Regedit {
+    constructor(wine) {
+        this.wine = wine;
+    }
+
+    convertPatchContent(patchContent, contentType) {
+        if (contentType && contentType === "binary") {
+            return patchContent.map(byte => String.fromCharCode(byte)).join("");
+        } else {
+            return patchContent;
         }
-        var tmpFile = createTempFile("reg");
-        writeToFile(tmpFile, patchContent);
-        _wine.run("regedit", [tmpFile], this.prefixDirectory(), false, true);
-        return _wine;
-    };
-
-    this.deleteKey = function (keyPath) {
-        _wine.run("reg", ["delete", keyPath, "/f"], this.prefixDirectory(), false, true);
-        return _wine;
-    };
-
-    this.deleteValue = function (keyPath, value) {
-        _wine.run("reg", ["delete", keyPath, "/v", value, "/f"], this.prefixDirectory(), false, true);
-        return _wine;
-    };
-
-    this.fetchValue = function (keyPath) {
-        var root = keyPath[0];
-        var registryFile;
+    }
+
+    fetchRegistryFile(root) {
         switch (root) {
             case "HKEY_CURRENT_USER":
-                registryFile = "user.reg";
-                break;
+                return "user.reg";
             case "HKEY_LOCAL_MACHINE":
-                registryFile = "system.reg";
-                break;
+                return "system.reg";
             default:
-                throw "Illegal registry root exception";
+                throw new Error("Illegal registry root exception");
         }
+    }
+
+    open(args) {
+        this.wine.run("regedit", [args], this.wine.prefixDirectory(), false, true);
+
+        return this;
+    }
+
+    patch(patchContent, contentType) {
+        const content = this.convertPatchContent(patchContent, contentType);
+        const tmpFile = createTempFile("reg");
+
+        writeToFile(tmpFile, content);
+
+        this.wine.run("regedit", [tmpFile], this.wine.prefixDirectory(), false, true);
 
-        keyPath.shift();
+        return this;
+    }
+
+    deleteKey(keyPath) {
+        this.wine.run("reg", ["delete", keyPath, "/f"], this.wine.prefixDirectory(), false, true);
+
+        return this;
+    }
+
+    deleteValue(keyPath, value) {
+        this.wine.run("reg", ["delete", keyPath, "/v", value, "/f"], this.wine.prefixDirectory(), false, true);
+
+        return this;
+    }
+
+    fetchValue(keyPath) {
+        const root = keyPath.shift();
+
+        const registryFile = this.fetchRegistryFile(root);
 
         // ensure that correct type is passed to Java
-        var ArrayListClass = Java.type('java.util.ArrayList');
-        var keyPathList = new ArrayListClass();
-        for (var level in keyPath) {
+        const keyPathList = new ArrayListClass();
+        for (const level in keyPath) {
             keyPathList.add(keyPath[level]);
         }
 
-        var FileClass = Java.type('java.io.File');
-        var registryValue = Bean("registryParser").parseFile(new FileClass(this.prefixDirectory() + "/" + registryFile), root).getChild(keyPathList);
+        const registryValue = Bean("registryParser")
+            .parseFile(new FileClass(this.wine.prefixDirectory() + "/" + registryFile), root)
+            .getChild(keyPathList);
 
         if (registryValue == null) {
             return null;
@@ -97,12 +111,8 @@ 

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

} else { return registryValue; } - }; - - return this; + } }; - -Wine.prototype.registry = Wine.prototype.regedit;
@@ -113,7 +123,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 cbb07c7a9b..cd7ea5c321 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_regsvr32_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_regsvr32_script.js.html @@ -26,22 +26,26 @@

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

-
const Wine = include("engines.wine.engine.object");
-
-/**
-* runs "regsvr32"
-* @returns {Wine} Wine object
-*/
-Wine.prototype.regsvr32 = function () {
-    var _wine = this;
-
-    this.install = function (dll) {
-        _wine.run("regsvr32", ["/i", dll], this.prefixDirectory(), false, true);
-        return _wine;
-    };
-
-    return this;
-};
+
/**
+ * Plugin to run "regsvr32"
+ */
+module.default = class Regsvr32 {
+    constructor(wine) {
+        this.wine = wine;
+        this.dlls = [];
+    }
+
+    withDll(dll) {
+        this.dlls.push(dll);
+
+        return this;
+    }
+
+    go() {
+        this.dlls.forEach(dll => this.wine.run("regsvr32", ["/i", dll], this.wine.prefixDirectory(), false, true));
+    }
+};
+
@@ -51,7 +55,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 53ecbf9304..0ecd970727 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_sound driver_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_sound driver_script.js.html @@ -26,24 +26,35 @@

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

-
const Wine = include("engines.wine.engine.object");
-
-include("engines.wine.plugins.regedit");
+            
const Regedit = include("engines.wine.plugins.regedit");
 
 /**
- * sets sound driver
- * @param {string} driver (alsa, pulse)
- * @returns {Wine} Wine object
+ * Plugin to set the sound driver
  */
-Wine.prototype.setSoundDriver = function (driver) {
-    var regeditFileContent =
-        "REGEDIT4\n" +
-        "\n" +
-        "[HKEY_CURRENT_USER\\Software\\Wine\\Drivers]\n" +
-        "\"Audio\"=\"" + driver + "\"\n";
-    this.regedit().patch(regeditFileContent);
-    return this;
-};
+module.default = class SoundDriver { + constructor(wine) { + this.wine = wine; + } + + /** + * Specifies the used sound driver + * + * @param {string} driver alsa or pulse + * @returns {SoundDriver} This + */ + withDriver(driver) { + this.driver = driver; + + return this; + } + + go() { + const regeditFileContent = `REGEDIT4\n\n[HKEY_CURRENT_USER\\Software\\Wine\\Drivers]\n"Audio"="${this.driver}"\n`; + + new Regedit(this.wine).patch(regeditFileContent); + } +}; +
@@ -53,7 +64,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 24cc1894e2..10ad0d93e2 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_virtual desktop_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_virtual desktop_script.js.html @@ -27,35 +27,62 @@

Source: Engines/Wine/Plugins/virtual desktop/script.js
/* eslint-disable no-undef */
-const Wine = include("engines.wine.engine.object");
-const {getScreenWidth, getScreenHeight} = include("utils.functions.system.virtual_desktop");
+const { getScreenWidth, getScreenHeight } = include("utils.functions.system.virtual_desktop");
 
-include("engines.wine.plugins.regedit");
+const Regedit = include("engines.wine.plugins.regedit");
 
 /**
- * Sets Virtual Desktop with window resolution
- * @param {number} width width of virtual desktop (in px)
- * @param {number} height height of virtual desktop (in px)
- * @returns {Wine} Wine object
+ * Plugin to set a Virtual Desktop with window resolution
  */
-Wine.prototype.setVirtualDesktop = function (width, height) {
-    if (!width)
-    {
-        width = getScreenWidth();
+module.default = class VirtualDesktop {
+    constructor(wine) {
+        this.wine = wine;
     }
-    if (!height)
-    {
-        height = getScreenHeight();
+
+    /**
+     * Specifies the dimensions of the virtual desktop
+     *
+     * @param {number} width width of virtual desktop (in px)
+     * @param {number} height height of virtual desktop (in px)
+     * @returns {VirtualDesktop} This
+     */
+    withDimensions(width, height) {
+        this.width = width;
+        this.height = height;
+
+        return this;
+    }
+
+    fetchDimensions() {
+        let width = this.width;
+        let height = this.height;
+
+        if (!width) {
+            width = getScreenWidth();
+        }
+
+        if (!height) {
+            height = getScreenHeight();
+        }
+
+        return {
+            width: width,
+            height: height
+        };
+    }
+
+    go() {
+        const { width, height } = this.fetchDimensions();
+
+        const regeditFileContent =
+            `REGEDIT4\n\n` +
+            `[HKEY_CURRENT_USER\\Software\\Wine\\Explorer\\Desktops]\n` +
+            `"Default"="${width}x${height}"\n` +
+            `[HKEY_CURRENT_USER\\Software\\Wine\\Explorer]\n` +
+            `"Desktop"="Default"\n`;
+
+        new Regedit(this.wine).patch(regeditFileContent);
     }
-    const regeditFileContent =
-        "REGEDIT4\n" +
-        "\n" +
-        "[HKEY_CURRENT_USER\\Software\\Wine\\Explorer\\Desktops]\n" +
-        "\"Default\"=\"" + width + "x" + height + "\"\n" +
-        "[HKEY_CURRENT_USER\\Software\\Wine\\Explorer]\n" +
-        "\"Desktop\"=\"" + "Default" + "\"\n";
-    this.regedit().patch(regeditFileContent);
-    return this;
 };
 
@@ -67,7 +94,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 e330df5efa..a9082c7fc9 100644 --- a/docs/jsdoc/Engines_Wine_QuickScript_GoG Script_script.js.html +++ b/docs/jsdoc/Engines_Wine_QuickScript_GoG Script_script.js.html @@ -161,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 d11efb8644..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..b59d45dad1 --- /dev/null +++ b/docs/jsdoc/Engines_Wine_QuickScript_Steam Script_script.js.html @@ -0,0 +1,258 @@ + + + + + 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");
+const OverrideDLL = include("engines.wine.plugins.override_dll");
+const WindowsVersion = 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);
+
+        // Fix for Uplay games that are executed on steam
+        new WindowsVersion(wine)
+            .withApplicationWindowsVersion("upc.exe", "winvista")
+            .withApplicationWindowsVersion("UbisoftGameLauncher.exe", "winvista")
+            .go();
+
+        // 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) {
+            new OverrideDLL(wine).withMode("", ["gameoverlayrenderer"]).go();
+        }
+
+        // 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 18770cfb35..0226e95a6e 100644 --- a/docs/jsdoc/Engines_Wine_Settings_DirectDraw renderer_script.js.html +++ b/docs/jsdoc/Engines_Wine_Settings_DirectDraw renderer_script.js.html @@ -28,7 +28,7 @@

Source: Engines/Wine/Settings/DirectDraw renderer/script.
const Wine = include("engines.wine.engine.object");
 
-include("engines.wine.plugins.regedit");
+const Regedit = include("engines.wine.plugins.regedit");
 
 /**
  * setting to set the DirectDraw renderer
@@ -50,35 +50,40 @@ 

Source: Engines/Wine/Settings/DirectDraw renderer/script. } getCurrentOption(container) { - var currentValue = new Wine() - .prefix(container) - .regedit() - .fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "Direct3D", "DirectDrawRenderer"]); + const wine = new Wine().prefix(container); + + const currentValue = new Regedit(wine).fetchValue([ + "HKEY_CURRENT_USER", + "Software", + "Wine", + "Direct3D", + "DirectDrawRenderer" + ]); + // find matching option (use default if not found) - var index = Math.max(this.registryValues.indexOf(currentValue), 0); + const index = Math.max(this.registryValues.indexOf(currentValue), 0); return this.options[index]; } setOption(container, optionIndex) { + const wine = new Wine().prefix(container); + if (0 == optionIndex) { - new Wine() - .prefix(container) - .regedit() - .deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "DirectDrawRenderer"); + new Regedit(wine).deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "DirectDrawRenderer"); } else { - var regeditFileContent = + const regeditFileContent = "REGEDIT4\n" + "\n" + "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n" + - "\"DirectDrawRenderer\"=\"" + this.registryValues[optionIndex] + "\"\n"; - new Wine() - .prefix(container) - .regedit() - .patch(regeditFileContent); + '"DirectDrawRenderer"="' + + this.registryValues[optionIndex] + + '"\n'; + + new Regedit(wine).patch(regeditFileContent); } } -} +};

@@ -89,7 +94,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 593d73490b..58ee8e3342 100644 --- a/docs/jsdoc/Engines_Wine_Settings_Font smoothing_script.js.html +++ b/docs/jsdoc/Engines_Wine_Settings_Font smoothing_script.js.html @@ -28,8 +28,8 @@

Source: Engines/Wine/Settings/Font smoothing/script.js
const Wine = include("engines.wine.engine.object");
 
-include("engines.wine.plugins.regedit");
-include("engines.wine.plugins.font_smoothing");
+const Regedit = include("engines.wine.plugins.regedit");
+const FontSmoothing = include("engines.wine.plugins.font_smoothing");
 
 /**
  * Setting to set the Fonts Smoothing
@@ -49,20 +49,28 @@ 

Source: Engines/Wine/Settings/Font smoothing/script.jsSource: Engines/Wine/Settings/Font smoothing/script.jsSource: Engines/Wine/Settings/Font smoothing/script.js

@@ -113,7 +120,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 012ea4732f..b6e57519f6 100644 --- a/docs/jsdoc/Engines_Wine_Settings_GLSL_script.js.html +++ b/docs/jsdoc/Engines_Wine_Settings_GLSL_script.js.html @@ -28,7 +28,7 @@

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

const Wine = include("engines.wine.engine.object");
 
-include("engines.wine.plugins.regedit");
+const Regedit = include("engines.wine.plugins.regedit");
 
 /**
  * Setting to enable/disable GLSL
@@ -50,34 +50,40 @@ 

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

} getCurrentOption(container) { - var currentValue = new Wine() - .prefix(container) - .regedit() - .fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "Direct3D", "UseGLSL"]); + const wine = new Wine().prefix(container); + + var currentValue = new Regedit(wine).fetchValue([ + "HKEY_CURRENT_USER", + "Software", + "Wine", + "Direct3D", + "UseGLSL" + ]); + // find matching option (use default if not found) - var index = Math.max(this.registryValues.indexOf(currentValue), 0); + const index = Math.max(this.registryValues.indexOf(currentValue), 0); + return this.options[index]; } setOption(container, optionIndex) { + const wine = new Wine().prefix(container); + if (0 == optionIndex) { - new Wine() - .prefix(container) - .regedit() - .deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "UseGLSL"); + new Regedit(wine).deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "UseGLSL"); } else { - var regeditFileContent = + const regeditFileContent = "REGEDIT4\n" + "\n" + "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n" + - "\"UseGLSL\"=\"" + this.registryValues[optionIndex] + "\"\n"; - new Wine() - .prefix(container) - .regedit() - .patch(regeditFileContent); + '"UseGLSL"="' + + this.registryValues[optionIndex] + + '"\n'; + + new Regedit(wine).patch(regeditFileContent); } } -} +};

@@ -88,7 +94,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 6af0d713a5..710c2f7ec7 100644 --- a/docs/jsdoc/Engines_Wine_Settings_UseTakeFocus_script.js.html +++ b/docs/jsdoc/Engines_Wine_Settings_UseTakeFocus_script.js.html @@ -28,8 +28,8 @@

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

const Wine = include("engines.wine.engine.object");
 
-include("engines.wine.plugins.regedit");
-include("engines.wine.plugins.usetakefocus");
+const Regedit = include("engines.wine.plugins.regedit");
+const TakeFocus = include("engines.wine.plugins.usetakefocus");
 
 /**
  * Setting to enable/disable UseTakeFocus
@@ -52,28 +52,32 @@ 

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

} getCurrentOption(container) { - var currentValue = new Wine() - .prefix(container) - .regedit() - .fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "X11 Driver", "UseTakeFocus"]); + const wine = new Wine().prefix(container); + + const currentValue = new Regedit(wine).fetchValue([ + "HKEY_CURRENT_USER", + "Software", + "Wine", + "X11 Driver", + "UseTakeFocus" + ]); + // find matching option (use default if not found) - var index = Math.max(this.registryValues.indexOf(currentValue), 0); + const index = Math.max(this.registryValues.indexOf(currentValue), 0); + return this.options[index]; } setOption(container, optionIndex) { + const wine = new Wine().prefix(container); + if (0 == optionIndex) { - new Wine() - .prefix(container) - .regedit() - .deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\X11 Driver", "UseTakeFocus"); + new Regedit(wine).deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\X11 Driver", "UseTakeFocus"); } else { - new Wine() - .prefix(container) - .UseTakeFocus(this.registryValues[optionIndex]); + new TakeFocus(wine).withMode(this.registryValues[optionIndex]).go(); } } -} +};
@@ -84,7 +88,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 1f44510b1d..ff4119a2cd 100644 --- a/docs/jsdoc/Engines_Wine_Settings_always offscreen_script.js.html +++ b/docs/jsdoc/Engines_Wine_Settings_always offscreen_script.js.html @@ -28,7 +28,7 @@

Source: Engines/Wine/Settings/always offscreen/script.js<
const Wine = include("engines.wine.engine.object");
 
-include("engines.wine.plugins.regedit");
+const Regedit = include("engines.wine.plugins.regedit");
 
 /**
  * setting to set always offscreen
@@ -50,10 +50,15 @@ 

Source: Engines/Wine/Settings/always offscreen/script.js< } getCurrentOption(container) { - const currentValue = new Wine() - .prefix(container) - .regedit() - .fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "Direct3D", "AlwaysOffscreen"]); + const wine = new Wine().prefix(container); + + const currentValue = new Regedit(wine).fetchValue([ + "HKEY_CURRENT_USER", + "Software", + "Wine", + "Direct3D", + "AlwaysOffscreen" + ]); // find matching option (use default if not found) const index = Math.max(this.registryValues.indexOf(currentValue), 0); @@ -62,24 +67,23 @@

Source: Engines/Wine/Settings/always offscreen/script.js< } setOption(container, optionIndex) { + const wine = new Wine().prefix(container); + if (0 == optionIndex) { - new Wine() - .prefix(container) - .regedit() - .deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "AlwaysOffscreen"); + new Regedit(wine).deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "AlwaysOffscreen"); } else { const regeditFileContent = "REGEDIT4\n" + "\n" + "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n" + - "\"AlwaysOffscreen\"=\"" + this.registryValues[optionIndex] + "\"\n"; - new Wine() - .prefix(container) - .regedit() - .patch(regeditFileContent); + '"AlwaysOffscreen"="' + + this.registryValues[optionIndex] + + '"\n'; + + new Regedit(wine).patch(regeditFileContent); } } -} +};

@@ -90,7 +94,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 a485e4eeba..a301ced7f7 100644 --- a/docs/jsdoc/Engines_Wine_Settings_hdpi_script.js.html +++ b/docs/jsdoc/Engines_Wine_Settings_hdpi_script.js.html @@ -28,12 +28,11 @@

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

const Wine = include("engines.wine.engine.object");
 
-include("engines.wine.plugins.hdpi");
+const HDPI = include("engines.wine.plugins.hdpi");
 
 /**
  * Setting to enable/disable Retina
  */
-// eslint-disable-next-line no-unused-vars
 module.default = class HDPISetting {
     constructor() {
         this.options = [tr("Disabled"), tr("Enabled")];
@@ -48,19 +47,19 @@ 

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

} getCurrentOption(container) { - var currentValue = new Wine() - .prefix(container) - .hdpi(); + const wine = new Wine().prefix(container); + + const currentValue = new HDPI(wine).isHdpi(); return currentValue ? this.options[1] : this.options[0]; } setOption(container, optionIndex) { - new Wine() - .prefix(container) - .hdpi(1 == optionIndex); + const wine = new Wine().prefix(container); + + new HDPI(wine).withHdpi(1 == optionIndex).go(); } -} +};
@@ -71,7 +70,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 2211e0b766..713bc89f8c 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 @@ -28,7 +28,7 @@

Source: Engines/Wine/Settings/mouse warp override/script.
const Wine = include("engines.wine.engine.object");
 
-include("engines.wine.plugins.regedit");
+const Regedit = include("engines.wine.plugins.regedit");
 
 /**
  * Setting to configure mouse warp override
@@ -50,35 +50,40 @@ 

Source: Engines/Wine/Settings/mouse warp override/script. } getCurrentOption(container) { - var currentValue = new Wine() - .prefix(container) - .regedit() - .fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "DirectInput", "MouseWarpOverride"]); + const wine = new Wine().prefix(container); + + var currentValue = new Regedit(wine).fetchValue([ + "HKEY_CURRENT_USER", + "Software", + "Wine", + "DirectInput", + "MouseWarpOverride" + ]); + // find matching option (use default if not found) - var index = Math.max(this.registryValues.indexOf(currentValue), 0); + const index = Math.max(this.registryValues.indexOf(currentValue), 0); return this.options[index]; } setOption(container, optionIndex) { + const wine = new Wine().prefix(container); + if (0 == optionIndex) { - new Wine() - .prefix(container) - .regedit() - .deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\DirectInput", "MouseWarpOverride"); + new Regedit(wine).deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\DirectInput", "MouseWarpOverride"); } else { - var regeditFileContent = + const regeditFileContent = "REGEDIT4\n" + "\n" + "[HKEY_CURRENT_USER\\Software\\Wine\\DirectInput]\n" + - "\"MouseWarpOverride\"=\"" + this.registryValues[optionIndex] + "\"\n"; - new Wine() - .prefix(container) - .regedit() - .patch(regeditFileContent); + '"MouseWarpOverride"="' + + this.registryValues[optionIndex] + + '"\n'; + + new Regedit(wine).patch(regeditFileContent); } } -} +};

@@ -89,7 +94,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 e65b7d286b..483d47762f 100644 --- a/docs/jsdoc/Engines_Wine_Settings_multisampling_script.js.html +++ b/docs/jsdoc/Engines_Wine_Settings_multisampling_script.js.html @@ -28,7 +28,7 @@

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

const Wine = include("engines.wine.engine.object");
 
-include("engines.wine.plugins.regedit");
+const Regedit = include("engines.wine.plugins.regedit");
 
 /**
  * Setting to configure multisampling
@@ -50,34 +50,40 @@ 

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

@@ -88,7 +94,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 76698b99c8..8b92080fb8 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 @@ -28,7 +28,7 @@

Source: Engines/Wine/Settings/offscreen rendering mode/sc
const Wine = include("engines.wine.engine.object");
 
-include("engines.wine.plugins.regedit");
+const Regedit = include("engines.wine.plugins.regedit");
 
 /**
  * Setting to set the offscreen rendering mode
@@ -50,34 +50,40 @@ 

Source: Engines/Wine/Settings/offscreen rendering mode/sc } getCurrentOption(container) { - var currentValue = new Wine() - .prefix(container) - .regedit() - .fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "Direct3D", "OffscreenRenderingMode"]); + const wine = new Wine().prefix(container); + + var currentValue = new Regedit(wine).fetchValue([ + "HKEY_CURRENT_USER", + "Software", + "Wine", + "Direct3D", + "OffscreenRenderingMode" + ]); + // find matching option (use default if not found) - var index = Math.max(this.registryValues.indexOf(currentValue), 0); + const index = Math.max(this.registryValues.indexOf(currentValue), 0); + return this.options[index]; } setOption(container, optionIndex) { + const wine = new Wine().prefix(container); + if (0 == optionIndex) { - new Wine() - .prefix(container) - .regedit() - .deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "OffscreenRenderingMode"); + new Regedit(wine).deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "OffscreenRenderingMode"); } else { - var regeditFileContent = + const regeditFileContent = "REGEDIT4\n" + "\n" + "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n" + - "\"OffscreenRenderingMode\"=\"" + this.registryValues[optionIndex] + "\"\n"; - new Wine() - .prefix(container) - .regedit() - .patch(regeditFileContent); + '"OffscreenRenderingMode"="' + + this.registryValues[optionIndex] + + '"\n'; + + new Regedit(wine).patch(regeditFileContent); } } -} +};

@@ -88,7 +94,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 3de44bf334..e5fce2423f 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 @@ -28,7 +28,7 @@

Source: Engines/Wine/Settings/render target lock mode/scr
const Wine = include("engines.wine.engine.object");
 
-include("engines.wine.plugins.regedit");
+const Regedit = include("engines.wine.plugins.regedit");
 
 /**
  * Setting to set the render target lock mode
@@ -50,34 +50,40 @@ 

Source: Engines/Wine/Settings/render target lock mode/scr } getCurrentOption(container) { - var currentValue = new Wine() - .prefix(container) - .regedit() - .fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "Direct3D", "RenderTargetModeLock"]); + const wine = new Wine().prefix(container); + + var currentValue = new Regedit(wine).fetchValue([ + "HKEY_CURRENT_USER", + "Software", + "Wine", + "Direct3D", + "RenderTargetModeLock" + ]); + // find matching option (use default if not found) - var index = Math.max(this.registryValues.indexOf(currentValue), 0); + const index = Math.max(this.registryValues.indexOf(currentValue), 0); + return this.options[index]; } setOption(container, optionIndex) { + const wine = new Wine().prefix(container); + if (0 == optionIndex) { - new Wine() - .prefix(container) - .regedit() - .deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "RenderTargetModeLock"); + new Regedit(wine).deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "RenderTargetModeLock"); } else { - var regeditFileContent = + const regeditFileContent = "REGEDIT4\n" + "\n" + "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n" + - "\"RenderTargetModeLock\"=\"" + this.registryValues[optionIndex] + "\"\n"; - new Wine() - .prefix(container) - .regedit() - .patch(regeditFileContent); + '"RenderTargetModeLock"="' + + this.registryValues[optionIndex] + + '"\n'; + + new Regedit(wine).patch(regeditFileContent); } } -} +};

@@ -88,7 +94,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 9e58187050..fb2f21a8a3 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 @@ -28,7 +28,7 @@

Source: Engines/Wine/Settings/strict draw ordering/script
const Wine = include("engines.wine.engine.object");
 
-include("engines.wine.plugins.regedit");
+const Regedit = include("engines.wine.plugins.regedit");
 
 /**
  * Setting to configure strict draw ordering
@@ -50,34 +50,40 @@ 

Source: Engines/Wine/Settings/strict draw ordering/script } getCurrentOption(container) { - var currentValue = new Wine() - .prefix(container) - .regedit() - .fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "Direct3D", "StrictDrawOrdering"]); + const wine = new Wine().prefix(container); + + var currentValue = new Regedit(wine).fetchValue([ + "HKEY_CURRENT_USER", + "Software", + "Wine", + "Direct3D", + "StrictDrawOrdering" + ]); + // find matching option (use default if not found) - var index = Math.max(this.registryValues.indexOf(currentValue), 0); + const index = Math.max(this.registryValues.indexOf(currentValue), 0); + return this.options[index]; } setOption(container, optionIndex) { + const wine = new Wine().prefix(container); + if (0 == optionIndex) { - new Wine() - .prefix(container) - .regedit() - .deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "StrictDrawOrdering"); + new Regedit(wine).deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "StrictDrawOrdering"); } else { - var regeditFileContent = + const regeditFileContent = "REGEDIT4\n" + "\n" + "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n" + - "\"StrictDrawOrdering\"=\"" + this.registryValues[optionIndex] + "\"\n"; - new Wine() - .prefix(container) - .regedit() - .patch(regeditFileContent); + '"StrictDrawOrdering"="' + + this.registryValues[optionIndex] + + '"\n'; + + new Regedit(wine).patch(regeditFileContent); } } -} +};

@@ -88,7 +94,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 0c71a4570b..638d2b1bbb 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 @@ -28,7 +28,7 @@

Source: Engines/Wine/Settings/video memory size/script.js
const Wine = include("engines.wine.engine.object");
 
-include("engines.wine.plugins.regedit");
+const Regedit = include("engines.wine.plugins.regedit");
 
 /**
  * Setting to set the video memory size
@@ -50,34 +50,40 @@ 

Source: Engines/Wine/Settings/video memory size/script.js } getCurrentOption(container) { - var currentValue = new Wine() - .prefix(container) - .regedit() - .fetchValue(["HKEY_CURRENT_USER", "Software", "Wine", "Direct3D", "VideoMemorySize"]); + const wine = new Wine().prefix(container); + + const currentValue = new Regedit(wine).fetchValue([ + "HKEY_CURRENT_USER", + "Software", + "Wine", + "Direct3D", + "VideoMemorySize" + ]); + // find matching option (use default if not found) - var index = Math.max(this.registryValues.indexOf(currentValue), 0); + const index = Math.max(this.registryValues.indexOf(currentValue), 0); + return this.options[index]; } setOption(container, optionIndex) { + const wine = new Wine().prefix(container); + if (0 == optionIndex) { - new Wine() - .prefix(container) - .regedit() - .deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "VideoMemorySize"); + new Regedit(wine).deleteValue("HKEY_CURRENT_USER\\Software\\Wine\\Direct3D", "VideoMemorySize"); } else { - var regeditFileContent = + const regeditFileContent = "REGEDIT4\n" + "\n" + "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]\n" + - "\"VideoMemorySize\"=\"" + this.registryValues[optionIndex] + "\"\n"; - new Wine() - .prefix(container) - .regedit() - .patch(regeditFileContent); + '"VideoMemorySize"="' + + this.registryValues[optionIndex] + + '"\n'; + + new Regedit(wine).patch(regeditFileContent); } } -} +};

@@ -88,7 +94,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 963ffca2ec..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 abce44eab3..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 daf71a074e..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 bfaf427341..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 826443014f..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 1acec1e5d6..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 ecb5971955..320e39448a 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 @@ -28,8 +28,6 @@

Source: Engines/Wine/Tools/Wine Registry Editor/script.js
const Wine = include("engines.wine.engine.object");
 
-include("engines.wine.plugins.regedit");
-
 /**
  * Tool to open the Wine registry editor
  */
@@ -40,11 +38,9 @@ 

Source: Engines/Wine/Tools/Wine Registry Editor/script.js } run(container) { - new Wine() - .prefix(container) - .run("regedit", [], null, false, true); + new Wine().prefix(container).run("regedit", [], null, false, true); } -} +};

@@ -55,7 +51,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 edbbd2a6c3..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 a8e991008e..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 ae96a668c8..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 b88e5f5421..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 87f03c6be6..199769d04c 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_D9VK_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_D9VK_script.js.html @@ -35,7 +35,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install D9VK @@ -62,6 +62,7 @@

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

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"); @@ -104,14 +105,11 @@

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

if (file.endsWith(".dll")) { cp(`${d9vkTmpDir}/x32/${file}`, system32directory); - this.wine - .overrideDLL() - .set("native", [file]) - .do(); + new OverrideDLL(this.wine).withMode("native", [file]).go(); } }); - if (this.architecture() == "amd64") { + if (architecture == "amd64") { const system64directory = this.wine.system64directory(); // copy 64 bits dll to system* @@ -153,7 +151,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 a0482407f5..eb453826ed 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_DXVK_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_DXVK_script.js.html @@ -35,7 +35,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install DXVK @@ -112,10 +112,7 @@

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

if (file.endsWith(".dll")) { cp(`${dxvkTmpDir}/x32/${file}`, sys32dir); - this.wine - .overrideDLL() - .set("native", [file]) - .do(); + new OverrideDLL(this.wine).withMode("native", [file]).go(); } }); @@ -211,7 +208,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 138b724cc3..62fe083ef7 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_FAudio_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_FAudio_script.js.html @@ -30,10 +30,11 @@

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

const Resource = include("utils.functions.net.resource"); const { Extractor } = include("utils.functions.filesystem.extract"); const { ls, cp } = include("utils.functions.filesystem.files"); +const { getGithubReleases } = include("utils.functions.net.githubreleases"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install FAudio @@ -66,7 +67,8 @@

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

} if (typeof this.faudioVersion !== "string") { - this.faudioVersion = "19.08"; + const versions = getGithubReleases("Kron4ek", "FAudio-Builds", wizard); + this.faudioVersion = versions[0]; } const setupFile = new Resource() @@ -89,10 +91,7 @@

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

if (file.endsWith(".dll")) { cp(`${faudioDir}/x64/${file}`, system64directory); - this.wine - .overrideDLL() - .set("native", [file]) - .do(); + new OverrideDLL(this.wine).withMode("native", [file]).go(); } }); } @@ -104,9 +103,9 @@

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

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 versions = getGithubReleases("Kron4ek", "FAudio-Builds", wizard); - const selectedVersion = wizard.menu(tr("Please select the version."), versions, "19.08"); + const selectedVersion = wizard.menu(tr("Please select the version."), versions, versions[0]); // install selected version new FAudio(wine).withVersion(selectedVersion.text).go(); @@ -126,7 +125,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 f0d7293e7a..4646cedf16 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_PhysX_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_PhysX_script.js.html @@ -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 fd81f1a4b0..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 @@ -91,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 0eb3191f58..3f04aff213 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_Remove Mono_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_Remove Mono_script.js.html @@ -31,7 +31,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** * Verb to remove mono @@ -49,15 +49,15 @@

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

if (this.wine.uninstall("Mono")) { wizard.wait(tr("Please wait...")); - this.wine.regedit().deleteKey("HKLM\\Software\\Microsoft\\.NETFramework\\v2.0.50727\\SBSDisabled"); + new Regedit(this.wine).deleteKey("HKLM\\Software\\Microsoft\\.NETFramework\\v2.0.50727\\SBSDisabled"); wizard.wait(tr("Please wait...")); - this.wine.regedit().deleteKey("HKLM\\Software\\Microsoft\\NET Framework Setup\\NDP\\v3.5"); + new Regedit(this.wine).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"); + new Regedit(this.wine).deleteKey("HKLM\\Software\\Microsoft\\NET Framework Setup\\NDP\\v4"); remove(`${system32directory}/mscoree.dll`); @@ -91,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 81fdded84f..65a6c4dea4 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_Tahoma_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_Tahoma_script.js.html @@ -33,7 +33,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.register_font"); +const RegisterFont = include("engines.wine.plugins.register_font"); /** * Verb to install the Tahoma font @@ -64,11 +64,10 @@

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

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(); + new RegisterFont(this.wine) + .withFont("Tahoma", "tahoma.ttf") + .withFont("Tahoma Bold", "tahomabd.ttf") + .go(); } static install(container) { @@ -95,7 +94,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 494dad1fd0..cf255245bd 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_Uplay_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_Uplay_script.js.html @@ -81,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 deffd6cfe9..a4f80243d6 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_VK9_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_VK9_script.js.html @@ -33,7 +33,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); const operatingSystemFetcher = Bean("operatingSystemFetcher"); @@ -123,10 +123,7 @@

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

remove(`${prefixDirectory}/TMP64/`); } - this.wine - .overrideDLL() - .set("native", ["d3d9"]) - .do(); + new OverrideDLL(this.wine).withMode("native", ["d3d9"]).go(); } static install(container) { @@ -159,7 +156,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 f2d18159de..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 @@ -110,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 9ccdfc0dfc..254b4f37b5 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_adobeair_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_adobeair_script.js.html @@ -31,7 +31,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.windows_version"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); /** * Verb to install adobeair @@ -43,11 +43,12 @@

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

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(); + const currentWindowsVersion = new WindowsVersion(this.wine).getWindowsVersion(); - this.wine.windowsVersion("winxp"); + new WindowsVersion(this.wine).withWindowsVersion("winxp").go(); const adobeair = new Resource() .wizard(wizard) @@ -56,9 +57,10 @@

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

.get(); this.wine.run(adobeair); + this.wine.wait(); - this.wine.windowsVersion(currentWindowsVersion); + new WindowsVersion(this.wine).withWindowsVersion(currentWindowsVersion).go(); } static install(container) { @@ -85,7 +87,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 19b290a354..89bcc550af 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_amstream_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_amstream_script.js.html @@ -33,8 +33,8 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); -include("engines.wine.plugins.regsvr32"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); +const Regsvr32 = include("engines.wine.plugins.regsvr32"); /** * Verb to install amstream @@ -77,7 +77,7 @@

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

system32directory ); - this.wine.regsvr32().install("amstream.dll"); + new Regsvr32(this.wine).withDll("amstream.dll").go(); if (architecture == "amd64") { const system64directory = this.wine.system64directory(); @@ -112,10 +112,7 @@

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

this.wine.regsvr64().install("amstream.dll"); } - this.wine - .overrideDLL() - .set("native,builtin", ["amstream"]) - .do(); + new OverrideDLL(this.wine).withMode("native,builtin", ["amstream"]).go(); } static install(container) { @@ -142,7 +139,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 01c5ebad48..f0bd128ff7 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_atmlib_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_atmlib_script.js.html @@ -93,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 96e2333927..008ed5be47 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_corefonts_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_corefonts_script.js.html @@ -32,7 +32,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.register_font"); +const RegisterFont = include("engines.wine.plugins.register_font"); /** * Verb to install corefonts @@ -135,38 +135,37 @@

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

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(); + new RegisterFont(this.wine) + .withFont("Arial", "Arial.TTF") + .withFont("Arial Bold", "Arialbd.TTF") + .withFont("Arial Bold Italic", "Arialbi.TTF") + .withFont("Arial Italic", "Ariali.TTF") + .withFont("Arial Black", "AriBlk.TTF") + .withFont("Comic Sans MS", "Comic.TTF") + .withFont("Comic Sans MS Bold", "Comicbd.TTF") + .withFont("Courier New", "Cour.TTF") + .withFont("Courier New Bold", "CourBD.TTF") + .withFont("Courier New Bold Italic", "CourBI.TTF") + .withFont("Courier New Italic", "Couri.TTF") + .withFont("Georgia", "Georgia.TTF") + .withFont("Georgia Bold", "Georgiab.TTF") + .withFont("Georgia Bold Italic", "Georgiaz.TTF") + .withFont("Georgia Italic", "Georgiai.TTF") + .withFont("Impact", "Impact.TTF") + .withFont("Times New Roman", "Times.TTF") + .withFont("Times New Roman Bold", "Timesbd.TTF") + .withFont("Times New Roman Bold Italic", "Timesbi.TTF") + .withFont("Times New Roman Italic", "Timesi.TTF") + .withFont("Trebucet MS", "Trebuc.TTF") + .withFont("Trebucet MS Bold", "Trebucbd.TTF") + .withFont("Trebucet MS Bold Italic", "Trebucbi.TTF") + .withFont("Trebucet MS Italic", "Trebucit.TTF") + .withFont("Verdana", "Verdana.TTF") + .withFont("Verdana Bold", "Verdanab.TTF") + .withFont("Verdana Bold Italic", "Verdanaz.TTF") + .withFont("Verdana Italic", "Verdanai.TTF") + .withFont("Webdings", "Webdings.TTF") + .go(); } static install(container) { @@ -193,7 +192,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 89f65d974e..3f423d9fa3 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_crypt32_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_crypt32_script.js.html @@ -30,7 +30,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); const WindowsXPSP3 = include("engines.wine.verbs.sp3extract"); /** @@ -45,10 +45,7 @@

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

new WindowsXPSP3(this.wine).withFileToExtract("crypt32.dll").go(); new WindowsXPSP3(this.wine).withFileToExtract("msasn1.dll").go(); - this.wine - .overrideDLL() - .set("native, builtin", ["crypt32"]) - .do(); + new OverrideDLL(this.wine).withMode("native, builtin", ["crypt32"]).go(); } static install(container) { @@ -75,7 +72,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 c876c4cc5d..5abe339bcc 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_d3drm_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_d3drm_script.js.html @@ -32,7 +32,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install d3drm @@ -70,10 +70,7 @@

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

.to(system32directory) .extract(["-L", "-F", "d3drm.dll"]); - this.wine - .overrideDLL() - .set("native", ["d3drm"]) - .do(); + new OverrideDLL(this.wine).withMode("native", ["d3drm"]).go(); } static install(container) { @@ -100,7 +97,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 20f13e500d..a84b1a82cf 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_d3dx10_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_d3dx10_script.js.html @@ -32,7 +32,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install D3DX10 @@ -140,9 +140,8 @@

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

this.extractDirectXToSystemDirectory(progressBar, filesToExtractx64, system64directory, "d3dx10*.dll"); } - this.wine - .overrideDLL() - .set("native", [ + new OverrideDLL(this.wine) + .withMode("native", [ "d3dx10_33", "d3dx10_34", "d3dx10_35", @@ -155,7 +154,7 @@

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

"d3dx10_42", "d3dx10_43" ]) - .do(); + .go(); } static install(container) { @@ -182,7 +181,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 9eb845bc84..6616c4a619 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_d3dx11_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_d3dx11_script.js.html @@ -32,7 +32,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install D3DX11 @@ -120,10 +120,7 @@

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

this.extractDirectXToSystemDirectory(progressBar, filesToExtractx64, system64directory, "*.dll"); } - this.wine - .overrideDLL() - .set("native, builtin", ["d3dx11_42", "d3dx11_43"]) - .do(); + new OverrideDLL(this.wine).withMode("native, builtin", ["d3dx11_42", "d3dx11_43"]).go(); } static install(container) { @@ -150,7 +147,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 82c7bb82c7..9ac2472184 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_d3dx9_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_d3dx9_script.js.html @@ -32,7 +32,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install D3DX9 @@ -156,9 +156,8 @@

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

this.extractDirectXToSystemDirectory(progressBar, filesToExtractx64, system64directory, "d3dx9*.dll"); } - this.wine - .overrideDLL() - .set("native", [ + new OverrideDLL(this.wine) + .withMode("native", [ "d3dx9_24", "d3dx9_25", "d3dx9_26", @@ -180,7 +179,7 @@

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

"d3dx9_42", "d3dx9_43" ]) - .do(); + .go(); } static install(container) { @@ -207,7 +206,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 0fc183918d..eb6462ca23 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_devenum_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_devenum_script.js.html @@ -32,8 +32,8 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); -include("engines.wine.plugins.regsvr32"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); +const Regsvr32 = include("engines.wine.plugins.regsvr32"); /** * Verb to install devenum @@ -71,11 +71,9 @@

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

.to(system32directory) .extract(["-L", "-F", "devenum.dll"]); - this.wine.regsvr32().install("devenum.dll"); - this.wine - .overrideDLL() - .set("native", ["devenum"]) - .do(); + new Regsvr32(this.wine).withDll("devenum.dll").go(); + + new OverrideDLL(this.wine).withMode("native", ["devenum"]).go(); } static install(container) { @@ -102,7 +100,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 6a19012234..62f7125039 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_dotnet20_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_dotnet20_script.js.html @@ -27,13 +27,13 @@

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 Optional = Java.type("java.util.Optional");
 
-include("engines.wine.plugins.override_dll");
-include("engines.wine.plugins.windows_version");
+const WindowsVersion = include("engines.wine.plugins.windows_version");
 const RemoveMono = include("engines.wine.verbs.remove_mono");
 
 /**
@@ -46,11 +46,13 @@ 

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

go() { const wizard = this.wine.wizard(); - const windowsVersion = this.wine.windowsVersion(); + + const windowsVersion = new WindowsVersion(this.wine).getWindowsVersion(); + const system32directory = this.wine.system32directory(); if (this.wine.architecture() == "x86") { - this.wine.windowsVersion("win2k"); + new WindowsVersion(this.wine).withWindowsVersion("win2k").go(); const setupFile32 = new Resource() .wizard(wizard) @@ -65,7 +67,7 @@

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

this.wine.run(setupFile32, ["/q:a", "/c:install.exe /q"], null, false, true); - this.wine.windowsVersion(windowsVersion); + new WindowsVersion(this.wine).withWindowsVersion(windowsVersion).go(); remove(`${system32directory}/msvcr80.dll`); remove(`${system32directory}/msvcm80.dll`); @@ -114,7 +116,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 1b268de0eb..044e6ad4a5 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_dotnet20sp2_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_dotnet20sp2_script.js.html @@ -32,9 +32,9 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); -include("engines.wine.plugins.windows_version"); -include("engines.wine.plugins.regedit"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); +const Regedit = include("engines.wine.plugins.regedit"); const RemoveMono = include("engines.wine.verbs.remove_mono"); /** @@ -47,15 +47,13 @@

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

go() { const wizard = this.wine.wizard(); - const osVersion = this.wine.windowsVersion(); const system32directory = this.wine.system32directory(); - this.wine.windowsVersion("winxp"); + const osVersion = new WindowsVersion(this.wine).getWindowsVersion(); - this.wine - .overrideDLL() - .set("builtin", ["ngen.exe", "regsvcs.exe", "mscorsvw.exe"]) - .do(); + new WindowsVersion(this.wine).withWindowsVersion("winxp").go(); + + new OverrideDLL(this.wine).withMode("builtin", ["ngen.exe", "regsvcs.exe", "mscorsvw.exe"]).go(); new RemoveMono(this.wine).go(); @@ -91,11 +89,11 @@

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

this.wine.run(setupFile64, [setupFile64, "/q", '/c:"install.exe /q"'], null, false, true); } - this.wine.windowsVersion(osVersion); + new WindowsVersion(this.wine).withWindowsVersion(osVersion).go(); - 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"); + new Regedit(this.wine).deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*ngen.exe"); + new Regedit(this.wine).deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*regsvcs.exe"); + new Regedit(this.wine).deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*mscorsvw.exe"); } static install(container) { @@ -122,7 +120,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 0f4c8123ea..41b68dac52 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_dotnet40_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_dotnet40_script.js.html @@ -31,9 +31,9 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); -include("engines.wine.plugins.windows_version"); -include("engines.wine.plugins.regedit"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); +const Regedit = include("engines.wine.plugins.regedit"); const RemoveMono = include("engines.wine.verbs.remove_mono"); /** @@ -46,7 +46,8 @@

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

go() { const wizard = this.wine.wizard(); - const windowsVersion = this.wine.windowsVersion(); + + const windowsVersion = new WindowsVersion(this.wine).getWindowsVersion(); if (this.wine.architecture() == "amd64") { print( @@ -68,12 +69,9 @@

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

new RemoveMono(this.wine).go(); - this.wine.windowsVersion("winxp"); + new WindowsVersion(this.wine).withWindowsVersion("winxp").go(); - this.wine - .overrideDLL() - .set("builtin", ["fusion"]) - .do(); + new OverrideDLL(this.wine).withMode("builtin", ["fusion"]).go(); wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.0")); @@ -81,12 +79,9 @@

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

wizard.wait(tr("Please wait...")); - this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); + new Regedit(this.wine).deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); - this.wine - .overrideDLL() - .set("native", ["mscoree"]) - .do(); + new OverrideDLL(this.wine).withMode("native", ["mscoree"]).go(); wizard.wait(tr("Please wait...")); @@ -97,13 +92,13 @@

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

'"Install"=dword:0001\n' + '"Version"="4.0.30319"'; - this.wine.regedit().patch(regeditFileContent); + new Regedit(this.wine).patch(regeditFileContent); //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); + new WindowsVersion(this.wine).withWindowsVersion(windowsVersion).go(); } static install(container) { @@ -139,7 +134,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 d5eb875d46..f19e13e6d0 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_dotnet452_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_dotnet452_script.js.html @@ -31,9 +31,9 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); -include("engines.wine.plugins.windows_version"); -include("engines.wine.plugins.regedit"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); +const Regedit = include("engines.wine.plugins.regedit"); const RemoveMono = include("engines.wine.verbs.remove_mono"); const DotNET40 = include("engines.wine.verbs.dotnet40"); @@ -47,7 +47,8 @@

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

go() { const wizard = this.wine.wizard(); - const windowsVersion = this.wine.windowsVersion(); + + const windowsVersion = new WindowsVersion(this.wine).getWindowsVersion(); print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet452")); @@ -64,12 +65,9 @@

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

new DotNET40(this.wine).go(); - this.wine.windowsVersion("win7"); + new WindowsVersion(this.wine).withWindowsVersion("win7").go(); - this.wine - .overrideDLL() - .set("builtin", ["fusion"]) - .do(); + new OverrideDLL(this.wine).withMode("builtin", ["fusion"]).go(); wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.5.2")); @@ -77,14 +75,11 @@

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

wizard.wait(tr("Please wait...")); - this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); + new Regedit(this.wine).deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); - this.wine - .overrideDLL() - .set("native", ["mscoree"]) - .do(); + new OverrideDLL(this.wine).withMode("native", ["mscoree"]).go(); - this.wine.windowsVersion(windowsVersion); + new WindowsVersion(this.wine).withWindowsVersion(windowsVersion).go(); if (windowsVersion != "win2003") { print(tr('{0} applications can have issues when windows version is not set to "win2003"', ".NET 4.5.2")); @@ -117,7 +112,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 901ca6825a..7d2c9e48ec 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_dotnet45_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_dotnet45_script.js.html @@ -31,9 +31,9 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); -include("engines.wine.plugins.windows_version"); -include("engines.wine.plugins.regedit"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); +const Regedit = include("engines.wine.plugins.regedit"); const RemoveMono = include("engines.wine.verbs.remove_mono"); const DotNET40 = include("engines.wine.verbs.dotnet40"); @@ -47,9 +47,10 @@

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

go() { const wizard = this.wine.wizard(); - const windowsVersion = this.wine.windowsVersion(); const architecture = this.wine.architecture(); + const windowsVersion = new WindowsVersion(this.wine).getWindowsVersion(); + if (architecture == "amd64") { print( tr( @@ -72,12 +73,9 @@

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

new DotNET40(this.wine).go(); - this.wine.windowsVersion("win7"); + new WindowsVersion(this.wine).withWindowsVersion("win7").go(); - this.wine - .overrideDLL() - .set("builtin", ["fusion"]) - .do(); + new OverrideDLL(this.wine).withMode("builtin", ["fusion"]).go(); wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.5")); @@ -85,14 +83,11 @@

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

wizard.wait(tr("Please wait...")); - this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); + new Regedit(this.wine).deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); - this.wine - .overrideDLL() - .set("native", ["mscoree"]) - .do(); + new OverrideDLL(this.wine).withMode("native", ["mscoree"]).go(); - this.wine.windowsVersion(windowsVersion); + new WindowsVersion(this.wine).withWindowsVersion(windowsVersion).go(); if (windowsVersion != "win2003") { print(tr('{0} applications can have issues when windows version is not set to "win2003"', ".NET 4.5")); @@ -132,7 +127,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 0b6b61205c..1c44e0c73e 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_dotnet461_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_dotnet461_script.js.html @@ -31,9 +31,9 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); -include("engines.wine.plugins.windows_version"); -include("engines.wine.plugins.regedit"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); +const Regedit = include("engines.wine.plugins.regedit"); const RemoveMono = include("engines.wine.verbs.remove_mono"); const DotNET46 = include("engines.wine.verbs.dotnet46"); @@ -47,7 +47,8 @@

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

go() { const wizard = this.wine.wizard(); - const windowsVersion = this.wine.windowsVersion(); + + const windowsVersion = new WindowsVersion(this.wine).getWindowsVersion(); print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet461")); @@ -64,12 +65,9 @@

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

new DotNET46(this.wine).go(); - this.wine.windowsVersion("win7"); + new WindowsVersion(this.wine).withWindowsVersion("win7").go(); - this.wine - .overrideDLL() - .set("builtin", ["fusion"]) - .do(); + new OverrideDLL(this.wine).withMode("builtin", ["fusion"]).go(); wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.6.1")); @@ -77,14 +75,11 @@

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

wizard.wait(tr("Please wait...")); - this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); + new Regedit(this.wine).deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); - this.wine - .overrideDLL() - .set("native", ["mscoree"]) - .do(); + new OverrideDLL(this.wine).withMode("native", ["mscoree"]).go(); - this.wine.windowsVersion(windowsVersion); + new WindowsVersion(this.wine).withWindowsVersion(windowsVersion).go(); } static install(container) { @@ -113,7 +108,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 1f4e986ff4..eb07c6025a 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_dotnet462_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_dotnet462_script.js.html @@ -31,9 +31,9 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); -include("engines.wine.plugins.windows_version"); -include("engines.wine.plugins.regedit"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); +const Regedit = include("engines.wine.plugins.regedit"); const RemoveMono = include("engines.wine.verbs.remove_mono"); const DotNET461 = include("engines.wine.verbs.dotnet461"); @@ -47,7 +47,8 @@

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

go() { const wizard = this.wine.wizard(); - const windowsVersion = this.wine.windowsVersion(); + + const windowsVersion = new WindowsVersion(this.wine).getWindowsVersion(); print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet462")); @@ -64,12 +65,9 @@

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

new DotNET461(this.wine).go(); - this.wine.windowsVersion("win7"); + new WindowsVersion(this.wine).withWindowsVersion("win7").go(); - this.wine - .overrideDLL() - .set("builtin", ["fusion"]) - .do(); + new OverrideDLL(this.wine).withMode("builtin", ["fusion"]).go(); wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.6.2")); @@ -77,14 +75,11 @@

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

wizard.wait(tr("Please wait...")); - this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); + new Regedit(this.wine).deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); - this.wine - .overrideDLL() - .set("native", ["mscoree"]) - .do(); + new OverrideDLL(this.wine).withMode("native", ["mscoree"]).go(); - this.wine.windowsVersion(windowsVersion); + new WindowsVersion(this.wine).withWindowsVersion(windowsVersion).go(); } static install(container) { @@ -113,7 +108,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 b188b5122c..8a6c3d9767 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_dotnet46_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_dotnet46_script.js.html @@ -31,9 +31,9 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); -include("engines.wine.plugins.windows_version"); -include("engines.wine.plugins.regedit"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); +const Regedit = include("engines.wine.plugins.regedit"); const RemoveMono = include("engines.wine.verbs.remove_mono"); const DotNET45 = include("engines.wine.verbs.dotnet45"); @@ -47,7 +47,8 @@

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

go() { const wizard = this.wine.wizard(); - const windowsVersion = this.wine.windowsVersion(); + + const windowsVersion = new WindowsVersion(this.wine).getWindowsVersion(); print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet46")); @@ -64,12 +65,9 @@

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

new DotNET45(this.wine).go(); - this.wine.windowsVersion("win7"); + new WindowsVersion(this.wine).withWindowsVersion("win7").go(); - this.wine - .overrideDLL() - .set("builtin", ["fusion"]) - .do(); + new OverrideDLL(this.wine).withMode("builtin", ["fusion"]).go(); wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.6")); @@ -77,14 +75,11 @@

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

wizard.wait(tr("Please wait...")); - this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); + new Regedit(this.wine).deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); - this.wine - .overrideDLL() - .set("native", ["mscoree"]) - .do(); + new OverrideDLL(this.wine).withMode("native", ["mscoree"]).go(); - this.wine.windowsVersion(windowsVersion); + new WindowsVersion(this.wine).withWindowsVersion(windowsVersion).go(); } static install(container) { @@ -113,7 +108,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 6b22287966..1fa9c03a41 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_dotnet472_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_dotnet472_script.js.html @@ -31,9 +31,9 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); -include("engines.wine.plugins.windows_version"); -include("engines.wine.plugins.regedit"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); +const WindowsVersion = include("engines.wine.plugins.windows_version"); +const Regedit = include("engines.wine.plugins.regedit"); const RemoveMono = include("engines.wine.verbs.remove_mono"); const DotNET462 = include("engines.wine.verbs.dotnet462"); @@ -47,7 +47,8 @@

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

go() { const wizard = this.wine.wizard(); - const windowsVersion = this.wine.windowsVersion(); + + const windowsVersion = new WindowsVersion(this.wine).getWindowsVersion(); print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet472")); @@ -64,12 +65,9 @@

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

new DotNET462(this.wine).go(); - this.wine.windowsVersion("win7"); + new WindowsVersion(this.wine).withWindowsVersion("win7").go(); - this.wine - .overrideDLL() - .set("builtin", ["fusion"]) - .do(); + new OverrideDLL(this.wine).withMode("builtin", ["fusion"]).go(); wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.7.2")); @@ -77,14 +75,11 @@

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

wizard.wait(tr("Please wait...")); - this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); + new Regedit(this.wine).deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); - this.wine - .overrideDLL() - .set("native", ["mscoree"]) - .do(); + new OverrideDLL(this.wine).withMode("native", ["mscoree"]).go(); - this.wine.windowsVersion(windowsVersion); + new WindowsVersion(this.wine).withWindowsVersion(windowsVersion).go(); } static install(container) { @@ -113,7 +108,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 789f0bfab7..e6a835a252 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_gallium9_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_gallium9_script.js.html @@ -30,10 +30,11 @@

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

const Resource = include("utils.functions.net.resource"); const { Extractor } = include("utils.functions.filesystem.extract"); const { remove, lns } = include("utils.functions.filesystem.files"); +const { getGithubReleases } = include("utils.functions.net.githubreleases"); const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install Gallium 9 Standalone @@ -62,7 +63,8 @@

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

const system32directory = this.wine.system32directory(); if (typeof this.gallium9Version !== "string") { - this.gallium9Version = "0.4"; + const versions = getGithubReleases("iXit", "wine-nine-standalone", wizard); + this.gallium9Version = versions[0]; } wizard.message( @@ -74,9 +76,9 @@

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

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` + `https://github.com/iXit/wine-nine-standalone/releases/download/${this.gallium9Version}/gallium-nine-standalone-${this.gallium9Version}.tar.gz` ) - .name(`gallium-nine-standalone-v${this.gallium9Version}.tar.gz`) + .name(`gallium-nine-standalone-${this.gallium9Version}.tar.gz`) .get(); new Extractor() @@ -109,24 +111,21 @@

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

); lns(`${system64directory}/d3d9-nine.dll`, `${system64directory}/d3d9.dll`); - this.wine.run(`${system64directory}ninewinecfg.exe`, ["-e"], null, false, true); + this.wine.run(`${system64directory}/ninewinecfg.exe`, ["-e"], null, false, true); } else { - this.wine.run(`${system32directory}ninewinecfg.exe`, ["-e"], null, false, true); + this.wine.run(`${system32directory}/ninewinecfg.exe`, ["-e"], null, false, true); } - this.wine - .overrideDLL() - .set("native", ["d3d9"]) - .do(); + new OverrideDLL(this.wine).withMode("native", ["d3d9"]).go(); } static install(container) { const wine = new Wine(); const wizard = SetupWizard(InstallationType.VERBS, "gallium9", Optional.empty()); - const versions = ["0.4", "0.3", "0.2"]; + const versions = getGithubReleases("iXit", "wine-nine-standalone", wizard); - const selectedVersion = wizard.menu(tr("Please select the version."), versions, "0.4"); + const selectedVersion = wizard.menu(tr("Please select the version."), versions, versions[0]); wine.prefix(container); wine.wizard(wizard); @@ -149,7 +148,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 11637119ad..84e2345eea 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_gdiplus_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_gdiplus_script.js.html @@ -33,7 +33,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install gdiplus @@ -51,46 +51,59 @@

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

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") + .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) + .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); - + .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 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") + .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) + .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); + .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(); - - cp(`${prefixDirectory}/drive_c/Tmp/asms/10/msft/windows/gdiplus/gdiplus.dll`, system32directory); + new OverrideDLL(this.wine).withMode("native", ["gdiplus"]).go(); } static install(container) { @@ -117,7 +130,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 index 1d6fbcb277..725c0cb54b 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_gdiplus_winxp_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_gdiplus_winxp_script.js.html @@ -33,7 +33,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install gdiplus (windows xp) @@ -52,32 +52,37 @@

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

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") + .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) + .wizard(wizard) .to(`${prefixDirectory}/drive_c/gdiplus/`) .extract(["-F", "FL_gdiplus_dll_____X86.3643236F_FC70_11D3_A536_0090278A1BB8"]); - + new CabExtract() .archive(setupFile) - .wizard(wizard) + .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`); + .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(); + new OverrideDLL(this.wine).withMode("native", ["gdiplus"]).go(); } static install(container) { @@ -93,7 +98,7 @@

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

} } -module.default = GDIPlusWindowsXP; +module.default = GDIPlusWinXP;
@@ -104,7 +109,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Verbs_luna_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_luna_script.js.html index a3ab6e3c1c..32ece933b1 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_luna_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_luna_script.js.html @@ -32,7 +32,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** * Verb to install luna @@ -64,7 +64,7 @@

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

cp(lunaStyle, `${prefixDirectory}/drive_c/windows/Resources/Themes/luna/`); - this.wine.regedit().open(lunaReg); + new Regedit(this.wine).open(lunaReg); } static install(container) { @@ -91,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 10e1db25d8..b00344890e 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_mfc42_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_mfc42_script.js.html @@ -33,7 +33,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install mfc42.dll and mfc42u.dll @@ -69,10 +69,7 @@

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

.to(system32directory) .extract(["-F", "mfc42*.dll"]); - this.wine - .overrideDLL() - .set("native, builtin", ["mfc42", "mfc42u"]) - .do(); + new OverrideDLL(this.wine).withMode("native, builtin", ["mfc42", "mfc42u"]).go(); } static install(container) { @@ -99,7 +96,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 054bf2685f..2b1b48a905 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_msls31_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_msls31_script.js.html @@ -85,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 1ad43e3076..9a074bdbcd 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_mspatcha_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_mspatcha_script.js.html @@ -33,7 +33,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install mspatcha @@ -73,10 +73,7 @@

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

remove(`${system32directory}/i386/`); - this.wine - .overrideDLL() - .set("native, builtin", ["mspatcha"]) - .do(); + new OverrideDLL(this.wine).withMode("native, builtin", ["mspatcha"]).go(); } static install(container) { @@ -103,7 +100,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 137313a0fe..d1d43d91ba 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_msxml3_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_msxml3_script.js.html @@ -32,7 +32,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install msxml3 @@ -55,10 +55,7 @@

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

remove(`${system32directory}/msxml3.dll`); - this.wine - .overrideDLL() - .set("native", ["msxml3"]) - .do(); + new OverrideDLL(this.wine).withMode("native", ["msxml3"]).go(); wizard.wait(tr("Please wait while {0} is installed...", "msxml3")); @@ -89,7 +86,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 4f30a256ab..d2c75d54f5 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_msxml6_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_msxml6_script.js.html @@ -28,11 +28,11 @@

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");
+const OverrideDLL = include("engines.wine.plugins.override_dll");
 
 /**
  * Verb to install msxml6
@@ -45,17 +45,19 @@ 

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

go() { const wizard = this.wine.wizard(); const system32directory = this.wine.system32directory(); - const system64directory = this.wine.system64directory(); - remove(`${system32directory}/msxml6.dll`); + if (fileExists(`${system32directory}/msxml6.dll`)) { + remove(`${system32directory}/msxml6.dll`); + } - this.wine - .overrideDLL() - .set("native,builtin", ["msxml6"]) - .do(); + new OverrideDLL(this.wine).withMode("native,builtin", ["msxml6"]).go(); if (this.wine.architecture() == "amd64") { - remove(`${system64directory}/msxml6.dll`); + const system64directory = this.wine.system64directory(); + + if (fileExists(`${system64directory}/msxml6.dll`)) { + remove(`${system64directory}/msxml6.dll`); + } const setupFile64 = new Resource() .wizard(wizard) @@ -68,7 +70,7 @@

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

wizard.wait(tr("Please wait while {0} is installed...", "msxml6")); - this.run(setupFile64, ["/q:a", "/c:msxml6_x64.msi /q"], null, false, true); + this.wine.run(setupFile64, ["/q:a", "/c:msxml6_x64.msi /q"], null, false, true); } else { const setupFile32 = new Resource() .wizard(wizard) @@ -81,7 +83,7 @@

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

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.run(setupFile32, ["/q:a", "/c:msxml6_x86.msi /q"], null, false, true); } } @@ -109,7 +111,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 a40cbc287a..acf69ed00d 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_quartz_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_quartz_script.js.html @@ -33,8 +33,8 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); -include("engines.wine.plugins.regsvr32"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); +const Regsvr32 = include("engines.wine.plugins.regsvr32"); /** * Verb to install quartz @@ -72,12 +72,9 @@

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

remove(`${prefixDirectory}/TMP/`); - this.wine.regsvr32().install("quartz.dll"); + new Regsvr32(this.wine).withDll("quartz.dll").go(); - this.wine - .overrideDLL() - .set("native, builtin", ["quartz"]) - .do(); + new OverrideDLL(this.wine).withMode("native, builtin", ["quartz"]).go(); } static install(container) { @@ -104,7 +101,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 8c5e882147..f9418d21be 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_sandbox_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_sandbox_script.js.html @@ -78,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 b713e2719f..c5220d53fb 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_secur32_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_secur32_script.js.html @@ -33,7 +33,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install secur32 @@ -105,10 +105,7 @@

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

remove(`${prefixDirectory}/TMP/`); } - this.wine - .overrideDLL() - .set("native, builtin", ["secur32"]) - .do(); + new OverrideDLL(this.wine).withMode("native, builtin", ["secur32"]).go(); } static install(container) { @@ -135,7 +132,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 2927ae1048..7cbfef45b5 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun2003_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun2003_script.js.html @@ -85,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 e1c96890e1..b969b78c21 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun2005_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun2005_script.js.html @@ -31,7 +31,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install vcrun2005 @@ -55,10 +55,9 @@

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

this.wine.run(setupFile, "/q", null, false, true); - this.wine - .overrideDLL() - .set("native, builtin", ["atl80", "msvcm80", "msvcp80", "msvcr80", "vcomp"]) - .do(); + new OverrideDLL(this.wine) + .withMode("native, builtin", ["atl80", "msvcm80", "msvcp80", "msvcr80", "vcomp"]) + .go(); } install(container) { @@ -85,7 +84,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 9021170030..b8ee29cb79 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun2008_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun2008_script.js.html @@ -31,7 +31,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install vcrun2008 @@ -70,10 +70,9 @@

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

this.wine.run(setupFile64, "/q", null, false, true); } - this.wine - .overrideDLL() - .set("native, builtin", ["atl90", "msvcm90", "msvcp90", "msvcr90", "vcomp90"]) - .do(); + new OverrideDLL(this.wine) + .withMode("native, builtin", ["atl90", "msvcm90", "msvcp90", "msvcr90", "vcomp90"]) + .go(); } static install(container) { @@ -100,7 +99,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 1c5d5db16e..126c33a9fc 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun2010_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun2010_script.js.html @@ -31,7 +31,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install vcrun2010 @@ -70,10 +70,7 @@

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

this.wine.run(setupFile64, "/q", null, false, true); } - this.wine - .overrideDLL() - .set("native, builtin", ["atl100", "msvcp100", "msvcr100", "vcomp100"]) - .do(); + new OverrideDLL(this.wine).withMode("native, builtin", ["atl100", "msvcp100", "msvcr100", "vcomp100"]).go(); } static install(container) { @@ -100,7 +97,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 b622c04c4c..72b0921fb3 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun2012_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun2012_script.js.html @@ -31,7 +31,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install vcrun2012 @@ -72,10 +72,7 @@

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

this.wine.run(setupFile64, "/q", null, false, true); } - this.wine - .overrideDLL() - .set("native, builtin", ["atl110", "msvcp110", "msvcr110", "vcomp110"]) - .do(); + new OverrideDLL(this.wine).withMode("native, builtin", ["atl110", "msvcp110", "msvcr110", "vcomp110"]).go(); } static install(container) { @@ -102,7 +99,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 67afdc305d..7095b6db2d 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun2013_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun2013_script.js.html @@ -31,7 +31,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install vcrun2013 @@ -70,10 +70,7 @@

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

this.wine.run(setupFile64, "/q", null, false, true); } - this.wine - .overrideDLL() - .set("native, builtin", ["atl120", "msvcp120", "msvcr120", "vcomp120"]) - .do(); + new OverrideDLL(this.wine).withMode("native, builtin", ["atl120", "msvcp120", "msvcr120", "vcomp120"]).go(); } install(container) { @@ -100,7 +97,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 e9656c0b5b..02690a0c55 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun2015_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun2015_script.js.html @@ -31,7 +31,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install vcrun2015 @@ -70,9 +70,8 @@

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

this.wine.run(setupFile64, "/q", null, false, true); } - this.wine - .overrideDLL() - .set("native, builtin", [ + new OverrideDLL(this.wine) + .withMode("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", @@ -88,7 +87,7 @@

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

"vcomp140", "vcruntime140" ]) - .do(); + .go(); } static install(container) { @@ -115,7 +114,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 3dc987112a..42007f5456 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun2017_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun2017_script.js.html @@ -31,7 +31,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.override_dll"); +const OverrideDLL = include("engines.wine.plugins.override_dll"); /** * Verb to install vcrun2017 @@ -72,9 +72,8 @@

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

this.wine.run(setupFile64, "/q", null, false, true); } - this.wine - .overrideDLL() - .set("native, builtin", [ + new OverrideDLL(this.wine) + .withMode("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", @@ -90,7 +89,7 @@

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

"vcomp140", "vcruntime140" ]) - .do(); + .go(); } static install(container) { @@ -117,7 +116,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 3458b70aaa..02bf40e41b 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun6sp6_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun6sp6_script.js.html @@ -94,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 2056573f92..5d5aacaf0d 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vulkanSDK_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vulkanSDK_script.js.html @@ -32,7 +32,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.regedit"); +const Regedit = include("engines.wine.plugins.regedit"); /** * Verb to install all the necessary things to run winevulkan (even inside wine mainline or newest wine-staging) @@ -86,7 +86,7 @@

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

"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Khronos\\Vulkan\\Drivers]\n" + '"C:\\\\Windows\\\\winevulkan.json"=dword:00000000'; - this.wine.regedit().patch(regeditFileContent32); + new Regedit(this.wine).patch(regeditFileContent32); if (this.wine.architecture() == "amd64") { const regeditFileContent64 = @@ -95,7 +95,7 @@

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

"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Khronos\\Vulkan\\Drivers\\]\n" + '"C:\\\\Windows\\\\winevulkan.json"=dword:00000000'; - this.wine.regedit().patch(regeditFileContent64); + new Regedit(this.wine).patch(regeditFileContent64); } } @@ -123,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 6c7a8abbc2..922915bdf8 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_xact_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_xact_script.js.html @@ -33,7 +33,7 @@

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

const Optional = Java.type("java.util.Optional"); -include("engines.wine.plugins.regsvr32"); +const Regsvr32 = include("engines.wine.plugins.regsvr32"); /** * Verb to install xact @@ -88,7 +88,7 @@

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

progressBar.setText(tr("Registering {0}...", "Xact")); progressBar.setProgressPercentage((numberOfExtractedFiles * 100) / dllToRegsvr.length); - this.wine.regsvr32().install(dll); + new Regsvr32(this.wine).withDll(dll).go(); return numberOfExtractedFiles + 1; }, 0); @@ -225,7 +225,7 @@

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

if (architecture == "amd64") { const system64directory = this.wine.system64directory(); - + //---------------------------------------------------------Extract xactengine*.dll (x64)-------------------------------------------- new CabExtract() .wizard(wizard) @@ -326,7 +326,7 @@

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


diff --git a/docs/jsdoc/FAudio.html b/docs/jsdoc/FAudio.html index 3c581c7535..4e5c77323e 100644 --- a/docs/jsdoc/FAudio.html +++ b/docs/jsdoc/FAudio.html @@ -94,7 +94,7 @@

new FAudioSource:
@@ -251,7 +251,7 @@
Parameters:
Source:
@@ -319,7 +319,7 @@
Returns:

diff --git a/docs/jsdoc/GDIPlus.html b/docs/jsdoc/GDIPlus.html index 8cb7668022..db5c9a8e97 100644 --- a/docs/jsdoc/GDIPlus.html +++ b/docs/jsdoc/GDIPlus.html @@ -155,7 +155,7 @@

new GDIPlus
diff --git a/docs/jsdoc/GDIPlusWinXP.html b/docs/jsdoc/GDIPlusWinXP.html index 351953df5d..2bb336efc8 100644 --- a/docs/jsdoc/GDIPlusWinXP.html +++ b/docs/jsdoc/GDIPlusWinXP.html @@ -28,7 +28,7 @@

Class: GDIPlusWinXP

-

GDIPlusWinXP() → {Wine}

+

GDIPlusWinXP() → {Wine}

Verb to install gdiplus (windows xp)
@@ -45,7 +45,7 @@

Constructor

-

new GDIPlusWinXP() → {Wine}

+

new GDIPlusWinXP() → {Wine}

@@ -133,7 +133,7 @@
Returns:
-Wine +Wine
@@ -177,7 +177,7 @@
Returns:

diff --git a/docs/jsdoc/Gallium9.html b/docs/jsdoc/Gallium9.html index 02c8236451..b396511e29 100644 --- a/docs/jsdoc/Gallium9.html +++ b/docs/jsdoc/Gallium9.html @@ -94,7 +94,7 @@

new Gallium9<
Source:
@@ -251,7 +251,7 @@

Parameters:
Source:
@@ -319,7 +319,7 @@
Returns:

diff --git a/docs/jsdoc/Luna.html b/docs/jsdoc/Luna.html index 3e9225d6fb..217133ee6c 100644 --- a/docs/jsdoc/Luna.html +++ b/docs/jsdoc/Luna.html @@ -155,7 +155,7 @@

new Luna
diff --git a/docs/jsdoc/Mfc42.html b/docs/jsdoc/Mfc42.html index 5e7fc0bf6e..1cfee25560 100644 --- a/docs/jsdoc/Mfc42.html +++ b/docs/jsdoc/Mfc42.html @@ -155,7 +155,7 @@

new Mfc42
diff --git a/docs/jsdoc/Msls31.html b/docs/jsdoc/Msls31.html index ae75335b5c..da54a8ddcf 100644 --- a/docs/jsdoc/Msls31.html +++ b/docs/jsdoc/Msls31.html @@ -155,7 +155,7 @@

new Msls31
diff --git a/docs/jsdoc/Mspatcha.html b/docs/jsdoc/Mspatcha.html index 6cc619af70..2cbe832f1a 100644 --- a/docs/jsdoc/Mspatcha.html +++ b/docs/jsdoc/Mspatcha.html @@ -155,7 +155,7 @@

new Mspatcha<
diff --git a/docs/jsdoc/Msxml3.html b/docs/jsdoc/Msxml3.html index e33d3e51b0..9fd71f543b 100644 --- a/docs/jsdoc/Msxml3.html +++ b/docs/jsdoc/Msxml3.html @@ -155,7 +155,7 @@

new Msxml3
diff --git a/docs/jsdoc/Msxml6.html b/docs/jsdoc/Msxml6.html index 8d4bbcef51..9f2e7dcb53 100644 --- a/docs/jsdoc/Msxml6.html +++ b/docs/jsdoc/Msxml6.html @@ -155,7 +155,7 @@

new Msxml6
diff --git a/docs/jsdoc/PhysX.html b/docs/jsdoc/PhysX.html index 82aaa92c09..b2841e8fa1 100644 --- a/docs/jsdoc/PhysX.html +++ b/docs/jsdoc/PhysX.html @@ -155,7 +155,7 @@

new PhysX
diff --git a/docs/jsdoc/Quartz.html b/docs/jsdoc/Quartz.html index 6d855b4085..9640fca878 100644 --- a/docs/jsdoc/Quartz.html +++ b/docs/jsdoc/Quartz.html @@ -155,7 +155,7 @@

new Quartz
diff --git a/docs/jsdoc/QuickTime76.html b/docs/jsdoc/QuickTime76.html index 0db2ded2c9..70f4552f85 100644 --- a/docs/jsdoc/QuickTime76.html +++ b/docs/jsdoc/QuickTime76.html @@ -155,7 +155,7 @@

new QuickT
diff --git a/docs/jsdoc/RemoveMono.html b/docs/jsdoc/RemoveMono.html index 03e5331929..a7039319d0 100644 --- a/docs/jsdoc/RemoveMono.html +++ b/docs/jsdoc/RemoveMono.html @@ -155,7 +155,7 @@

new RemoveM
diff --git a/docs/jsdoc/Sandbox.html b/docs/jsdoc/Sandbox.html index 8ccf779541..66f002e03d 100644 --- a/docs/jsdoc/Sandbox.html +++ b/docs/jsdoc/Sandbox.html @@ -155,7 +155,7 @@

new Sandbox
diff --git a/docs/jsdoc/Secur32.html b/docs/jsdoc/Secur32.html index b28b211174..90dc8d5d73 100644 --- a/docs/jsdoc/Secur32.html +++ b/docs/jsdoc/Secur32.html @@ -155,7 +155,7 @@

new Secur32
diff --git a/docs/jsdoc/Tahoma.html b/docs/jsdoc/Tahoma.html index b4a4ea9d65..3c125a79e8 100644 --- a/docs/jsdoc/Tahoma.html +++ b/docs/jsdoc/Tahoma.html @@ -155,7 +155,7 @@

new Tahoma
diff --git a/docs/jsdoc/Uplay.html b/docs/jsdoc/Uplay.html index e5ff52c387..6343534f37 100644 --- a/docs/jsdoc/Uplay.html +++ b/docs/jsdoc/Uplay.html @@ -155,7 +155,7 @@

new Uplay
diff --git a/docs/jsdoc/Utils_Functions_Apps_PlainInstaller_script.js.html b/docs/jsdoc/Utils_Functions_Apps_PlainInstaller_script.js.html index 80969abc4c..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 3717e945c5..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 7a06c5f706..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 794808b76d..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 2c733c0cec..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_GithubReleases_script.js.html b/docs/jsdoc/Utils_Functions_Net_GithubReleases_script.js.html new file mode 100644 index 0000000000..44cd71b4f2 --- /dev/null +++ b/docs/jsdoc/Utils_Functions_Net_GithubReleases_script.js.html @@ -0,0 +1,80 @@ + + + + + JSDoc: Source: Utils/Functions/Net/GithubReleases/script.js + + + + + + + + + + +
+ +

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

+ + + + + + +
+
+
const Downloader = include("utils.functions.net.download");
+const {createTempDir, remove, cat} = include("utils.functions.filesystem.files");
+
+/**
+ * Get an array of tag corresponding to the releases in a git repository
+ *
+ * @param {string} repositoryOwner owner of the repository
+ * @param {string} repositoryName name of the repository
+ * @param {wizard} wizard the wizard
+ * @returns {string[]} list of version tag in the repository
+ */
+module.getGithubReleases = function getGithubReleases(repositoryOwner, repositoryName, wizard) {
+    const tmpDir = createTempDir();
+
+    const releasesFile = new Downloader()
+        .wizard(wizard)
+        .url(
+            `https://api.github.com/repos/${repositoryOwner}/${repositoryName}/releases`
+        )
+        .message(tr("Fetching versions list..."))
+        .to(tmpDir + "/releases.json")
+        .get();
+
+    const versions = JSON.parse(cat(releasesFile)).map(version => version.tag_name);
+
+    remove(tmpDir);
+
+    return versions;
+};
+
+
+
+ + + + +
+ + + +
+ + + + + + + diff --git a/docs/jsdoc/Utils_Functions_Net_Resource_script.js.html b/docs/jsdoc/Utils_Functions_Net_Resource_script.js.html index 963e4c25d0..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 81e8797550..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 index 168662d4b7..981911febc 100644 --- a/docs/jsdoc/VK9.html +++ b/docs/jsdoc/VK9.html @@ -319,7 +319,7 @@

Returns:

diff --git a/docs/jsdoc/Vcrun2003.html b/docs/jsdoc/Vcrun2003.html index d30903308b..c591228a22 100644 --- a/docs/jsdoc/Vcrun2003.html +++ b/docs/jsdoc/Vcrun2003.html @@ -155,7 +155,7 @@

new Vcrun200
diff --git a/docs/jsdoc/Vcrun2005.html b/docs/jsdoc/Vcrun2005.html index 0e7e38907e..ab8d06822f 100644 --- a/docs/jsdoc/Vcrun2005.html +++ b/docs/jsdoc/Vcrun2005.html @@ -155,7 +155,7 @@

new Vcrun200
diff --git a/docs/jsdoc/Vcrun2008.html b/docs/jsdoc/Vcrun2008.html index b9d6b2418d..fc087554c2 100644 --- a/docs/jsdoc/Vcrun2008.html +++ b/docs/jsdoc/Vcrun2008.html @@ -155,7 +155,7 @@

new Vcrun200
diff --git a/docs/jsdoc/Vcrun2010.html b/docs/jsdoc/Vcrun2010.html index 6aa6b0e72f..4ee0dec9b1 100644 --- a/docs/jsdoc/Vcrun2010.html +++ b/docs/jsdoc/Vcrun2010.html @@ -155,7 +155,7 @@

new Vcrun201
diff --git a/docs/jsdoc/Vcrun2012.html b/docs/jsdoc/Vcrun2012.html index 2e993f3c61..2388861b47 100644 --- a/docs/jsdoc/Vcrun2012.html +++ b/docs/jsdoc/Vcrun2012.html @@ -155,7 +155,7 @@

new Vcrun201
diff --git a/docs/jsdoc/Vcrun2013.html b/docs/jsdoc/Vcrun2013.html index fa42879393..d2cdebcbeb 100644 --- a/docs/jsdoc/Vcrun2013.html +++ b/docs/jsdoc/Vcrun2013.html @@ -155,7 +155,7 @@

new Vcrun201
diff --git a/docs/jsdoc/Vcrun2015.html b/docs/jsdoc/Vcrun2015.html index 644b23baea..d5e7b04e71 100644 --- a/docs/jsdoc/Vcrun2015.html +++ b/docs/jsdoc/Vcrun2015.html @@ -155,7 +155,7 @@

new Vcrun201
diff --git a/docs/jsdoc/Vcrun2017.html b/docs/jsdoc/Vcrun2017.html index 379e94651c..71d9bad79e 100644 --- a/docs/jsdoc/Vcrun2017.html +++ b/docs/jsdoc/Vcrun2017.html @@ -155,7 +155,7 @@

new Vcrun201
diff --git a/docs/jsdoc/Vcrun6SP6.html b/docs/jsdoc/Vcrun6SP6.html index 439c637862..ab02c08011 100644 --- a/docs/jsdoc/Vcrun6SP6.html +++ b/docs/jsdoc/Vcrun6SP6.html @@ -155,7 +155,7 @@

new Vcrun6SP
diff --git a/docs/jsdoc/VulkanSDK.html b/docs/jsdoc/VulkanSDK.html index 7303d3e16b..23c2d62c01 100644 --- a/docs/jsdoc/VulkanSDK.html +++ b/docs/jsdoc/VulkanSDK.html @@ -156,7 +156,7 @@

new VulkanSD
diff --git a/docs/jsdoc/WindowsXPSP3.html b/docs/jsdoc/WindowsXPSP3.html index 64d315b563..24327f0e24 100644 --- a/docs/jsdoc/WindowsXPSP3.html +++ b/docs/jsdoc/WindowsXPSP3.html @@ -318,7 +318,7 @@

Returns:

diff --git a/docs/jsdoc/Xact.html b/docs/jsdoc/Xact.html index ebff8690a4..77e658579d 100644 --- a/docs/jsdoc/Xact.html +++ b/docs/jsdoc/Xact.html @@ -584,7 +584,7 @@
Returns:

diff --git a/docs/jsdoc/global.html b/docs/jsdoc/global.html index b563318942..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 3b8c483351..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 d0e9a24936..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 5e6f769eb9..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 8211e1233b..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 04103b9f5f..13e724e852 100644 --- a/docs/jsdoc/module.default.html +++ b/docs/jsdoc/module.default.html @@ -30,7 +30,7 @@

Class: default

default()

-
Setting to set the Fonts Smoothing
+
Resource class

@@ -93,7 +93,7 @@

new defaultSource:
@@ -457,165 +457,6 @@
Returns:
-

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}

@@ -775,7 +616,7 @@
Returns:
-

application(application) → {AppResource}

+

algorithm(algorithm) → {Resource}

@@ -783,7 +624,7 @@

applicatio
- Sets the application containing the resources + Sets the checksum algorithm
@@ -819,7 +660,7 @@

Parameters:
- application + algorithm @@ -835,7 +676,7 @@
Parameters:
- The application with the resource + The algorithm to verify the checksum (e.g. "SHA") @@ -876,112 +717,271 @@
Parameters:
Source:
- - - - - - - - - - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The Resource object +
+ + + +
+
+ Type +
+
+ +Resource + + +
+
+ + + + + + + + + + + + + +

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:
+
@@ -1905,7 +1905,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

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

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

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

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

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

create() → {Wine}

+

create() → {void}

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

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

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

createReturns:

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

create() → {void}

+

create() → {Wine}

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

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

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

createReturns:

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

download(setupWizard) → {String}

+

dosConfigFile() → {string}

@@ -2765,7 +2765,7 @@

download - Download the setup resources in the same directory, and returns the path of the .exe + Fetch the prefix dosbox configuration file @@ -2776,55 +2776,6 @@

downloadParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - @@ -2858,7 +2809,7 @@
Parameters:
Source:
@@ -2887,7 +2838,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + The dosbox configuration file path
@@ -2898,168 +2849,9 @@
Returns:
-String - - -
-

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

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - string - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - -
@@ -3075,7 +2867,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

download(setupWizard) → {String}

@@ -3083,7 +2875,7 @@

environmen
- set environment + Download the setup resources in the same directory, and returns the path of the .exe
@@ -3119,13 +2911,13 @@

Parameters:
- environment + setupWizard -string +SetupWizard @@ -3135,7 +2927,7 @@
Parameters:
- variables + The setup wizard @@ -3176,7 +2968,7 @@
Parameters:
Source:
@@ -3205,7 +2997,7 @@
Returns:
- QuickScript object + The .exe file entry that can be used to continue the installation
@@ -3216,7 +3008,7 @@
Returns:
-QuickScript +String
@@ -3234,7 +3026,7 @@
Returns:
-

executable(executable, args)

+

downloadFinished(wine) → {boolean}

@@ -3242,7 +3034,8 @@

executable<
- set executable + Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first
@@ -3278,28 +3071,15 @@

Parameters:
- executable + wine - - - - - - - executable without path (e.g. "Steam.exe") - - - + +Wine - - - args - - @@ -3307,7 +3087,7 @@
Parameters:
- use array (e.g. ["-applaunch", 409160]) + The wine engine object @@ -3348,7 +3128,7 @@
Parameters:
Source:
@@ -3373,6 +3153,28 @@
Parameters:
+
Returns:
+ + +
+ True if the download has finished, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + @@ -3384,13 +3186,16 @@
Parameters:
-

fontDirectory() → {string}

+

downloadStarted(wine) → {boolean}

+
+ Checks whether the software download has started +
@@ -3400,6 +3205,56 @@

fontDire +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + @@ -3432,7 +3287,7 @@

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

Returns:
- font directory + True if the download has started, false otherwise
@@ -3472,7 +3327,7 @@
Returns:
-string +boolean
@@ -3490,7 +3345,7 @@
Returns:
-

get() → {string}

+

environment(environment) → {WineShortcut}

@@ -3498,7 +3353,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Sets the shortcut environment variables @@ -3509,6 +3364,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + environment + + + + + +string + + + + + + + + + + The environment variables + + + + + + + @@ -3542,7 +3446,7 @@

getSource:
@@ -3571,7 +3475,7 @@
Returns:
- The path leading to the downloaded resource + The WineShortcut object
@@ -3582,7 +3486,7 @@
Returns:
-string +WineShortcut
@@ -3600,7 +3504,7 @@
Returns:
-

get() → {String}

+

environment(environment) → {QuickScript}

@@ -3608,7 +3512,7 @@

get - Gets the content of the downloaded file + set environment @@ -3619,6 +3523,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + environment + + + + + +string + + + + + + + + + + variables + + + + + + + @@ -3652,7 +3605,7 @@

getSource:
@@ -3681,7 +3634,7 @@
Returns:
- The content of downloaded file + QuickScript object
@@ -3692,7 +3645,7 @@
Returns:
-String +QuickScript
@@ -3710,7 +3663,7 @@
Returns:
-

get(resourceName) → {Resource}

+

executable(executable, args)

@@ -3718,7 +3671,7 @@

get - Returns the searched resource + set executable @@ -3754,15 +3707,28 @@
Parameters:
- resourceName + executable - -string + + + + + + executable without path (e.g. "Steam.exe") + + + + + + + args + + @@ -3770,7 +3736,7 @@
Parameters:
- The name of the resource + use array (e.g. ["-applaunch", 409160]) @@ -3811,7 +3777,7 @@
Parameters:
Source:
@@ -3836,28 +3802,6 @@
Parameters:
-
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - @@ -3869,17 +3813,13 @@
Returns:
-

getContainer() → {string}

+

fontDirectory() → {string}

-
- Returns the name of the container belonging to a shortcut -
- @@ -3921,7 +3861,7 @@

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

Returns:
- The container name + font directory
@@ -3979,7 +3919,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

get(resourceName) → {Resource}

@@ -3987,7 +3927,7 @@

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

Parameters:
- setupFileName + resourceName @@ -4039,7 +3979,7 @@
Parameters:
- The setup file name + The name of the resource @@ -4080,7 +4020,7 @@
Parameters:
Source:
@@ -4109,7 +4049,7 @@
Returns:
- This + The found resource
@@ -4120,7 +4060,7 @@
Returns:
-GogScript +Resource
@@ -4138,7 +4078,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

get() → {String}

@@ -4146,7 +4086,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
@@ -4157,55 +4097,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -4239,7 +4130,7 @@
Parameters:
Source:
@@ -4268,7 +4159,7 @@
Returns:
- This + The content of downloaded file
@@ -4279,7 +4170,7 @@
Returns:
-GogScript +String
@@ -4297,7 +4188,7 @@
Returns:
-

headers(headers) → {Downloader}

+

get() → {string}

@@ -4305,7 +4196,7 @@

headers - Sets the http headers + Fetches the Resource and returns the path leading to the downloaded resource @@ -4316,53 +4207,114 @@

headersParameters:

+ + + + +
+ - - - - - - + - + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + + + + + + + + + + + + + + + + + +
Returns:
+
+ The path leading to the downloaded resource +
+ + +
+
+ Type +
+
+string -
- - - + + + - - - - - + - + - - + +

getContainer() → {string}

+ - -
NameTypeDescription
headers - - -Object - - The http headers
+ + + +
+ Returns the name of the container belonging to a shortcut +
+ + + + + + + @@ -4398,7 +4350,7 @@
Parameters:
Source:
@@ -4427,7 +4379,7 @@
Returns:
- The Downloader object + The container name
@@ -4438,7 +4390,7 @@
Returns:
-Downloader +string
@@ -4456,7 +4408,7 @@
Returns:
-

json() → {any}

+

getSettings() → {object}

@@ -4464,7 +4416,7 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Fetch all prefix dosbox sttings @@ -4508,7 +4460,7 @@

jsonSource:
@@ -4537,7 +4489,7 @@
Returns:
- The json value + All the settings
@@ -4548,7 +4500,7 @@
Returns:
-any +object
@@ -4566,7 +4518,7 @@
Returns:
-

kill() → {Wine}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -4574,7 +4526,7 @@

kill - kill wine server + Sets one setup file name so that the script can fetch it from gog.com @@ -4585,13 +4537,62 @@

kill + + + + Name + + Type + -
+ - + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + + + + + +
+ + @@ -4618,7 +4619,7 @@

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

kill + This + +
@@ -4654,7 +4659,7 @@
Returns:
-Wine +GogScript
@@ -4672,7 +4677,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -4680,8 +4685,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 setup file(s) name so that the script can fetch it from gog.com
@@ -4717,13 +4721,13 @@

Parameters:
- setupWizard + setupFileNames -SetupWizard +Array.<string> @@ -4733,7 +4737,7 @@
Parameters:
- The setupWizard to use + The setup file name(s) @@ -4774,7 +4778,7 @@
Parameters:
Source:
@@ -4832,7 +4836,7 @@
Returns:
-

message(message) → {Downloader}

+

headers(headers) → {Downloader}

@@ -4840,7 +4844,7 @@

message - Sets the download message text + Sets the http headers @@ -4876,13 +4880,13 @@
Parameters:
- message + headers -string +Object @@ -4892,7 +4896,7 @@
Parameters:
- The download message + The http headers @@ -4933,7 +4937,7 @@
Parameters:
Source:
@@ -4991,7 +4995,7 @@
Returns:
-

miniature(miniature) → {WineShortcut}

+

isHdpi() → {boolean}

@@ -4999,7 +5003,7 @@

miniature - Sets the miniature for the shortcut + Fetches whether hdpi is enabled or not @@ -5010,58 +5014,6 @@

miniatureParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - @@ -5095,7 +5047,7 @@
Parameters:
Source:
@@ -5124,7 +5076,7 @@
Returns:
- The WineShortcut object + True if hdpi is enabled, false otherwise
@@ -5135,7 +5087,7 @@
Returns:
-WineShortcut +boolean
@@ -5153,7 +5105,7 @@
Returns:
-

miniature(miniatureopt)

+

json() → {any}

@@ -5161,7 +5113,7 @@

miniature - get/set miniature (for the installation and the shortcut) + Gets the content of the downloaded file and returns it as a JSON value @@ -5172,67 +5124,6 @@

miniatureParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - @@ -5266,7 +5157,7 @@
Parameters:
Source:
@@ -5291,83 +5182,56 @@
Parameters:
+
Returns:
+ +
+ The json value +
- +
+
+ Type +
+
- +any - - -

name(name) → {Resource}

- +
+
-
- Sets the resource name -
- - - - - - - -
Parameters:
- - - - - - - + - + - + +

kill() → {Wine}

+ - + - - - - - - - - - +
+ kill wine server +
- - - - - - - -
NameTypeDescription
name - - -string - - The name of the resource
@@ -5403,7 +5267,7 @@
Parameters:
Source:
@@ -5431,10 +5295,6 @@
Parameters:
Returns:
-
- The Resource object -
-
@@ -5443,7 +5303,7 @@
Returns:
-Resource +Wine
@@ -5461,7 +5321,7 @@
Returns:
-

name(name) → {WineShortcut}

+

loginToGog(setupWizard) → {GogScript}

@@ -5469,7 +5329,8 @@

name - Sets the shortcut name + 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 @@ -5505,13 +5366,13 @@
Parameters:
- name + setupWizard -string +SetupWizard @@ -5521,7 +5382,7 @@
Parameters:
- The shortcut name + The setupWizard to use @@ -5562,7 +5423,7 @@
Parameters:
Source:
@@ -5591,7 +5452,7 @@
Returns:
- The WineShortcut object + This
@@ -5602,7 +5463,7 @@
Returns:
-WineShortcut +GogScript
@@ -5620,7 +5481,7 @@
Returns:
-

of(shortcut) → {void}

+

message(message) → {Downloader}

@@ -5628,7 +5489,7 @@

of - Sets shortcut + Sets the download message text @@ -5664,7 +5525,7 @@
Parameters:
- shortcut + message @@ -5680,7 +5541,7 @@
Parameters:
- shortcut + The download message @@ -5721,7 +5582,7 @@
Parameters:
Source:
@@ -5749,6 +5610,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -5757,7 +5622,7 @@
Returns:
-void +Downloader
@@ -5775,7 +5640,7 @@
Returns:
-

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

+

miniature(miniatureopt)

@@ -5783,7 +5648,7 @@

- Specifies if the download shall be executed only if a newer version is available + get/set miniature (for the installation and the shortcut)
@@ -5807,6 +5672,8 @@

Parameters:
Type + Attributes + @@ -5819,23 +5686,33 @@
Parameters:
- onlyIfUpdateAvailable + miniature -boolean +URI + + + <optional>
+ + + + + + + - true the download shall be executed only if a newer version is available + path to the miniature file @@ -5876,7 +5753,7 @@
Parameters:
Source:
@@ -5901,28 +5778,6 @@
Parameters:
-
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - @@ -5934,7 +5789,7 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

miniature(miniature) → {WineShortcut}

@@ -5942,7 +5797,7 @@

prefix - Sets the shortcut prefix + Sets the miniature for the shortcut @@ -5978,13 +5833,16 @@
Parameters:
- prefix + miniature -string +Array.<string> +| + +URI @@ -5994,7 +5852,7 @@
Parameters:
- The shortcut prefix + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -6035,7 +5893,7 @@
Parameters:
Source:
@@ -6093,13 +5951,17 @@
Returns:
-

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

+

name(name) → {Resource}

+
+ Sets the resource name +
+ @@ -6121,8 +5983,6 @@
Parameters:
Type - Attributes - @@ -6135,106 +5995,7 @@
Parameters:
- prefix - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - distribution - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - architecture - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - version + name @@ -6247,20 +6008,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The name of the resource @@ -6301,7 +6052,7 @@
Parameters:
Source:
@@ -6329,6 +6080,10 @@
Parameters:
Returns:
+
+ The Resource object +
+
@@ -6337,10 +6092,7 @@
Returns:
-string -| - -Wine +Resource
@@ -6358,7 +6110,7 @@
Returns:
-

prefixDirectory() → {string}

+

name(name) → {WineShortcut}

@@ -6366,7 +6118,7 @@

prefix
- returns prefix directory + Sets the shortcut name
@@ -6377,6 +6129,55 @@

prefix +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
name + + +string + + + + The shortcut name
+ + @@ -6410,7 +6211,7 @@

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

prefix

Returns:
+
+ The WineShortcut object +
+
@@ -6446,7 +6251,7 @@
Returns:
-string +WineShortcut
@@ -6464,19 +6269,72 @@
Returns:
-

programFiles() → {string}

+

of(shortcut) → {void}

+
+ Sets shortcut +
+ + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
shortcut + + +string + + + + shortcut
@@ -6512,7 +6370,7 @@

programFi
Source:
@@ -6540,10 +6398,6 @@

programFi

Returns:
-
- name of "Program Files" -
-
@@ -6552,7 +6406,7 @@
Returns:
-string +void
@@ -6570,7 +6424,7 @@
Returns:
-

run(userArguments) → {void}

+

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

@@ -6578,7 +6432,7 @@

run - Runs a shortcut with the given user arguments + Specifies if the download shall be executed only if a newer version is available @@ -6614,13 +6468,13 @@
Parameters:
- userArguments + onlyIfUpdateAvailable -array +boolean @@ -6630,7 +6484,7 @@
Parameters:
- The user arguments + true the download shall be executed only if a newer version is available @@ -6671,7 +6525,7 @@
Parameters:
Source:
@@ -6699,6 +6553,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -6707,7 +6565,7 @@
Returns:
-void +Downloader
@@ -6725,7 +6583,7 @@
Returns:
-

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

+

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

@@ -6757,8 +6615,6 @@
Parameters:
- Default - Description @@ -6769,7 +6625,7 @@
Parameters:
- executable + prefix @@ -6784,6 +6640,8 @@
Parameters:
+ <optional>
+ @@ -6792,10 +6650,6 @@
Parameters:
- - - - @@ -6804,13 +6658,13 @@
Parameters:
- args + distribution -array +string @@ -6829,12 +6683,6 @@
Parameters:
- - - [] - - - @@ -6843,7 +6691,7 @@
Parameters:
- workingDirectory + architecture @@ -6868,12 +6716,6 @@
Parameters:
- - - working container - - - @@ -6882,13 +6724,13 @@
Parameters:
- captureOutput + version -boolean +string @@ -6907,92 +6749,744 @@
Parameters:
- - - false - - - + + - - - wait - - - - -boolean - - - - - - <optional>
- - +
- - - + - - - - false - - + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +string +| + +Wine + + +
+
+ + + + + + + + - - + + + +

prefix(prefix) → {WineShortcut}

+ + + + + + +
+ Sets the shortcut prefix +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + - + - - - - - + + + + + +
NameTypeDescription
userDataprefix -map +string - - <optional>
- - - - - -
- - empty - - The shortcut prefix
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The WineShortcut object +
+ + + +
+
+ Type +
+
+ +WineShortcut + + +
+
+ + + + + + + + + + + + + +

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:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -7091,6 +7585,161 @@
Returns:
+

run(userArguments) → {void}

+ + + + + + +
+ Runs a shortcut with the given user arguments +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeAttributesDefaultDescription
executable + + +string + + + + + + + + + + + +
args + + +array + + + + + + <optional>
+ + + + + +
+ + [] + +
workingDirectory + + +string + + + + + + <optional>
+ + + + + +
+ + working container + +
captureOutput + + +boolean + + + + + + <optional>
+ + + + + +
+ + false + +
wait + + +boolean + + + + + + <optional>
+ + + + + +
+ + false + +
userData + + +map + + + + + + <optional>
+ + + + + +
+ + empty + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
userArguments + + +array + + + + The user arguments
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +void + + +
+
+ + + + + + + + + + + + +

runInsidePrefix(executable, argsopt, waitopt)

@@ -9014,7 +9663,7 @@
Returns:
-

wait() → {Wine}

+

wait() → {Wine}

@@ -9102,7 +9751,7 @@
Returns:
-Wine +Wine
@@ -9420,7 +10069,7 @@
Parameters:
-

withScript(command) → {PlainInstaller}

+

withApplicationWindowsVersion(application, os) → {WindowsVersion}

@@ -9428,7 +10077,7 @@

withScript<
- Sets the installation script consisting of a lambda function + Specifies the windows version for a given application
@@ -9464,13 +10113,13 @@

Parameters:
- command + application -function +string @@ -9480,7 +10129,30 @@
Parameters:
- The installation command + The application executable + + + + + + + os + + + + + +string + + + + + + + + + + The windows version @@ -9521,7 +10193,7 @@
Parameters:
Source:
@@ -9550,7 +10222,7 @@
Returns:
- The PlainInstaller object + This
@@ -9561,7 +10233,7 @@
Returns:
-PlainInstaller +WindowsVersion
@@ -9579,7 +10251,7 @@
Returns:
-

wizard(wizard) → {Resource}

+

withCpuCycles(cpuCycles) → {Dosbox}

@@ -9587,7 +10259,8 @@

wizard - Sets the setup wizard + Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D @@ -9623,13 +10296,13 @@
Parameters:
- wizard + cpuCycles -SetupWizard +int @@ -9639,7 +10312,7 @@
Parameters:
- The setup wizard + (example: max 95% limit 33000) @@ -9680,7 +10353,7 @@
Parameters:
Source:
@@ -9709,7 +10382,7 @@
Returns:
- The Resource object + This
@@ -9720,7 +10393,7 @@
Returns:
-Resource +Dosbox
@@ -9738,7 +10411,7 @@
Returns:
-

wizard(wizard) → {Downloader}

+

withDimensions(width, height) → {VirtualDesktop}

@@ -9746,7 +10419,7 @@

wizard - Sets the setup wizard + Specifies the dimensions of the virtual desktop @@ -9782,13 +10455,13 @@
Parameters:
- wizard + width -SetupWizard +number @@ -9798,7 +10471,30 @@
Parameters:
- The setup wizard + width of virtual desktop (in px) + + + + + + + height + + + + + +number + + + + + + + + + + height of virtual desktop (in px) @@ -9839,7 +10535,7 @@
Parameters:
Source:
@@ -9868,7 +10564,7 @@
Returns:
- The Downloader object + This
@@ -9879,7 +10575,7 @@
Returns:
-Downloader +VirtualDesktop
@@ -9897,13 +10593,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

withDriver(driver) → {SoundDriver}

+
+ Specifies the used sound driver +
+ @@ -9925,8 +10625,6 @@
Parameters:
Type - Attributes - @@ -9939,33 +10637,23 @@
Parameters:
- wizard + driver -SetupWizard +string - - - <optional>
- - - - - - - - + alsa or pulse @@ -10006,7 +10694,7 @@
Parameters:
Source:
@@ -10034,6 +10722,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -10042,10 +10734,7 @@
Returns:
-SetupWizard -| - -Wine +SoundDriver
@@ -10058,55 +10747,77 @@
Returns:
+ + +

withExtension(extension) → {NativeApplication}

+ -

- +
+ Specifies the file extension +
-
-
+ + + +
Parameters:
-

default()

+ + + + -
Setting to enable/disable GLSL
+ - - -
-
- +
+ - -

Constructor

- + - -

new default()

- + + + + + + + + + + + + + - + + +
NameTypeDescription
extension + + +string + + The file extension (pdf, txt, rtf)
@@ -10142,7 +10853,7 @@

new defaultSource:
@@ -10167,30 +10878,32 @@

new defaultReturns:

+ +
+ This +
+
+
+ Type +
+
+ +NativeApplication - - - - - - - +
+
- - - - -

Methods

@@ -10198,7 +10911,7 @@

Methods

-

_createShortcut(prefixopt)

+

withHdpi(hdpi) → {HDPI}

@@ -10206,7 +10919,7 @@

_creat
- creates shortcut + Specifies whether hdpi should be enabled or not
@@ -10230,8 +10943,6 @@

Parameters:
Type - Attributes - @@ -10244,33 +10955,23 @@
Parameters:
- prefix + hdpi -string +boolean - - - <optional>
- - - - - - - - prefix name + true if hdpi shall be enabled @@ -10311,7 +11012,7 @@
Parameters:
Source:
@@ -10336,6 +11037,28 @@
Parameters:
+
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + @@ -10347,7 +11070,7 @@
Parameters:
-

_fetchFileNameFromUrl(url) → {string}

+

withManaged(managed) → {Managed}

@@ -10355,7 +11078,7 @@

- Fetches the file name from an URL + Specifies the global managed state
@@ -10391,13 +11114,13 @@

Parameters:
- url + managed -string +boolean @@ -10407,7 +11130,7 @@
Parameters:
- The URL + True if it shall be managed @@ -10448,7 +11171,7 @@
Parameters:
Source:
@@ -10477,7 +11200,7 @@
Returns:
- The file name + This
@@ -10488,7 +11211,7 @@
Returns:
-string +Managed
@@ -10506,7 +11229,7 @@
Returns:
-

algorithm(algorithm) → {Resource}

+

withManagedApplication(application, managed) → {Managed}

@@ -10514,7 +11237,7 @@

algorithm - Sets the checksum algorithm + Specifies the managed state for a given application @@ -10550,7 +11273,7 @@
Parameters:
- algorithm + application @@ -10566,7 +11289,30 @@
Parameters:
- The algorithm to verify the checksum (e.g. "SHA") + The application + + + + + + + managed + + + + + +boolean + + + + + + + + + + True if the application shall be managed @@ -10607,7 +11353,7 @@
Parameters:
Source:
@@ -10636,7 +11382,7 @@
Returns:
- The Resource object + This
@@ -10647,7 +11393,7 @@
Returns:
-Resource +Managed
@@ -10665,7 +11411,7 @@
Returns:
-

algorithm(algorithm) → {Downloader}

+

withMemSize(memSize) → {Dosbox}

@@ -10673,7 +11419,8 @@

algorithm - Sets the algorithm which shall be used to verify the checksum + Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D @@ -10709,13 +11456,13 @@
Parameters:
- algorithm + memSize -string +int @@ -10725,7 +11472,7 @@
Parameters:
- The checksum algorithm (e.g. "SHA") + The memory size @@ -10766,7 +11513,7 @@
Parameters:
Source:
@@ -10795,7 +11542,7 @@
Returns:
- The Downloader object + This
@@ -10806,7 +11553,7 @@
Returns:
-Downloader +Dosbox
@@ -10824,7 +11571,7 @@
Returns:
-

application(application) → {AppResource}

+

withMode(mode) → {FontSmoothing}

@@ -10832,7 +11579,7 @@

applicatio
- Sets the application containing the resources + Specifies the used font smoothing mode
@@ -10868,7 +11615,7 @@

Parameters:
- application + mode @@ -10884,7 +11631,7 @@
Parameters:
- The application with the resource + "RGB", "BGR" or "Gray Scale" @@ -10925,7 +11672,7 @@
Parameters:
Source:
@@ -10954,113 +11701,7 @@
Returns:
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") + This
@@ -11071,7 +11712,7 @@
Returns:
-string +FontSmoothing
@@ -11089,7 +11730,7 @@
Returns:
-

arguments(args) → {WineShortcut}

+

withMode(mode) → {GLSL}

@@ -11097,7 +11738,7 @@

arguments - Sets the shortcut arguments + Specifies the mode @@ -11133,13 +11774,13 @@
Parameters:
- args + mode -array +string @@ -11149,7 +11790,7 @@
Parameters:
- The shortcut arguments + enabled or disabled @@ -11190,7 +11831,7 @@
Parameters:
Source:
@@ -11219,7 +11860,7 @@
Returns:
- The WineShortcut object + This
@@ -11230,7 +11871,7 @@
Returns:
-WineShortcut +GLSL
@@ -11248,13 +11889,17 @@
Returns:
-

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

+

withMode(mode) → {TakeFocus}

+
+ Specifies the mode +
+ @@ -11276,12 +11921,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -11292,7 +11933,7 @@
Parameters:
- architecture + mode @@ -11305,26 +11946,10 @@
Parameters:
- - - <optional>
- - - - - - - - - - current architecture - - - - + "Y" or "N" @@ -11365,7 +11990,7 @@
Parameters:
Source:
@@ -11393,6 +12018,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -11401,7 +12030,7 @@
Returns:
-Array.<string> +TakeFocus
@@ -11419,13 +12048,17 @@
Returns:
-

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

+

withMode(mode) → {DirectDrawRenderer}

+
+ Selects the used direct draw mode (either gdi or opengl) +
+ @@ -11447,12 +12080,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -11463,7 +12092,7 @@
Parameters:
- distribution name + mode @@ -11476,26 +12105,10 @@
Parameters:
- - - <optional>
- - - - - - - - - - current distribution - - - - + gdi or opengl @@ -11536,7 +12149,7 @@
Parameters:
Source:
@@ -11564,6 +12177,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -11572,7 +12189,7 @@
Returns:
-Array.<string> +DirectDrawRenderer
@@ -11590,7 +12207,7 @@
Returns:
-

binPath(subCategoryopt, versionopt) → {string}

+

withRenderAspect(renderAspect) → {Dosbox}

@@ -11598,8 +12215,8 @@

binPath - returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used + Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D @@ -11623,8 +12240,6 @@
Parameters:
Type - Attributes - @@ -11637,66 +12252,23 @@
Parameters:
- subCategory - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - Wine sub-category - - - - - - - version + renderAspect -string +boolean - - - <optional>
- - - - - - - - Wine version + The render aspect @@ -11737,7 +12309,7 @@
Parameters:
Source:
@@ -11766,7 +12338,7 @@
Returns:
- path to "wine" binary + This
@@ -11777,7 +12349,7 @@
Returns:
-string +Dosbox
@@ -11795,7 +12367,7 @@
Returns:
-

category(category) → {WineShortcut}

+

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

@@ -11803,7 +12375,8 @@

category - Sets the shortcut category + Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D @@ -11839,13 +12412,13 @@
Parameters:
- category + renderFrameSkip -string +int @@ -11855,7 +12428,7 @@
Parameters:
- The shortcut category + The render frameskip @@ -11896,7 +12469,7 @@
Parameters:
Source:
@@ -11925,7 +12498,7 @@
Returns:
- The WineShortcut object + This
@@ -11936,7 +12509,7 @@
Returns:
-WineShortcut +Dosbox
@@ -11954,7 +12527,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

withScript(command) → {PlainInstaller}

@@ -11962,7 +12535,7 @@

checksum - Sets the checksum + Sets the installation script consisting of a lambda function @@ -11998,13 +12571,13 @@
Parameters:
- checksum + command -string +function @@ -12014,7 +12587,7 @@
Parameters:
- The checksum which shall be used to verify the download + The installation command @@ -12055,7 +12628,7 @@
Parameters:
Source:
@@ -12084,7 +12657,7 @@
Returns:
- The Downloader object + The PlainInstaller object
@@ -12095,7 +12668,7 @@
Returns:
-Downloader +PlainInstaller
@@ -12113,7 +12686,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

withSetting(key, value) → {Dosbox}

@@ -12121,7 +12694,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets a dosbox setting @@ -12157,7 +12730,7 @@
Parameters:
- checksum + key @@ -12173,122 +12746,35 @@
Parameters:
- The checksum + The key of the setting (example dosbox_memsize) - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - + + + value + + + + +any + + - - + - -

create() → {Wine}

- + The value to be set + - - - -
- runs "wineboot" -
- - - - - - - + + @@ -12324,7 +12810,7 @@

createSource:
@@ -12353,124 +12839,18 @@
Returns:
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut + This
- - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - -
Type
-void +Dosbox
@@ -12488,7 +12868,7 @@
Returns:
-

description(description) → {WineShortcut}

+

withVersion(major, minor) → {OpenGL}

@@ -12496,7 +12876,7 @@

descriptio
- Sets the shortcut description + Specifies the major and minor versions
@@ -12532,13 +12912,13 @@

Parameters:
- description + major -string +number @@ -12548,7 +12928,30 @@
Parameters:
- The shortcut description + The major version + + + + + + + minor + + + + + +number + + + + + + + + + + The minor version @@ -12589,7 +12992,7 @@
Parameters:
Source:
@@ -12618,7 +13021,7 @@
Returns:
- The WineShortcut object + This
@@ -12629,7 +13032,7 @@
Returns:
-WineShortcut +OpenGL
@@ -12647,7 +13050,7 @@
Returns:
-

directory(directory) → {Resource}

+

withWindowsVersion(version, servicePack) → {WindowsVersion}

@@ -12655,7 +13058,7 @@

directory - Sets the directory inside the resources directory where the Resource is stored + Specifies the default windows version @@ -12691,7 +13094,7 @@
Parameters:
- directory + version @@ -12707,7 +13110,30 @@
Parameters:
- The directory path + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31 + + + + + + + servicePack + + + + + +string + + + + + + + + + + e.g. sp3 @@ -12748,7 +13174,7 @@
Parameters:
Source:
@@ -12777,7 +13203,7 @@
Returns:
- The Resource object + This
@@ -12788,7 +13214,7 @@
Returns:
-Resource +WindowsVersion
@@ -12806,7 +13232,7 @@
Returns:
-

download(setupWizard) → {String}

+

wizard(wizard) → {Resource}

@@ -12814,7 +13240,7 @@

download - Download the setup resources in the same directory, and returns the path of the .exe + Sets the setup wizard @@ -12850,7 +13276,7 @@
Parameters:
- setupWizard + wizard @@ -12907,7 +13333,7 @@
Parameters:
Source:
@@ -12936,7 +13362,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + The Resource object
@@ -12947,7 +13373,7 @@
Returns:
-String +Resource
@@ -12965,17 +13391,13 @@
Returns:
-

environment(environment) → {WineShortcut}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the shortcut environment variables -
- @@ -12997,6 +13419,8 @@
Parameters:
Type + Attributes + @@ -13009,23 +13433,33 @@
Parameters:
- environment + wizard -string +SetupWizard + + + <optional>
+ + + + + + + - The environment variables + @@ -13066,7 +13500,7 @@
Parameters:
Source:
@@ -13094,10 +13528,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -13106,7 +13536,10 @@
Returns:
-WineShortcut +SetupWizard +| + +Wine
@@ -13124,7 +13557,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

wizard(wizard) → {Downloader}

@@ -13132,7 +13565,7 @@

environmen
- set environment + Sets the setup wizard
@@ -13168,13 +13601,13 @@

Parameters:
- environment + wizard -string +SetupWizard @@ -13184,7 +13617,7 @@
Parameters:
- variables + The setup wizard @@ -13225,7 +13658,7 @@
Parameters:
Source:
@@ -13254,7 +13687,7 @@
Returns:
- QuickScript object + The Downloader object
@@ -13265,7 +13698,7 @@
Returns:
-QuickScript +Downloader
@@ -13278,12 +13711,147 @@
Returns:
+ + + + + + + +

+ + + + + + + +
+ +
+ +

default()

+ +
Plugin to force the DirectDrawRenderer
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new default()

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

Methods

+ + -

executable(executable, args)

+

_createShortcut(prefixopt)

@@ -13291,7 +13859,7 @@

executable<
- set executable + creates shortcut
@@ -13315,6 +13883,8 @@

Parameters:
Type + Attributes + @@ -13327,36 +13897,33 @@
Parameters:
- executable + prefix - + +string - + - executable without path (e.g. "Steam.exe") - - - - - - - args + + + <optional>
+ - - - + + + - use array (e.g. ["-applaunch", 409160]) + prefix name @@ -13397,7 +13964,7 @@
Parameters:
Source:
@@ -13433,13 +14000,16 @@
Parameters:
-

fontDirectory() → {string}

+

_fetchFileNameFromUrl(url) → {string}

+
+ Fetches the file name from an URL +
@@ -13449,6 +14019,56 @@

fontDire +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
url + + +string + + + + The URL
+ + + @@ -13481,7 +14101,7 @@

fontDire
Source:
@@ -13510,7 +14130,7 @@

Returns:
- font directory + The file name
@@ -13539,7 +14159,7 @@
Returns:
-

get() → {string}

+

algorithm(algorithm) → {Downloader}

@@ -13547,7 +14167,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Sets the algorithm which shall be used to verify the checksum @@ -13558,6 +14178,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + algorithm + + + + + +string + + + + + + + + + + The checksum algorithm (e.g. "SHA") + + + + + + + @@ -13591,7 +14260,7 @@

getSource:
@@ -13620,7 +14289,7 @@
Returns:
- The path leading to the downloaded resource + The Downloader object
@@ -13631,7 +14300,7 @@
Returns:
-string +Downloader
@@ -13649,7 +14318,7 @@
Returns:
-

get() → {String}

+

algorithm(algorithm) → {Resource}

@@ -13657,7 +14326,7 @@

get - Gets the content of the downloaded file + Sets the checksum algorithm @@ -13668,6 +14337,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + algorithm + + + + + +string + + + + + + + + + + The algorithm to verify the checksum (e.g. "SHA") + + + + + + + @@ -13701,7 +14419,7 @@

getSource:
@@ -13730,7 +14448,7 @@
Returns:
- The content of downloaded file + The Resource object
@@ -13741,7 +14459,7 @@
Returns:
-String +Resource
@@ -13759,7 +14477,7 @@
Returns:
-

get(resourceName) → {Resource}

+

application(application) → {AppResource}

@@ -13767,7 +14485,7 @@

get - Returns the searched resource + Sets the application containing the resources @@ -13803,7 +14521,7 @@
Parameters:
- resourceName + application @@ -13819,7 +14537,7 @@
Parameters:
- The name of the resource + The application with the resource @@ -13860,7 +14578,7 @@
Parameters:
Source:
@@ -13889,7 +14607,7 @@
Returns:
- The found resource + The AppResource object
@@ -13900,7 +14618,7 @@
Returns:
-Resource +AppResource
@@ -13918,17 +14636,13 @@
Returns:
-

getContainer() → {string}

+

architecture() → {string}

-
- Returns the name of the container belonging to a shortcut -
- @@ -13970,7 +14684,7 @@

getContai
Source:
@@ -13999,7 +14713,7 @@

Returns:
- The container name + architecture ("x86" or "amd64")
@@ -14028,7 +14742,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

arguments(args) → {WineShortcut}

@@ -14036,7 +14750,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the shortcut arguments
@@ -14072,13 +14786,13 @@

Parameters:
- setupFileName + args -string +array @@ -14088,7 +14802,7 @@
Parameters:
- The setup file name + The shortcut arguments @@ -14129,7 +14843,7 @@
Parameters:
Source:
@@ -14158,7 +14872,7 @@
Returns:
- This + The WineShortcut object
@@ -14169,7 +14883,7 @@
Returns:
-GogScript +WineShortcut
@@ -14187,17 +14901,13 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

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

-
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- @@ -14219,8 +14929,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -14231,23 +14945,39 @@
Parameters:
- setupFileNames + architecture -Array.<string> +string + + + <optional>
+ + + + + + + + + + current architecture + + + - The setup file name(s) + @@ -14288,7 +15018,7 @@
Parameters:
Source:
@@ -14316,10 +15046,6 @@
Parameters:
Returns:
-
- This -
-
@@ -14328,7 +15054,7 @@
Returns:
-GogScript +Array.<string>
@@ -14346,17 +15072,13 @@
Returns:
-

headers(headers) → {Downloader}

+

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

-
- Sets the http headers -
- @@ -14378,8 +15100,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -14390,23 +15116,39 @@
Parameters:
- headers + distribution name -Object +string + + + <optional>
+ + + + + - The http headers + + + + current distribution + + + + + @@ -14447,7 +15189,7 @@
Parameters:
Source:
@@ -14475,10 +15217,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -14487,7 +15225,7 @@
Returns:
-Downloader +Array.<string>
@@ -14505,7 +15243,7 @@
Returns:
-

json() → {any}

+

binPath(subCategoryopt, versionopt) → {string}

@@ -14513,7 +15251,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + returns the path to the engine binary directory +if no parameters are given, the Wine version of the current prefix is used @@ -14524,6 +15263,100 @@

json + + + + Name + + + Type + + + Attributes + + + + + Description + + + + + + + + + subCategory + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + Wine sub-category + + + + + + + version + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + Wine version + + + + + + + @@ -14557,7 +15390,7 @@

jsonSource:
@@ -14586,7 +15419,7 @@
Returns:
- The json value + path to "wine" binary
@@ -14597,7 +15430,7 @@
Returns:
-any +string
@@ -14615,7 +15448,7 @@
Returns:
-

kill() → {Wine}

+

category(category) → {WineShortcut}

@@ -14623,7 +15456,7 @@

kill - kill wine server + Sets the shortcut category @@ -14634,6 +15467,55 @@

kill + + + + Name + + + Type + + + + + + Description + + + + + + + + + category + + + + + +string + + + + + + + + + + The shortcut category + + + + + + + @@ -14667,7 +15549,7 @@

killSource:
@@ -14695,6 +15577,10 @@

kill + The WineShortcut object + +
@@ -14703,7 +15589,7 @@
Returns:
-Wine +WineShortcut
@@ -14721,7 +15607,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

checksum(checksum) → {Resource}

@@ -14729,8 +15615,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 checksum which shall be used to verify the resource
@@ -14766,13 +15651,13 @@

Parameters:
- setupWizard + checksum -SetupWizard +string @@ -14782,7 +15667,7 @@
Parameters:
- The setupWizard to use + The checksum @@ -14823,7 +15708,7 @@
Parameters:
Source:
@@ -14852,7 +15737,7 @@
Returns:
- This + The Resource object
@@ -14863,7 +15748,7 @@
Returns:
-GogScript +Resource
@@ -14881,7 +15766,7 @@
Returns:
-

message(message) → {Downloader}

+

checksum(checksum) → {Downloader}

@@ -14889,7 +15774,7 @@

message - Sets the download message text + Sets the checksum @@ -14925,7 +15810,7 @@
Parameters:
- message + checksum @@ -14941,7 +15826,7 @@
Parameters:
- The download message + The checksum which shall be used to verify the download @@ -14982,7 +15867,7 @@
Parameters:
Source:
@@ -15040,7 +15925,7 @@
Returns:
-

miniature(miniature) → {WineShortcut}

+

create() → {void}

@@ -15048,7 +15933,7 @@

miniature - Sets the miniature for the shortcut + Creates a new shortcut @@ -15059,58 +15944,6 @@

miniatureParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - @@ -15144,7 +15977,113 @@
Parameters:
Source:
+ + + + + + + +

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

create() → {Wine}

+ + + + + + +
+ runs "wineboot" +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -15173,7 +16112,7 @@
Returns:
- The WineShortcut object + The Wine object
@@ -15184,7 +16123,7 @@
Returns:
-WineShortcut +Wine
@@ -15202,7 +16141,7 @@
Returns:
-

miniature(miniatureopt)

+

description(description) → {WineShortcut}

@@ -15210,7 +16149,7 @@

miniature - get/set miniature (for the installation and the shortcut) + Sets the shortcut description @@ -15234,8 +16173,6 @@
Parameters:
Type - Attributes - @@ -15248,33 +16185,23 @@
Parameters:
- miniature + description -URI +string - - - <optional>
- - - - - - - - path to the miniature file + The shortcut description @@ -15315,7 +16242,7 @@
Parameters:
Source:
@@ -15340,6 +16267,28 @@
Parameters:
+
Returns:
+ + +
+ The WineShortcut object +
+ + + +
+
+ Type +
+
+ +WineShortcut + + +
+
+ + @@ -15351,7 +16300,7 @@
Parameters:
-

name(name) → {Resource}

+

directory(directory) → {Resource}

@@ -15359,7 +16308,7 @@

name - Sets the resource name + Sets the directory inside the resources directory where the Resource is stored @@ -15395,7 +16344,7 @@
Parameters:
- name + directory @@ -15411,7 +16360,7 @@
Parameters:
- The name of the resource + The directory path @@ -15452,7 +16401,7 @@
Parameters:
Source:
@@ -15510,7 +16459,7 @@
Returns:
-

name(name) → {WineShortcut}

+

dosConfigFile() → {string}

@@ -15518,7 +16467,117 @@

name - Sets the shortcut name + Fetch the prefix dosbox configuration file + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

download(setupWizard) → {String}

+ + + + + + +
+ Download the setup resources in the same directory, and returns the path of the .exe
@@ -15554,13 +16613,13 @@
Parameters:
- name + setupWizard -string +SetupWizard @@ -15570,7 +16629,7 @@
Parameters:
- The shortcut name + The setup wizard @@ -15611,7 +16670,7 @@
Parameters:
Source:
@@ -15640,7 +16699,7 @@
Returns:
- The WineShortcut object + The .exe file entry that can be used to continue the installation
@@ -15651,7 +16710,7 @@
Returns:
-WineShortcut +String
@@ -15669,7 +16728,7 @@
Returns:
-

of(shortcut) → {void}

+

downloadFinished(wine) → {boolean}

@@ -15677,7 +16736,8 @@

of - Sets shortcut + Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first @@ -15713,13 +16773,13 @@
Parameters:
- shortcut + wine -string +Wine @@ -15729,7 +16789,7 @@
Parameters:
- shortcut + The wine engine object @@ -15770,7 +16830,7 @@
Parameters:
Source:
@@ -15798,6 +16858,10 @@
Parameters:
Returns:
+
+ True if the download has finished, false otherwise +
+
@@ -15806,7 +16870,7 @@
Returns:
-void +boolean
@@ -15824,7 +16888,7 @@
Returns:
-

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

+

downloadStarted(wine) → {boolean}

@@ -15832,7 +16896,7 @@

- Specifies if the download shall be executed only if a newer version is available + Checks whether the software download has started
@@ -15868,13 +16932,13 @@

Parameters:
- onlyIfUpdateAvailable + wine -boolean +Wine @@ -15884,7 +16948,7 @@
Parameters:
- true the download shall be executed only if a newer version is available + The wine engine object @@ -15925,7 +16989,7 @@
Parameters:
Source:
@@ -15954,7 +17018,7 @@
Returns:
- The Downloader object + True if the download has started, false otherwise
@@ -15965,7 +17029,7 @@
Returns:
-Downloader +boolean
@@ -15983,7 +17047,7 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

environment(environment) → {WineShortcut}

@@ -15991,7 +17055,7 @@

prefix - Sets the shortcut prefix + Sets the shortcut environment variables @@ -16027,7 +17091,7 @@
Parameters:
- prefix + environment @@ -16043,7 +17107,7 @@
Parameters:
- The shortcut prefix + The environment variables @@ -16084,7 +17148,7 @@
Parameters:
Source:
@@ -16142,13 +17206,17 @@
Returns:
-

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

+

environment(environment) → {QuickScript}

+
+ set environment +
+ @@ -16170,8 +17238,6 @@
Parameters:
Type - Attributes - @@ -16184,106 +17250,7 @@
Parameters:
- prefix - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - distribution - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - architecture - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - version + environment @@ -16296,20 +17263,10 @@
Parameters:
- - - <optional>
- - - - - - - - + variables @@ -16350,7 +17307,7 @@
Parameters:
Source:
@@ -16378,6 +17335,10 @@
Parameters:
Returns:
+
+ QuickScript object +
+
@@ -16386,10 +17347,7 @@
Returns:
-string -| - -Wine +QuickScript
@@ -16407,7 +17365,7 @@
Returns:
-

prefixDirectory() → {string}

+

executable(executable, args)

@@ -16415,7 +17373,7 @@

prefix
- returns prefix directory + set executable
@@ -16426,6 +17384,68 @@

prefix +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
executable + + executable without path (e.g. "Steam.exe")
args + + use array (e.g. ["-applaunch", 409160])
+ + @@ -16459,7 +17479,7 @@

prefix
Source:
@@ -16484,24 +17504,6 @@

prefix -

Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - @@ -16513,7 +17515,7 @@
Returns:
-

programFiles() → {string}

+

fontDirectory() → {string}

@@ -16561,7 +17563,7 @@

programFi
Source:
@@ -16590,7 +17592,7 @@

Returns:
- name of "Program Files" + font directory
@@ -16619,7 +17621,7 @@
Returns:
-

run(userArguments) → {void}

+

get(resourceName) → {Resource}

@@ -16627,7 +17629,7 @@

run - Runs a shortcut with the given user arguments + Returns the searched resource @@ -16663,13 +17665,13 @@
Parameters:
- userArguments + resourceName -array +string @@ -16679,7 +17681,7 @@
Parameters:
- The user arguments + The name of the resource @@ -16720,7 +17722,7 @@
Parameters:
Source:
@@ -16748,6 +17750,10 @@
Parameters:
Returns:
+
+ The found resource +
+
@@ -16756,7 +17762,7 @@
Returns:
-void +Resource
@@ -16774,13 +17780,16 @@
Returns:
-

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

+

get() → {String}

+
+ Gets the content of the downloaded file +
@@ -16789,264 +17798,115 @@

run - - - - Name - - Type - - Attributes - - - Default - - Description - - +
- - - - executable - - - - - -string - - - - - - - - - - + - - - + - - - - - + - - + - - - args - + - - - -array + + - - + - - - - <optional>
- + - + - - - + +
Source:
+
+ - - - - [] - - - + - - + +
- - - workingDirectory - - - - -string - - - - - - <optional>
- - - - - - - - - working container - - - - - - - - - captureOutput - - - - -boolean - - - - - - <optional>
- +
Returns:
- + +
+ The content of downloaded file +
- - - - - - - false - - - - - +
+
+ Type +
+
+ +String - - - - wait - +
+
- - - -boolean + - - - - - - <optional>
- - - - + - - - - false - - - + - - + +

get() → {string}

+ - - - userData - - - - -map +
+ Fetches the Resource and returns the path leading to the downloaded resource +
- - - - - - <optional>
- - - - - - - - - empty - - - - - - - - @@ -17082,7 +17942,7 @@
Parameters:
Source:
@@ -17111,7 +17971,7 @@
Returns:
- output + The path leading to the downloaded resource
@@ -17122,7 +17982,7 @@
Returns:
-String +string
@@ -17140,13 +18000,16 @@
Returns:
-

runInsidePrefix(executable, argsopt, waitopt)

+

getContainer() → {string}

+
+ Returns the name of the container belonging to a shortcut +
@@ -17155,147 +18018,115 @@

runIns -

Parameters:
- - - - - - - - - - - - - - - - - +
-
- - - - + - + - - - + - - - + - - + - - - - + - + - - - - - - - - - - - - - - - - - - - + + +
Returns:
+ + +
+ The container name +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + - - + - -
NameTypeAttributesDefaultDescription
executable - - -string + + - - - + - + - - - -
args - - -array + +
Source:
+
+ + - -
- - <optional>
- + + - - -
- - [] - -
wait - - -boolean - - - - <optional>
- - - -
- - false - -
+

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + @@ -17331,7 +18162,7 @@
Parameters:
Source:
@@ -17356,6 +18187,28 @@
Parameters:
+
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + @@ -17367,7 +18220,7 @@
Parameters:
- +

gogSetupFileName(setupFileName) → {GogScript}

@@ -17375,7 +18228,7 @@

- - -
- Specifies if the download shall be executed only if a newer version is available -
- +
@@ -25891,54 +27428,40 @@

+
-
Parameters:
+
- - - - +

default()

- +
Plugin to enable command stream multi-threading
+ + - - +
+
+ - + +

Constructor

+ -
- - + +

new default()

+ - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - true the download shall be executed only if a newer version is available
+ @@ -25974,7 +27497,7 @@
Parameters:
Source:
@@ -25999,32 +27522,30 @@
Parameters:
-
Returns:
- -
- The Downloader object -
-
-
- Type -
-
- -Downloader + + -
-
+ + + + + + + + + +

Methods

@@ -26032,7 +27553,7 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

_createShortcut(prefixopt)

@@ -26040,7 +27561,7 @@

prefix - Sets the shortcut prefix + creates shortcut @@ -26064,6 +27585,8 @@
Parameters:
Type + Attributes + @@ -26089,10 +27612,20 @@
Parameters:
+ + + <optional>
+ + + + + - The shortcut prefix + + + prefix name @@ -26133,7 +27666,7 @@
Parameters:
Source:
@@ -26158,28 +27691,6 @@
Parameters:
-
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - @@ -26191,13 +27702,17 @@
Returns:
-

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

+

_fetchFileNameFromUrl(url) → {string}

+
+ Fetches the file name from an URL +
+ @@ -26219,8 +27734,6 @@
Parameters:
Type - Attributes - @@ -26233,106 +27746,7 @@
Parameters:
- prefix - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - distribution - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - architecture - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - version + url @@ -26345,20 +27759,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The URL @@ -26399,7 +27803,7 @@
Parameters:
Source:
@@ -26427,6 +27831,10 @@
Parameters:
Returns:
+
+ The file name +
+
@@ -26436,9 +27844,6 @@
Returns:
string -| - -Wine
@@ -26456,7 +27861,7 @@
Returns:
-

prefixDirectory() → {string}

+

algorithm(algorithm) → {Downloader}

@@ -26464,7 +27869,7 @@

prefix
- returns prefix directory + Sets the algorithm which shall be used to verify the checksum
@@ -26475,6 +27880,55 @@

prefix +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
algorithm + + +string + + + + The checksum algorithm (e.g. "SHA")
+ + @@ -26508,7 +27962,7 @@

prefix
Source:
@@ -26536,6 +27990,10 @@

prefix

Returns:
+
+ The Downloader object +
+
@@ -26544,7 +28002,7 @@
Returns:
-string +Downloader
@@ -26562,19 +28020,72 @@
Returns:
-

programFiles() → {string}

+

algorithm(algorithm) → {Resource}

+
+ Sets the checksum algorithm +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
algorithm + + +string + + The algorithm to verify the checksum (e.g. "SHA")
@@ -26610,7 +28121,7 @@

programFi
Source:
@@ -26639,7 +28150,7 @@

Returns:
- name of "Program Files" + The Resource object
@@ -26650,7 +28161,7 @@
Returns:
-string +Resource
@@ -26668,7 +28179,7 @@
Returns:
-

run(userArguments) → {void}

+

application(application) → {AppResource}

@@ -26676,7 +28187,7 @@

run - Runs a shortcut with the given user arguments + Sets the application containing the resources @@ -26712,13 +28223,13 @@
Parameters:
- userArguments + application -array +string @@ -26728,7 +28239,7 @@
Parameters:
- The user arguments + The application with the resource @@ -26769,7 +28280,7 @@
Parameters:
Source:
@@ -26797,6 +28308,10 @@
Parameters:
Returns:
+
+ The AppResource object +
+
@@ -26805,7 +28320,7 @@
Returns:
-void +AppResource
@@ -26823,7 +28338,7 @@
Returns:
-

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

+

architecture() → {string}

@@ -26838,259 +28353,158 @@

run - - - - Name - - Type - - Attributes - - - Default - +
- Description - - + - - - - executable - + - - - -string + + - - + - - - + - + - - - + - - - - - + - - + - - - args - + +
Source:
+
+ - - - -array + + - - + +
- - - - <optional>
- - - - - - - - - [] - - - - - - - - - workingDirectory - - - - -string - - - - - - <optional>
- - - - - - - - - working container - - - - - +
Returns:
- + +
+ architecture ("x86" or "amd64") +
- - - captureOutput - - - - -boolean +
+
+ Type +
+
+ +string - - - - - - <optional>
- +
+
- + - - - - - - - false - - + + + + - - + +

arguments(args) → {WineShortcut}

+ - - - wait - + - - - -boolean - - +
+ Sets the shortcut arguments +
+ - - - - <optional>
- - - - - - - - - false - - - - - + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + - + - - - - - + @@ -27131,7 +28545,7 @@
Parameters:
Source:
@@ -27160,7 +28574,7 @@
Returns:
- output + The WineShortcut object
@@ -27171,7 +28585,7 @@
Returns:
-String +WineShortcut
@@ -27189,7 +28603,7 @@
Returns:
-

runInsidePrefix(executable, argsopt, waitopt)

+

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

@@ -27233,7 +28647,7 @@
Parameters:
- + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -27334,7 +28674,7 @@
Parameters:
@@ -27380,7 +28720,7 @@
Parameters:
Source:
@@ -27405,6 +28745,24 @@
Parameters:
+
Returns:
+ + + + +
+
+ Type +
+
+ +Array.<string> + + +
+
+ + @@ -27416,17 +28774,13 @@
Parameters:
- +

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

-
- Sets the executable which shall be used -
- @@ -27448,8 +28802,12 @@
Parameters:
+ + + + @@ -27460,7 +28818,7 @@
Parameters:
- + + - + + + + + @@ -27517,7 +28891,7 @@
Parameters:
Source:
@@ -27545,10 +28919,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -27557,7 +28927,7 @@
Returns:
-WineShortcut +Array.<string>
@@ -27575,7 +28945,7 @@
Returns:
-

stop() → {void}

+

binPath(subCategoryopt, versionopt) → {string}

@@ -27583,7 +28953,8 @@

stop - Stops the running shortcut + returns the path to the engine binary directory +if no parameters are given, the Wine version of the current prefix is used @@ -27594,106 +28965,98 @@

stop - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - +
NameTypeDescription
userDataargs -map +array - - <optional>
- - - - - -
- - empty - - The shortcut arguments
executablearchitecture @@ -27243,80 +28657,6 @@
Parameters:
-
- - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - false + current architecture TypeAttributesDefaultDescription
searchdistribution name @@ -27473,10 +28831,26 @@
Parameters:
+ + <optional>
+ + + + +
The executable name + + current distribution + +
+ + + + + + -
Returns:
+ + + + + + -
-
- Type -
-
- -void +
+ + + + + - - + + + + - - + + -

system32directory() → {string}

- - + + + + + + + + + + + + + +
NameTypeAttributesDescription
subCategory + + +string - + + + + <optional>
+ + + +
Wine sub-category
version + + +string + + + + <optional>
+ + + +
Wine version
@@ -27729,7 +29092,7 @@

syst
Source:
@@ -27758,7 +29121,7 @@

Returns:
- system32 directory + path to "wine" binary
@@ -27787,13 +29150,16 @@
Returns:
-

system64directory() → {string}

+

category(category) → {WineShortcut}

+
+ Sets the shortcut category +
@@ -27803,6 +29169,56 @@

syst +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
category + + +string + + + + The shortcut category
+ + + @@ -27835,7 +29251,7 @@

syst
Source:
@@ -27864,7 +29280,7 @@

Returns:
- system64 directory + The WineShortcut object
@@ -27875,7 +29291,7 @@
Returns:
-string +WineShortcut
@@ -27893,7 +29309,7 @@
Returns:
-

to(localDestination) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -27901,7 +29317,7 @@

to - Sets the download destination + Sets the checksum which shall be used to verify the resource @@ -27937,7 +29353,7 @@
Parameters:
- localDestination + checksum @@ -27953,7 +29369,7 @@
Parameters:
- The destination of the download. If it is a directory, the file will be placed inside + The checksum @@ -27994,7 +29410,7 @@
Parameters:
Source:
@@ -28023,7 +29439,7 @@
Returns:
- The Downloader object + The Resource object
@@ -28034,7 +29450,7 @@
Returns:
-Downloader +Resource
@@ -28052,7 +29468,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

checksum(checksum) → {Downloader}

@@ -28060,7 +29476,7 @@

trustLevel<
- Sets the trust level + Sets the checksum
@@ -28096,7 +29512,7 @@

Parameters:
- trustLevel + checksum @@ -28112,7 +29528,7 @@
Parameters:
- The trust level + The checksum which shall be used to verify the download @@ -28153,7 +29569,7 @@
Parameters:
Source:
@@ -28182,7 +29598,7 @@
Returns:
- The WineShortcut object + The Downloader object
@@ -28193,7 +29609,7 @@
Returns:
-WineShortcut +Downloader
@@ -28211,7 +29627,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

create() → {void}

@@ -28219,7 +29635,7 @@

trustLevel<
- set trust level + Creates a new shortcut
@@ -28230,55 +29646,6 @@

trustLevel< -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - @@ -28312,7 +29679,7 @@
Parameters:
Source:
@@ -28340,10 +29707,6 @@
Parameters:
Returns:
-
- QuickScript object -
-
@@ -28352,7 +29715,7 @@
Returns:
-QuickScript +void
@@ -28370,7 +29733,7 @@
Returns:
-

type(type) → {WineShortcut}

+

create() → {Wine}

@@ -28378,7 +29741,7 @@

type - Sets the shortcut type + runs "wineboot" @@ -28389,55 +29752,6 @@

type - - - - Name - - - Type - - - - - - Description - - - - - - - - - type - - - - - -string - - - - - - - - - - The shortcut type - - - - - - - @@ -28471,7 +29785,7 @@
Parameters:
Source:
@@ -28500,7 +29814,7 @@
Returns:
- The WineShortcut object + The Wine object
@@ -28511,7 +29825,7 @@
Returns:
-WineShortcut +Wine
@@ -28529,7 +29843,7 @@
Returns:
-

uninstall(name) → {bool}

+

description(description) → {WineShortcut}

@@ -28537,7 +29851,7 @@

uninstall - uninstall application + Sets the shortcut description @@ -28573,7 +29887,7 @@
Parameters:
- name + description @@ -28589,7 +29903,7 @@
Parameters:
- of the application which shall be uninstalled + The shortcut description @@ -28630,117 +29944,7 @@
Parameters:
Source:
- - - - - - - -

- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
@@ -28768,6 +29972,10 @@

uninstallReturns:

+
+ The WineShortcut object +
+
@@ -28776,7 +29984,7 @@
Returns:
-void +WineShortcut
@@ -28794,7 +30002,7 @@
Returns:
-

url(url) → {Downloader}

+

directory(directory) → {Resource}

@@ -28802,7 +30010,7 @@

url - Sets the URL which shall be used for the download + Sets the directory inside the resources directory where the Resource is stored @@ -28838,7 +30046,7 @@
Parameters:
- url + directory @@ -28854,7 +30062,7 @@
Parameters:
- The URL + The directory path @@ -28895,7 +30103,7 @@
Parameters:
Source:
@@ -28924,7 +30132,7 @@
Returns:
- The Downloader object + The Resource object
@@ -28935,7 +30143,7 @@
Returns:
-Downloader +Resource
@@ -28953,7 +30161,7 @@
Returns:
-

url(url) → {Resource}

+

dosConfigFile() → {string}

@@ -28961,7 +30169,117 @@

url - Sets the resource URL + Fetch the prefix dosbox configuration file + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

download(setupWizard) → {String}

+ + + + + + +
+ Download the setup resources in the same directory, and returns the path of the .exe
@@ -28997,13 +30315,13 @@
Parameters:
- url + setupWizard -string +SetupWizard @@ -29013,7 +30331,7 @@
Parameters:
- The URL + The setup wizard @@ -29054,7 +30372,7 @@
Parameters:
Source:
@@ -29083,7 +30401,7 @@
Returns:
- The Resource object + The .exe file entry that can be used to continue the installation
@@ -29094,7 +30412,7 @@
Returns:
-Resource +String
@@ -29112,7 +30430,7 @@
Returns:
-

wait() → {Wine}

+

downloadFinished(wine) → {boolean}

@@ -29120,7 +30438,8 @@

wait - wait until wineserver finishes + Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first @@ -29131,6 +30450,55 @@

wait + + + + Name + + + Type + + + + + + Description + + + + + + + + + wine + + + + + +Wine + + + + + + + + + + The wine engine object + + + + + + + @@ -29164,7 +30532,7 @@

waitSource:
@@ -29192,6 +30560,10 @@

wait + True if the download has finished, false otherwise + +
@@ -29200,7 +30572,7 @@
Returns:
-Wine +boolean
@@ -29218,13 +30590,17 @@
Returns:
-

winepath(pathopt) → {String}

+

downloadStarted(wine) → {boolean}

+
+ Checks whether the software download has started +
+ @@ -29246,8 +30622,6 @@
Parameters:
Type - Attributes - @@ -29260,33 +30634,23 @@
Parameters:
- path + wine -String +Wine - - - <optional>
- - - - - - - - + The wine engine object @@ -29327,7 +30691,7 @@
Parameters:
Source:
@@ -29355,6 +30719,10 @@
Parameters:
Returns:
+
+ True if the download has started, false otherwise +
+
@@ -29363,7 +30731,7 @@
Returns:
-String +boolean
@@ -29381,7 +30749,7 @@
Returns:
-

wineServer(wineserver)

+

environment(environment) → {WineShortcut}

@@ -29389,7 +30757,7 @@

wineServer<
- executes wineserver in current prefix + Sets the shortcut environment variables
@@ -29425,7 +30793,7 @@

Parameters:
- wineserver + environment @@ -29441,7 +30809,7 @@
Parameters:
- parameter + The environment variables @@ -29482,7 +30850,7 @@
Parameters:
Source:
@@ -29507,6 +30875,28 @@
Parameters:
+
Returns:
+ + +
+ The WineShortcut object +
+ + + +
+
+ Type +
+
+ +WineShortcut + + +
+
+ + @@ -29518,7 +30908,7 @@
Parameters:
-

withScript(command) → {PlainInstaller}

+

environment(environment) → {QuickScript}

@@ -29526,7 +30916,7 @@

withScript<
- Sets the installation script consisting of a lambda function + set environment
@@ -29562,13 +30952,13 @@

Parameters:
- command + environment -function +string @@ -29578,7 +30968,7 @@
Parameters:
- The installation command + variables @@ -29619,7 +31009,7 @@
Parameters:
Source:
@@ -29648,7 +31038,7 @@
Returns:
- The PlainInstaller object + QuickScript object
@@ -29659,7 +31049,7 @@
Returns:
-PlainInstaller +QuickScript
@@ -29677,7 +31067,7 @@
Returns:
-

wizard(wizard) → {Resource}

+

executable(executable, args)

@@ -29685,7 +31075,7 @@

wizard - Sets the setup wizard + set executable @@ -29721,15 +31111,28 @@
Parameters:
- wizard + executable - -SetupWizard + + + + + + executable without path (e.g. "Steam.exe") + + + + + + args + + + @@ -29737,7 +31140,7 @@
Parameters:
- The setup wizard + use array (e.g. ["-applaunch", 409160]) @@ -29778,7 +31181,91 @@
Parameters:
Source:
+ + + + + + + +

+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -29807,7 +31294,7 @@
Returns:
- The Resource object + font directory
@@ -29818,7 +31305,7 @@
Returns:
-Resource +string
@@ -29836,7 +31323,7 @@
Returns:
-

wizard(wizard) → {Downloader}

+

get(resourceName) → {Resource}

@@ -29844,7 +31331,7 @@

wizard - Sets the setup wizard + Returns the searched resource @@ -29880,13 +31367,13 @@
Parameters:
- wizard + resourceName -SetupWizard +string @@ -29896,7 +31383,7 @@
Parameters:
- The setup wizard + The name of the resource @@ -29937,7 +31424,7 @@
Parameters:
Source:
@@ -29966,7 +31453,7 @@
Returns:
- The Downloader object + The found resource
@@ -29977,7 +31464,7 @@
Returns:
-Downloader +Resource
@@ -29995,13 +31482,19 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

get() → {String}

+
+ Gets the content of the downloaded file +
+ + + @@ -30010,65 +31503,112 @@

wizardParameters:

+ + +
+ - - - - - - + - + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + + + + + + + + + + + + + + + + + +
Returns:
- - +
+ The content of downloaded file +
+ + +
+
+ Type +
+
+String -
- - - + + + - - - - - + - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - <optional>
- - + + + +

get() → {string}

+ + + + + + +
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ + + - -
@@ -30104,7 +31644,7 @@
Parameters:
Source:
@@ -30132,6 +31672,10 @@
Parameters:
Returns:
+
+ The path leading to the downloaded resource +
+
@@ -30140,10 +31684,7 @@
Returns:
-SetupWizard -| - -Wine +string
@@ -30156,48 +31697,21 @@
Returns:
- - - - - - - -

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

default()

- -
setting to set always offscreen
- - -
+ -
-
- -

Constructor

+

getContainer() → {string}

-

new default()

- - +
+ Returns the name of the container belonging to a shortcut +
@@ -30240,7 +31754,7 @@

new defaultSource:
@@ -30265,30 +31779,32 @@

new defaultReturns:

+ +
+ The container name +
+
+
+ Type +
+
+ +string - -

- - - - - + + - - - - -

Methods

@@ -30296,7 +31812,7 @@

Methods

-

_createShortcut(prefixopt)

+

getSettings() → {object}

@@ -30304,7 +31820,7 @@

_creat
- creates shortcut + Fetch all prefix dosbox sttings
@@ -30315,67 +31831,6 @@

_creat -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - @@ -30409,7 +31864,7 @@
Parameters:
Source:
@@ -30434,6 +31889,28 @@
Parameters:
+
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + @@ -30445,7 +31922,7 @@
Parameters:
-

_fetchFileNameFromUrl(url) → {string}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -30453,7 +31930,7 @@

- Fetches the file name from an URL + Sets one setup file name so that the script can fetch it from gog.com
@@ -30489,7 +31966,7 @@

Parameters:
- url + setupFileName @@ -30505,7 +31982,7 @@
Parameters:
- The URL + The setup file name @@ -30546,7 +32023,7 @@
Parameters:
Source:
@@ -30575,7 +32052,7 @@
Returns:
- The file name + This
@@ -30586,7 +32063,7 @@
Returns:
-string +GogScript
@@ -30604,7 +32081,7 @@
Returns:
-

algorithm(algorithm) → {Resource}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -30612,7 +32089,7 @@

algorithm - Sets the checksum algorithm + Sets the setup file(s) name so that the script can fetch it from gog.com @@ -30648,13 +32125,13 @@
Parameters:
- algorithm + setupFileNames -string +Array.<string> @@ -30664,7 +32141,7 @@
Parameters:
- The algorithm to verify the checksum (e.g. "SHA") + The setup file name(s) @@ -30705,7 +32182,7 @@
Parameters:
Source:
@@ -30734,7 +32211,7 @@
Returns:
- The Resource object + This
@@ -30745,7 +32222,7 @@
Returns:
-Resource +GogScript
@@ -30763,7 +32240,7 @@
Returns:
-

algorithm(algorithm) → {Downloader}

+

headers(headers) → {Downloader}

@@ -30771,7 +32248,7 @@

algorithm - Sets the algorithm which shall be used to verify the checksum + Sets the http headers @@ -30807,13 +32284,13 @@
Parameters:
- algorithm + headers -string +Object @@ -30823,7 +32300,7 @@
Parameters:
- The checksum algorithm (e.g. "SHA") + The http headers @@ -30864,7 +32341,7 @@
Parameters:
Source:
@@ -30922,7 +32399,7 @@
Returns:
-

application(application) → {AppResource}

+

isHdpi() → {boolean}

@@ -30930,7 +32407,7 @@

applicatio
- Sets the application containing the resources + Fetches whether hdpi is enabled or not
@@ -30941,55 +32418,6 @@

applicatio -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - @@ -31023,7 +32451,7 @@
Parameters:
Source:
@@ -31052,7 +32480,7 @@
Returns:
- The AppResource object + True if hdpi is enabled, false otherwise
@@ -31063,7 +32491,7 @@
Returns:
-AppResource +boolean
@@ -31081,13 +32509,17 @@
Returns:
-

architecture() → {string}

+

json() → {any}

+
+ Gets the content of the downloaded file and returns it as a JSON value +
+ @@ -31129,7 +32561,7 @@

architect
Source:
@@ -31158,7 +32590,7 @@

Returns:
- architecture ("x86" or "amd64") + The json value
@@ -31169,7 +32601,7 @@
Returns:
-string +any
@@ -31187,7 +32619,7 @@
Returns:
-

arguments(args) → {WineShortcut}

+

kill() → {Wine}

@@ -31195,7 +32627,114 @@

arguments - Sets the shortcut arguments + 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
@@ -31231,13 +32770,13 @@
Parameters:
- args + setupWizard -array +SetupWizard @@ -31247,7 +32786,7 @@
Parameters:
- The shortcut arguments + The setupWizard to use @@ -31288,7 +32827,7 @@
Parameters:
Source:
@@ -31317,7 +32856,7 @@
Returns:
- The WineShortcut object + This
@@ -31328,7 +32867,7 @@
Returns:
-WineShortcut +GogScript
@@ -31346,13 +32885,17 @@
Returns:
-

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

+

message(message) → {Downloader}

+
+ Sets the download message text +
+ @@ -31374,12 +32917,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -31390,7 +32929,7 @@
Parameters:
- architecture + message @@ -31403,26 +32942,10 @@
Parameters:
- - - <optional>
- - - - - - - - - current architecture - - - - - + The download message @@ -31463,7 +32986,7 @@
Parameters:
Source:
@@ -31491,6 +33014,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -31499,7 +33026,7 @@
Returns:
-Array.<string> +Downloader
@@ -31517,13 +33044,17 @@
Returns:
-

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

+

miniature(miniatureopt)

+
+ get/set miniature (for the installation and the shortcut) +
+ @@ -31549,8 +33080,6 @@
Parameters:
- Default - Description @@ -31561,13 +33090,13 @@
Parameters:
- distribution name + miniature -string +URI @@ -31586,14 +33115,8 @@
Parameters:
- - - current distribution - - - - + path to the miniature file @@ -31634,7 +33157,7 @@
Parameters:
Source:
@@ -31659,24 +33182,6 @@
Parameters:
-
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - @@ -31688,7 +33193,7 @@
Returns:
-

binPath(subCategoryopt, versionopt) → {string}

+

miniature(miniature) → {WineShortcut}

@@ -31696,8 +33201,7 @@

binPath - returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used + Sets the miniature for the shortcut @@ -31721,8 +33225,6 @@
Parameters:
Type - Attributes - @@ -31735,66 +33237,26 @@
Parameters:
- subCategory + miniature -string - - - - - - - - - <optional>
- - - - - - - - - - - Wine sub-category - - - - - - - version - +Array.<string> +| - - - -string +URI - - - <optional>
- - - - - - - - Wine version + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -31835,7 +33297,7 @@
Parameters:
Source:
@@ -31864,7 +33326,7 @@
Returns:
- path to "wine" binary + The WineShortcut object
@@ -31875,7 +33337,7 @@
Returns:
-string +WineShortcut
@@ -31893,7 +33355,7 @@
Returns:
-

category(category) → {WineShortcut}

+

name(name) → {Resource}

@@ -31901,7 +33363,7 @@

category - Sets the shortcut category + Sets the resource name @@ -31937,7 +33399,7 @@
Parameters:
- category + name @@ -31953,7 +33415,7 @@
Parameters:
- The shortcut category + The name of the resource @@ -31994,7 +33456,7 @@
Parameters:
Source:
@@ -32023,7 +33485,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -32034,7 +33496,7 @@
Returns:
-WineShortcut +Resource
@@ -32052,7 +33514,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

name(name) → {WineShortcut}

@@ -32060,7 +33522,7 @@

checksum - Sets the checksum + Sets the shortcut name @@ -32096,7 +33558,7 @@
Parameters:
- checksum + name @@ -32112,7 +33574,7 @@
Parameters:
- The checksum which shall be used to verify the download + The shortcut name @@ -32153,7 +33615,7 @@
Parameters:
Source:
@@ -32182,7 +33644,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -32193,7 +33655,7 @@
Returns:
-Downloader +WineShortcut
@@ -32211,7 +33673,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

of(shortcut) → {void}

@@ -32219,7 +33681,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets shortcut @@ -32255,7 +33717,7 @@
Parameters:
- checksum + shortcut @@ -32271,7 +33733,7 @@
Parameters:
- The checksum + shortcut @@ -32312,7 +33774,7 @@
Parameters:
Source:
@@ -32340,10 +33802,6 @@
Parameters:
Returns:
-
- The Resource object -
-
@@ -32352,7 +33810,7 @@
Returns:
-Resource +void
@@ -32370,7 +33828,7 @@
Returns:
-

create() → {Wine}

+

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

@@ -32378,7 +33836,7 @@

create - runs "wineboot" + Specifies if the download shall be executed only if a newer version is available @@ -32389,6 +33847,55 @@

createParameters:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
onlyIfUpdateAvailable + + +boolean + + + + true the download shall be executed only if a newer version is available
+ + @@ -32422,7 +33929,7 @@

createSource:
@@ -32451,7 +33958,7 @@
Returns:
- The Wine object + The Downloader object
@@ -32462,7 +33969,7 @@
Returns:
-Wine +Downloader
@@ -32480,16 +33987,13 @@
Returns:
-

create() → {void}

+

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

-
- Creates a new shortcut -
@@ -32498,12 +34002,171 @@

createParameters:

+ + + + + + + + + + + + -
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
prefix + + +string + + + + + + <optional>
+ + + + + +
distribution + + +string + + + + + + <optional>
+ + + + + +
architecture + + +string + + + + + + <optional>
+ + + + + +
version + + +string + + + + + + <optional>
+ + + + + +
+ + + + + + +
@@ -32532,7 +34195,7 @@

createSource:
@@ -32568,7 +34231,10 @@
Returns:
-void +string +| + +Wine
@@ -32586,7 +34252,7 @@
Returns:
-

description(description) → {WineShortcut}

+

prefix(prefix) → {WineShortcut}

@@ -32594,7 +34260,7 @@

descriptio
- Sets the shortcut description + Sets the shortcut prefix
@@ -32630,7 +34296,7 @@

Parameters:
- description + prefix @@ -32646,7 +34312,7 @@
Parameters:
- The shortcut description + The shortcut prefix @@ -32687,7 +34353,7 @@
Parameters:
Source:
@@ -32745,7 +34411,7 @@
Returns:
-

directory(directory) → {Resource}

+

prefixDirectory() → {string}

@@ -32753,7 +34419,7 @@

directory - Sets the directory inside the resources directory where the Resource is stored + returns prefix directory @@ -32764,55 +34430,6 @@

directoryParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - @@ -32846,7 +34463,7 @@
Parameters:
Source:
@@ -32874,10 +34491,6 @@
Parameters:
Returns:
-
- The Resource object -
-
@@ -32886,7 +34499,7 @@
Returns:
-Resource +string
@@ -32904,16 +34517,13 @@
Returns:
-

download(setupWizard) → {String}

+

programFiles() → {string}

-
- Download the setup resources in the same directory, and returns the path of the .exe -
@@ -32923,56 +34533,6 @@

downloadParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - @@ -33005,7 +34565,7 @@
Parameters:
Source:
@@ -33034,7 +34594,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + name of "Program Files"
@@ -33045,7 +34605,7 @@
Returns:
-String +string
@@ -33063,17 +34623,13 @@
Returns:
-

environment(environment) → {WineShortcut}

+

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

-
- Sets the shortcut environment variables -
- @@ -33095,8 +34651,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -33107,7 +34667,7 @@
Parameters:
- environment + executable @@ -33120,10 +34680,217 @@
Parameters:
+ + + + + + - The environment variables + + + + + + + + + + + + + + args + + + + + +array + + + + + + + + + <optional>
+ + + + + + + + + + + + [] + + + + + + + + + + + + workingDirectory + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + + working container + + + + + + + + + + + + captureOutput + + + + + +boolean + + + + + + + + + <optional>
+ + + + + + + + + + + + false + + + + + + + + + + + + wait + + + + + +boolean + + + + + + + + + <optional>
+ + + + + + + + + + + + false + + + + + + + + + + + + userData + + + + + +map + + + + + + + + + <optional>
+ + + + + + + + + + + + empty + + + + + @@ -33164,7 +34931,7 @@
Parameters:
Source:
@@ -33193,7 +34960,7 @@
Returns:
- The WineShortcut object + output
@@ -33204,7 +34971,7 @@
Returns:
-WineShortcut +String
@@ -33222,7 +34989,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

run(userArguments) → {void}

@@ -33230,7 +34997,7 @@

environmen
- set environment + Runs a shortcut with the given user arguments
@@ -33266,13 +35033,13 @@

Parameters:
- environment + userArguments -string +array @@ -33282,7 +35049,7 @@
Parameters:
- variables + The user arguments @@ -33323,7 +35090,7 @@
Parameters:
Source:
@@ -33351,10 +35118,6 @@
Parameters:
Returns:
-
- QuickScript object -
-
@@ -33363,7 +35126,7 @@
Returns:
-QuickScript +void
@@ -33381,17 +35144,13 @@
Returns:
-

executable(executable, args)

+

runInsidePrefix(executable, argsopt, waitopt)

-
- set executable -
- @@ -33413,8 +35172,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -33430,13 +35193,30 @@
Parameters:
+ +string + + + + + + + + + + + + + + + - executable without path (e.g. "Steam.exe") + @@ -33448,13 +35228,73 @@
Parameters:
+ +array + + + + + + <optional>
+ + + + + - use array (e.g. ["-applaunch", 409160]) + + + + [] + + + + + + + + + + + + wait + + + + + +boolean + + + + + + + + + <optional>
+ + + + + + + + + + + + false + + + + + @@ -33495,7 +35335,7 @@
Parameters:
Source:
@@ -33531,19 +35371,72 @@
Parameters:
-

fontDirectory() → {string}

+ +
+ Sets the executable which shall be used +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
search + + +string + + The executable name
@@ -33579,7 +35472,7 @@

fontDire
Source:
@@ -33608,7 +35501,7 @@

Returns:
- font directory + The WineShortcut object
@@ -33619,7 +35512,7 @@
Returns:
-string +WineShortcut
@@ -33637,7 +35530,7 @@
Returns:
-

get() → {string}

+

stop() → {void}

@@ -33645,7 +35538,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Stops the running shortcut @@ -33689,7 +35582,109 @@

getSource:
+ + + + + + + +

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

system32directory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -33718,7 +35713,7 @@
Returns:
- The path leading to the downloaded resource + system32 directory
@@ -33747,17 +35742,13 @@
Returns:
-

get() → {String}

+

system64directory() → {string}

-
- Gets the content of the downloaded file -
- @@ -33799,7 +35790,7 @@

getSource:
@@ -33828,7 +35819,7 @@
Returns:
- The content of downloaded file + system64 directory
@@ -33839,7 +35830,7 @@
Returns:
-String +string
@@ -33857,7 +35848,7 @@
Returns:
-

get(resourceName) → {Resource}

+

to(localDestination) → {Downloader}

@@ -33865,7 +35856,7 @@

get - Returns the searched resource + Sets the download destination @@ -33901,7 +35892,7 @@
Parameters:
- resourceName + localDestination @@ -33917,7 +35908,7 @@
Parameters:
- The name of the resource + The destination of the download. If it is a directory, the file will be placed inside @@ -33958,7 +35949,7 @@
Parameters:
Source:
@@ -33987,7 +35978,7 @@
Returns:
- The found resource + The Downloader object
@@ -33998,7 +35989,7 @@
Returns:
-Resource +Downloader
@@ -34016,7 +36007,7 @@
Returns:
-

getContainer() → {string}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -34024,7 +36015,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the trust level
@@ -34035,6 +36026,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
trustLevel + + +string + + + + The trust level
+ + @@ -34068,7 +36108,7 @@

getContai
Source:
@@ -34097,7 +36137,7 @@

Returns:
- The container name + The WineShortcut object
@@ -34108,7 +36148,7 @@
Returns:
-string +WineShortcut
@@ -34126,7 +36166,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

trustLevel(trustlevel) → {QuickScript}

@@ -34134,7 +36174,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + set trust level
@@ -34170,7 +36210,7 @@

Parameters:
- setupFileName + trustlevel @@ -34186,7 +36226,7 @@
Parameters:
- The setup file name + @@ -34227,7 +36267,7 @@
Parameters:
Source:
@@ -34256,7 +36296,7 @@
Returns:
- This + QuickScript object
@@ -34267,7 +36307,7 @@
Returns:
-GogScript +QuickScript
@@ -34285,7 +36325,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

type(type) → {WineShortcut}

@@ -34293,7 +36333,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Sets the shortcut type
@@ -34329,13 +36369,13 @@

Parameters:
- setupFileNames + type -Array.<string> +string @@ -34345,7 +36385,7 @@
Parameters:
- The setup file name(s) + The shortcut type @@ -34386,7 +36426,7 @@
Parameters:
Source:
@@ -34415,7 +36455,7 @@
Returns:
- This + The WineShortcut object
@@ -34426,7 +36466,7 @@
Returns:
-GogScript +WineShortcut
@@ -34444,7 +36484,7 @@
Returns:
-

headers(headers) → {Downloader}

+

uninstall(name) → {bool}

@@ -34452,7 +36492,7 @@

headers - Sets the http headers + uninstall application @@ -34488,13 +36528,13 @@
Parameters:
- headers + name -Object +string @@ -34504,7 +36544,7 @@
Parameters:
- The http headers + of the application which shall be uninstalled @@ -34545,7 +36585,7 @@
Parameters:
Source:
@@ -34574,7 +36614,7 @@
Returns:
- The Downloader object + true if an application has been uninstalled, false otherwise
@@ -34585,7 +36625,7 @@
Returns:
-Downloader +bool
@@ -34603,7 +36643,7 @@
Returns:
-

json() → {any}

+

uninstall() → {void}

@@ -34611,7 +36651,7 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Uninstalls the shortcut @@ -34655,7 +36695,7 @@

jsonSource:
@@ -34683,10 +36723,6 @@

json - The json value - -
@@ -34695,7 +36731,7 @@
Returns:
-any +void
@@ -34713,7 +36749,7 @@
Returns:
-

kill() → {Wine}

+

url(url) → {Downloader}

@@ -34721,7 +36757,7 @@

kill - kill wine server + Sets the URL which shall be used for the download @@ -34732,6 +36768,55 @@

kill + + + + Name + + + Type + + + + + + Description + + + + + + + + + url + + + + + +string + + + + + + + + + + The URL + + + + + + + @@ -34765,7 +36850,7 @@

killSource:
@@ -34793,6 +36878,10 @@

kill + The Downloader object + +
@@ -34801,7 +36890,7 @@
Returns:
-Wine +Downloader
@@ -34819,7 +36908,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

url(url) → {Resource}

@@ -34827,8 +36916,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 resource URL
@@ -34864,13 +36952,13 @@

Parameters:
- setupWizard + url -SetupWizard +string @@ -34880,7 +36968,7 @@
Parameters:
- The setupWizard to use + The URL @@ -34921,7 +37009,7 @@
Parameters:
Source:
@@ -34950,7 +37038,7 @@
Returns:
- This + The Resource object
@@ -34961,7 +37049,7 @@
Returns:
-GogScript +Resource
@@ -34979,7 +37067,7 @@
Returns:
-

message(message) → {Downloader}

+

wait() → {Wine}

@@ -34987,7 +37075,7 @@

message - Sets the download message text + wait until wineserver finishes @@ -34998,55 +37086,6 @@

messageParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - @@ -35080,7 +37119,7 @@
Parameters:
Source:
@@ -35108,10 +37147,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -35120,7 +37155,7 @@
Returns:
-Downloader +Wine
@@ -35138,17 +37173,13 @@
Returns:
-

miniature(miniature) → {WineShortcut}

+

winepath(pathopt) → {String}

-
- Sets the miniature for the shortcut -
- @@ -35170,6 +37201,8 @@
Parameters:
Type + Attributes + @@ -35182,26 +37215,33 @@
Parameters:
- miniature + path -Array.<string> -| - -URI +String + + + <optional>
+ + + + + + + - An array which specifies the application of which the miniature shall be used or URI of the miniature + @@ -35242,7 +37282,7 @@
Parameters:
Source:
@@ -35270,10 +37310,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -35282,7 +37318,7 @@
Returns:
-WineShortcut +String
@@ -35300,7 +37336,7 @@
Returns:
-

miniature(miniatureopt)

+

wineServer(wineserver)

@@ -35308,7 +37344,7 @@

miniature - get/set miniature (for the installation and the shortcut) + executes wineserver in current prefix @@ -35332,8 +37368,6 @@
Parameters:
Type - Attributes - @@ -35346,33 +37380,183 @@
Parameters:
- miniature + wineserver -URI +string - - - <optional>
- + + + parameter + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +string + + + - + + + @@ -35413,7 +37597,7 @@
Parameters:
Source:
@@ -35438,6 +37622,28 @@
Parameters:
+
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + @@ -35449,7 +37655,7 @@
Parameters:
-

name(name) → {Resource}

+

withCpuCycles(cpuCycles) → {Dosbox}

@@ -35457,7 +37663,8 @@

name - Sets the resource name + Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D @@ -35493,13 +37700,13 @@
Parameters:

- + + @@ -35550,7 +37757,7 @@
Parameters:
Source:
@@ -35579,7 +37786,7 @@
Returns:
- The Resource object + This
@@ -35590,7 +37797,7 @@
Returns:
-Resource +Dosbox
@@ -35608,7 +37815,7 @@
Returns:
-

name(name) → {WineShortcut}

+

withDimensions(width, height) → {VirtualDesktop}

@@ -35616,7 +37823,7 @@

name - Sets the shortcut name + Specifies the dimensions of the virtual desktop @@ -35652,13 +37859,13 @@
Parameters:

- + + + + + + + + + + + + + + + + + + @@ -35709,7 +37939,7 @@
Parameters:
Source:
@@ -35738,7 +37968,7 @@
Returns:
- The WineShortcut object + This
@@ -35749,7 +37979,7 @@
Returns:
-WineShortcut +VirtualDesktop
@@ -35767,7 +37997,7 @@
Returns:
-

of(shortcut) → {void}

+

withDriver(driver) → {SoundDriver}

@@ -35775,7 +38005,7 @@

of - Sets shortcut + Specifies the used sound driver @@ -35811,7 +38041,7 @@
Parameters:

- + + @@ -35868,7 +38098,7 @@
Parameters:
Source:
@@ -35896,6 +38126,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -35904,7 +38138,7 @@
Returns:
-void +SoundDriver
@@ -35922,7 +38156,7 @@
Returns:
-

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

+

withExtension(extension) → {NativeApplication}

@@ -35930,7 +38164,7 @@

- Specifies if the download shall be executed only if a newer version is available + Specifies the file extension
@@ -35966,13 +38200,13 @@

Parameters:
- + + @@ -36023,7 +38257,7 @@
Parameters:
Source:
@@ -36052,7 +38286,7 @@
Returns:
- The Downloader object + This
@@ -36063,7 +38297,7 @@
Returns:
-Downloader +NativeApplication
@@ -36081,7 +38315,7 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

withHdpi(hdpi) → {HDPI}

@@ -36089,7 +38323,7 @@

prefix - Sets the shortcut prefix + Specifies whether hdpi should be enabled or not @@ -36125,13 +38359,13 @@
Parameters:

- + + @@ -36182,7 +38416,7 @@
Parameters:
Source:
@@ -36211,7 +38445,7 @@
Returns:
- The WineShortcut object + This
@@ -36222,7 +38456,7 @@
Returns:
-WineShortcut +HDPI
@@ -36240,13 +38474,17 @@
Returns:
-

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

+

withManaged(managed) → {Managed}

+
+ Specifies the global managed state +
+ @@ -36268,8 +38506,6 @@
Parameters:
- - @@ -36282,132 +38518,23 @@
Parameters:
- + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -36448,7 +38575,7 @@
Parameters:
Source:
@@ -36476,6 +38603,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -36484,10 +38615,7 @@
Returns:
-string -| - -Wine +Managed
@@ -36505,7 +38633,7 @@
Returns:
-

prefixDirectory() → {string}

+

withManagedApplication(application, managed) → {Managed}

@@ -36513,7 +38641,7 @@

prefix
- returns prefix directory + Specifies the managed state for a given application
@@ -36524,106 +38652,76 @@

prefix - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-
- - - - - - - - - - - - - - - -

Returns:
+
NameTypeDescription
application + +string + + + The application executable
os + - path to the miniature fileThe windows version
namecpuCycles -string +int @@ -35509,7 +37716,7 @@
Parameters:
-
The name of the resource(example: max 95% limit 33000)
namewidth -string +number @@ -35668,7 +37875,30 @@
Parameters:
-
The shortcut namewidth of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
shortcutdriver @@ -35827,7 +38057,7 @@
Parameters:
-
shortcutalsa or pulse
onlyIfUpdateAvailableextension -boolean +string @@ -35982,7 +38216,7 @@
Parameters:
-
true the download shall be executed only if a newer version is availableThe file extension (pdf, txt, rtf)
prefixhdpi -string +boolean @@ -36141,7 +38375,7 @@
Parameters:
-
The shortcut prefixtrue if hdpi shall be enabled
TypeAttributes
prefixmanaged -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string +boolean - - <optional>
- - - - - -
True if it shall be managed
+ + + + + -
-
- Type -
-
-string + -
-
+ + + + + + + + + - - + - -

programFiles() → {string}

- + + + + + + + + + + + - + + +
NameTypeDescription
application + + +string + + The application
managed + + +boolean + + True if the application shall be managed
@@ -36659,7 +38757,7 @@

programFi
Source:
@@ -36688,7 +38786,7 @@

Returns:
- name of "Program Files" + This
@@ -36699,7 +38797,7 @@
Returns:
-string +Managed
@@ -36717,7 +38815,7 @@
Returns:
-

run(userArguments) → {void}

+

withMemSize(memSize) → {Dosbox}

@@ -36725,7 +38823,8 @@

run - Runs a shortcut with the given user arguments + Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D @@ -36761,13 +38860,13 @@
Parameters:
- userArguments + memSize -array +int @@ -36777,7 +38876,7 @@
Parameters:
- The user arguments + The memory size @@ -36818,7 +38917,7 @@
Parameters:
Source:
@@ -36846,6 +38945,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -36854,7 +38957,7 @@
Returns:
-void +Dosbox
@@ -36872,13 +38975,17 @@
Returns:
-

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

+

withMode(mode) → {FontSmoothing}

+
+ Specifies the used font smoothing mode +
+ @@ -36900,12 +39007,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -36916,7 +39019,7 @@
Parameters:
- executable + mode @@ -36929,217 +39032,169 @@
Parameters:
- - - - - - - - - - - - - + "RGB", "BGR" or "Gray Scale" + + - - - args - - - - -array - - - - - - <optional>
- - +
- - - + - - - - [] - - - + - - + - - - workingDirectory - + - - - -string + + - - + - - - - <optional>
- + - + - - - + - - - - working container - - - + - - + +
Source:
+
+ - - - captureOutput - + + + +
+ - - - -boolean - - - - - - <optional>
- - - - - - - - - false - - - - - + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
- - - wait - - - - -boolean - - + - - - <optional>
- - + - - - + +

withMode(mode) → {GLSL}

+ - - - - false - - - + - - + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + - + - - - - - - + @@ -37180,7 +39235,7 @@
Parameters:
Source:
@@ -37209,7 +39264,7 @@
Returns:
- output + This
@@ -37220,7 +39275,7 @@
Returns:
-String +GLSL
@@ -37238,13 +39293,17 @@
Returns:
-

runInsidePrefix(executable, argsopt, waitopt)

+

withMode(mode) → {TakeFocus}

+
+ Specifies the mode +
+ @@ -37266,12 +39325,8 @@
Parameters:
- - - - @@ -37282,7 +39337,7 @@
Parameters:
- + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -37429,7 +39394,7 @@
Parameters:
Source:
@@ -37454,6 +39419,28 @@
Parameters:
+
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + @@ -37465,7 +39452,7 @@
Parameters:
- +

withMode(mode) → {DirectDrawRenderer}

@@ -37473,7 +39460,7 @@ - + + @@ -37566,7 +39553,7 @@
Parameters:
Source:
@@ -37595,7 +39582,7 @@
Returns:
- The WineShortcut object + This
@@ -37606,7 +39593,7 @@
Returns:
-WineShortcut +DirectDrawRenderer
@@ -37624,7 +39611,7 @@
Returns:
-

stop() → {void}

+

withRenderAspect(renderAspect) → {Dosbox}

@@ -37632,7 +39619,8 @@

stop - Stops the running shortcut + Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D @@ -37643,6 +39631,55 @@

stop +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
userDatamode -map +string - - <optional>
- - - - -
- - empty - - enabled or disabled
TypeAttributesDefaultDescription
executablemode @@ -37295,100 +39350,10 @@
Parameters:
- - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - - "Y" or "N"
searchmode @@ -37525,7 +39512,7 @@
Parameters:
-
The executable namegdi or opengl
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + @@ -37676,7 +39713,7 @@

stopSource:
@@ -37704,6 +39741,10 @@

stop + This + +
@@ -37712,7 +39753,7 @@
Returns:
-void +Dosbox
@@ -37730,13 +39771,17 @@
Returns:
-

system32directory() → {string}

+

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
@@ -37746,6 +39791,56 @@

syst +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + @@ -37778,7 +39873,7 @@

syst
Source:
@@ -37807,7 +39902,7 @@

Returns:
- system32 directory + This
@@ -37818,7 +39913,7 @@
Returns:
-string +Dosbox
@@ -37836,13 +39931,17 @@
Returns:
-

system64directory() → {string}

+

withScript(command) → {PlainInstaller}

+
+ Sets the installation script consisting of a lambda function +
+ @@ -37851,6 +39950,55 @@

syst +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
command + + +function + + + + The installation command
+ + @@ -37884,7 +40032,7 @@

syst
Source:
@@ -37913,7 +40061,7 @@

Returns:
- system64 directory + The PlainInstaller object
@@ -37924,7 +40072,7 @@
Returns:
-string +PlainInstaller
@@ -37942,7 +40090,7 @@
Returns:
-

to(localDestination) → {Downloader}

+

withSetting(key, value) → {Dosbox}

@@ -37950,7 +40098,7 @@

to - Sets the download destination + Sets a dosbox setting @@ -37986,7 +40134,7 @@
Parameters:
- localDestination + key @@ -38002,7 +40150,30 @@
Parameters:
- The destination of the download. If it is a directory, the file will be placed inside + The key of the setting (example dosbox_memsize) + + + + + + + value + + + + + +any + + + + + + + + + + The value to be set @@ -38043,7 +40214,7 @@
Parameters:
Source:
@@ -38072,7 +40243,7 @@
Returns:
- The Downloader object + This
@@ -38083,7 +40254,7 @@
Returns:
-Downloader +Dosbox
@@ -38101,7 +40272,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

withVersion(major, minor) → {OpenGL}

@@ -38109,7 +40280,7 @@

trustLevel<
- Sets the trust level + Specifies the major and minor versions
@@ -38145,13 +40316,13 @@

Parameters:
- trustLevel + major -string +number @@ -38161,7 +40332,30 @@
Parameters:
- The trust level + The major version + + + + + + + minor + + + + + +number + + + + + + + + + + The minor version @@ -38202,7 +40396,7 @@
Parameters:
Source:
@@ -38231,7 +40425,7 @@
Returns:
- The WineShortcut object + This
@@ -38242,7 +40436,7 @@
Returns:
-WineShortcut +OpenGL
@@ -38260,7 +40454,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

withWindowsVersion(version, servicePack) → {WindowsVersion}

@@ -38268,7 +40462,7 @@

trustLevel<
- set trust level + Specifies the default windows version
@@ -38304,7 +40498,7 @@

Parameters:
- trustlevel + version @@ -38320,7 +40514,30 @@
Parameters:
- + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31 + + + + + + + servicePack + + + + + +string + + + + + + + + + + e.g. sp3 @@ -38361,7 +40578,7 @@
Parameters:
Source:
@@ -38390,7 +40607,7 @@
Returns:
- QuickScript object + This
@@ -38401,7 +40618,7 @@
Returns:
-QuickScript +WindowsVersion
@@ -38419,7 +40636,7 @@
Returns:
-

type(type) → {WineShortcut}

+

wizard(wizard) → {Resource}

@@ -38427,7 +40644,7 @@

type - Sets the shortcut type + Sets the setup wizard @@ -38463,13 +40680,13 @@
Parameters:
- type + wizard -string +SetupWizard @@ -38479,7 +40696,7 @@
Parameters:
- The shortcut type + The setup wizard @@ -38520,7 +40737,7 @@
Parameters:
Source:
@@ -38549,7 +40766,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -38560,7 +40777,7 @@
Returns:
-WineShortcut +Resource
@@ -38578,7 +40795,173 @@
Returns:
-

uninstall(name) → {bool}

+

wizard(wizardopt) → {SetupWizard|Wine}

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

wizard(wizard) → {Downloader}

@@ -38586,7 +40969,7 @@

uninstall - uninstall application + Sets the setup wizard @@ -38622,13 +41005,13 @@
Parameters:
- name + wizard -string +SetupWizard @@ -38638,7 +41021,7 @@
Parameters:
- of the application which shall be uninstalled + The setup wizard @@ -38679,7 +41062,7 @@
Parameters:
Source:
@@ -38708,7 +41091,7 @@
Returns:
- true if an application has been uninstalled, false otherwise + The Downloader object
@@ -38719,7 +41102,7 @@
Returns:
-bool +Downloader
@@ -38732,21 +41115,48 @@
Returns:
- + -

uninstall() → {void}

+

+ +
+ + + + + + + +
+ +
+

default() → {boolean|Wine}

+ +
Plugin to manage the hdpi state
+ + +
+
+
+ + +

Constructor

+ + + +

new default() → {boolean|Wine}

+ + + -
- Uninstalls the shortcut -
@@ -38789,7 +41199,7 @@

uninstallSource:
@@ -38817,6 +41227,10 @@

uninstallReturns:

+
+ get: if is hdpi, set: Wine object +
+
@@ -38825,7 +41239,10 @@
Returns:
-void +boolean +| + +Wine
@@ -38837,13 +41254,33 @@
Returns:
+ +

+ + + + + + + + + + + + + + + + +

Methods

+ -

url(url) → {Downloader}

+

_createShortcut(prefixopt)

@@ -38851,7 +41288,7 @@

url - Sets the URL which shall be used for the download + creates shortcut @@ -38875,6 +41312,8 @@
Parameters:
Type + Attributes + @@ -38887,7 +41326,7 @@
Parameters:
- url + prefix @@ -38900,10 +41339,20 @@
Parameters:
+ + + <optional>
+ + + + + - The URL + + + prefix name @@ -38944,7 +41393,7 @@
Parameters:
Source:
@@ -38969,28 +41418,6 @@
Parameters:
-
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - @@ -39002,7 +41429,7 @@
Returns:
-

url(url) → {Resource}

+

_fetchFileNameFromUrl(url) → {string}

@@ -39010,7 +41437,7 @@

url - Sets the resource URL + Fetches the file name from an URL @@ -39103,7 +41530,7 @@
Parameters:
Source:
@@ -39132,7 +41559,7 @@
Returns:
- The Resource object + The file name
@@ -39143,7 +41570,7 @@
Returns:
-Resource +string
@@ -39161,7 +41588,7 @@
Returns:
-

wait() → {Wine}

+

algorithm(algorithm) → {Downloader}

@@ -39169,7 +41596,7 @@

wait - wait until wineserver finishes + Sets the algorithm which shall be used to verify the checksum @@ -39180,6 +41607,55 @@

wait + + + + Name + + + Type + + + + + + Description + + + + + + + + + algorithm + + + + + +string + + + + + + + + + + The checksum algorithm (e.g. "SHA") + + + + + + + @@ -39213,7 +41689,7 @@

waitSource:
@@ -39241,6 +41717,10 @@

wait + The Downloader object + +
@@ -39249,7 +41729,7 @@
Returns:
-Wine +Downloader
@@ -39267,13 +41747,17 @@
Returns:
-

winepath(pathopt) → {String}

+

algorithm(algorithm) → {Resource}

+
+ Sets the checksum algorithm +
+ @@ -39295,8 +41779,6 @@
Parameters:
Type - Attributes - @@ -39309,33 +41791,23 @@
Parameters:
- path + algorithm -String +string - - - <optional>
- - - - - - - - + The algorithm to verify the checksum (e.g. "SHA") @@ -39376,7 +41848,7 @@
Parameters:
Source:
@@ -39404,6 +41876,10 @@
Parameters:
Returns:
+
+ The Resource object +
+
@@ -39412,7 +41888,7 @@
Returns:
-String +Resource
@@ -39430,7 +41906,7 @@
Returns:
-

wineServer(wineserver)

+

application(application) → {AppResource}

@@ -39438,7 +41914,7 @@

wineServer<
- executes wineserver in current prefix + Sets the application containing the resources
@@ -39474,7 +41950,7 @@

Parameters:
- wineserver + application @@ -39490,7 +41966,7 @@
Parameters:
- parameter + The application with the resource @@ -39531,7 +42007,7 @@
Parameters:
Source:
@@ -39556,83 +42032,52 @@
Parameters:
- - - - +
Returns:
- - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function +
+ The AppResource object
+
+
+ Type +
+
+ +AppResource +
+
+ -
Parameters:
- - - - - - - - - + - + - - - + +

architecture() → {string}

+ - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - The installation command
+ @@ -39668,7 +42113,7 @@
Parameters:
Source:
@@ -39697,7 +42142,7 @@
Returns:
- The PlainInstaller object + architecture ("x86" or "amd64")
@@ -39708,7 +42153,7 @@
Returns:
-PlainInstaller +string
@@ -39726,7 +42171,7 @@
Returns:
-

wizard(wizard) → {Resource}

+

arguments(args) → {WineShortcut}

@@ -39734,7 +42179,7 @@

wizard - Sets the setup wizard + Sets the shortcut arguments

@@ -39770,13 +42215,13 @@
Parameters:
- wizard + args -SetupWizard +array @@ -39786,7 +42231,7 @@
Parameters:
- The setup wizard + The shortcut arguments @@ -39827,7 +42272,7 @@
Parameters:
Source:
@@ -39856,7 +42301,7 @@
Returns:
- The Resource object + The WineShortcut object
@@ -39867,7 +42312,7 @@
Returns:
-Resource +WineShortcut
@@ -39885,17 +42330,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

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

-
- Sets the setup wizard -
- @@ -39917,8 +42358,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -39929,23 +42374,39 @@
Parameters:
- wizard + architecture -SetupWizard +string + + + <optional>
+ + + + + + + + + + current architecture + + + - The setup wizard + @@ -39986,7 +42447,7 @@
Parameters:
Source:
@@ -40014,10 +42475,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -40026,7 +42483,7 @@
Returns:
-Downloader +Array.<string>
@@ -40044,7 +42501,7 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

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

@@ -40076,6 +42533,8 @@
Parameters:
+ Default + Description @@ -40086,13 +42545,13 @@
Parameters:
- wizard + distribution name -SetupWizard +string @@ -40111,6 +42570,12 @@
Parameters:
+ + + current distribution + + + @@ -40153,7 +42618,7 @@
Parameters:
Source:
@@ -40189,10 +42654,7 @@
Returns:
-SetupWizard -| - -Wine +Array.<string>
@@ -40205,147 +42667,12 @@
Returns:
- - - - - -

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

default()

- -
Setting to enable/disable Retina
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

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

Methods

- - -

_createShortcut(prefixopt)

+

binPath(subCategoryopt, versionopt) → {string}

@@ -40353,7 +42680,8 @@

_creat
- creates shortcut + returns the path to the engine binary directory +if no parameters are given, the Wine version of the current prefix is used
@@ -40391,7 +42719,7 @@

Parameters:
- prefix + subCategory @@ -40417,7 +42745,40 @@
Parameters:
- prefix name + Wine sub-category + + + + + + + version + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + Wine version @@ -40458,7 +42819,7 @@
Parameters:
Source:
@@ -40483,6 +42844,28 @@
Parameters:
+
Returns:
+ + +
+ path to "wine" binary +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -40494,7 +42877,7 @@
Parameters:
-

_fetchFileNameFromUrl(url) → {string}

+

category(category) → {WineShortcut}

@@ -40502,7 +42885,7 @@

- Fetches the file name from an URL + Sets the shortcut category
@@ -40538,7 +42921,7 @@

Parameters:
- url + category @@ -40554,7 +42937,7 @@
Parameters:
- The URL + The shortcut category @@ -40595,7 +42978,7 @@
Parameters:
Source:
@@ -40624,7 +43007,7 @@
Returns:
- The file name + The WineShortcut object
@@ -40635,7 +43018,7 @@
Returns:
-string +WineShortcut
@@ -40653,7 +43036,7 @@
Returns:
-

algorithm(algorithm) → {Resource}

+

checksum(checksum) → {Resource}

@@ -40661,7 +43044,7 @@

algorithm - Sets the checksum algorithm + Sets the checksum which shall be used to verify the resource @@ -40697,7 +43080,7 @@
Parameters:
- algorithm + checksum @@ -40713,7 +43096,7 @@
Parameters:
- The algorithm to verify the checksum (e.g. "SHA") + The checksum @@ -40754,7 +43137,7 @@
Parameters:
Source:
@@ -40812,7 +43195,7 @@
Returns:
-

algorithm(algorithm) → {Downloader}

+

checksum(checksum) → {Downloader}

@@ -40820,7 +43203,7 @@

algorithm - Sets the algorithm which shall be used to verify the checksum + Sets the checksum @@ -40856,7 +43239,7 @@
Parameters:
- algorithm + checksum @@ -40872,7 +43255,7 @@
Parameters:
- The checksum algorithm (e.g. "SHA") + The checksum which shall be used to verify the download @@ -40913,7 +43296,7 @@
Parameters:
Source:
@@ -40971,7 +43354,7 @@
Returns:
-

application(application) → {AppResource}

+

create() → {void}

@@ -40979,7 +43362,7 @@

applicatio
- Sets the application containing the resources + Creates a new shortcut
@@ -40990,55 +43373,6 @@

applicatio -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - @@ -41072,7 +43406,7 @@
Parameters:
Source:
@@ -41100,10 +43434,6 @@
Parameters:
Returns:
-
- The AppResource object -
-
@@ -41112,7 +43442,7 @@
Returns:
-AppResource +void
@@ -41130,13 +43460,17 @@
Returns:
-

architecture() → {string}

+

create() → {Wine}

+
+ runs "wineboot" +
+ @@ -41178,7 +43512,7 @@

architect
Source:
@@ -41207,7 +43541,7 @@

Returns:
- architecture ("x86" or "amd64") + The Wine object
@@ -41218,7 +43552,7 @@
Returns:
-string +Wine
@@ -41236,7 +43570,7 @@
Returns:
-

arguments(args) → {WineShortcut}

+

description(description) → {WineShortcut}

@@ -41244,7 +43578,7 @@

arguments - Sets the shortcut arguments + Sets the shortcut description @@ -41280,13 +43614,13 @@
Parameters:
- args + description -array +string @@ -41296,7 +43630,7 @@
Parameters:
- The shortcut arguments + The shortcut description @@ -41337,7 +43671,7 @@
Parameters:
Source:
@@ -41395,13 +43729,17 @@
Returns:
-

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

+

directory(directory) → {Resource}

+
+ Sets the directory inside the resources directory where the Resource is stored +
+ @@ -41423,12 +43761,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -41439,7 +43773,7 @@
Parameters:
- architecture + directory @@ -41452,26 +43786,10 @@
Parameters:
- - - <optional>
- - - - - - - - - - current architecture - - - - + The directory path @@ -41512,7 +43830,7 @@
Parameters:
Source:
@@ -41540,6 +43858,10 @@
Parameters:
Returns:
+
+ The Resource object +
+
@@ -41548,7 +43870,7 @@
Returns:
-Array.<string> +Resource
@@ -41566,88 +43888,23 @@
Returns:
-

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

- - - - - - - - - - - - - - -
Parameters:
+

dosConfigFile() → {string}

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string +
+ Fetch the prefix dosbox configuration file +
- -
- - <optional>
- - - -
- - current distribution - -
@@ -41683,7 +43940,7 @@
Parameters:
Source:
@@ -41711,6 +43968,10 @@
Parameters:
Returns:
+
+ The dosbox configuration file path +
+
@@ -41719,7 +43980,7 @@
Returns:
-Array.<string> +string
@@ -41737,7 +43998,7 @@
Returns:
-

binPath(subCategoryopt, versionopt) → {string}

+

download(setupWizard) → {String}

@@ -41745,8 +44006,7 @@

binPath - returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used + Download the setup resources in the same directory, and returns the path of the .exe @@ -41770,8 +44030,6 @@
Parameters:
Type - Attributes - @@ -41784,66 +44042,23 @@
Parameters:
- subCategory - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - Wine sub-category - - - - - - - version + setupWizard -string +SetupWizard - - - <optional>
- - - - - - - - Wine version + The setup wizard @@ -41884,7 +44099,7 @@
Parameters:
Source:
@@ -41913,7 +44128,7 @@
Returns:
- path to "wine" binary + The .exe file entry that can be used to continue the installation
@@ -41924,7 +44139,7 @@
Returns:
-string +String
@@ -41942,7 +44157,7 @@
Returns:
-

category(category) → {WineShortcut}

+

downloadFinished(wine) → {boolean}

@@ -41950,7 +44165,8 @@

category - Sets the shortcut category + Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first @@ -41986,13 +44202,13 @@
Parameters:
- category + wine -string +Wine @@ -42002,7 +44218,7 @@
Parameters:
- The shortcut category + The wine engine object @@ -42043,7 +44259,7 @@
Parameters:
Source:
@@ -42072,7 +44288,7 @@
Returns:
- The WineShortcut object + True if the download has finished, false otherwise
@@ -42083,7 +44299,7 @@
Returns:
-WineShortcut +boolean
@@ -42101,7 +44317,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

downloadStarted(wine) → {boolean}

@@ -42109,7 +44325,7 @@

checksum - Sets the checksum + Checks whether the software download has started @@ -42145,13 +44361,13 @@
Parameters:
- checksum + wine -string +Wine @@ -42161,7 +44377,7 @@
Parameters:
- The checksum which shall be used to verify the download + The wine engine object @@ -42202,7 +44418,7 @@
Parameters:
Source:
@@ -42231,7 +44447,7 @@
Returns:
- The Downloader object + True if the download has started, false otherwise
@@ -42242,7 +44458,7 @@
Returns:
-Downloader +boolean
@@ -42260,7 +44476,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

environment(environment) → {WineShortcut}

@@ -42268,7 +44484,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the shortcut environment variables @@ -42304,7 +44520,7 @@
Parameters:
- checksum + environment @@ -42320,7 +44536,7 @@
Parameters:
- The checksum + The environment variables @@ -42361,117 +44577,7 @@
Parameters:
Source:
- - - - - - - -

- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
@@ -42500,7 +44606,7 @@
Returns:
- The Wine object + The WineShortcut object
@@ -42511,113 +44617,7 @@
Returns:
-Wine - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void +WineShortcut
@@ -42635,7 +44635,7 @@
Returns:
-

description(description) → {WineShortcut}

+

environment(environment) → {QuickScript}

@@ -42643,7 +44643,7 @@

descriptio
- Sets the shortcut description + set environment
@@ -42679,7 +44679,7 @@

Parameters:
- description + environment @@ -42695,7 +44695,7 @@
Parameters:
- The shortcut description + variables @@ -42736,7 +44736,7 @@
Parameters:
Source:
@@ -42765,7 +44765,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -42776,7 +44776,7 @@
Returns:
-WineShortcut +QuickScript
@@ -42794,7 +44794,7 @@
Returns:
-

directory(directory) → {Resource}

+

executable(executable, args)

@@ -42802,7 +44802,7 @@

directory - Sets the directory inside the resources directory where the Resource is stored + set executable @@ -42838,23 +44838,36 @@
Parameters:
- directory + executable - -string + + + + executable without path (e.g. "Steam.exe") + + + + + + + args + + + + - The directory path + use array (e.g. ["-applaunch", 409160]) @@ -42895,7 +44908,7 @@
Parameters:
Source:
@@ -42920,28 +44933,6 @@
Parameters:
-
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - @@ -42953,16 +44944,13 @@
Returns:
-

download(setupWizard) → {String}

+

fontDirectory() → {string}

-
- Download the setup resources in the same directory, and returns the path of the .exe -
@@ -42972,56 +44960,6 @@

downloadParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - @@ -43054,7 +44992,7 @@
Parameters:
Source:
@@ -43083,7 +45021,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + font directory
@@ -43094,7 +45032,7 @@
Returns:
-String +string
@@ -43112,7 +45050,7 @@
Returns:
-

environment(environment) → {WineShortcut}

+

get(resourceName) → {Resource}

@@ -43120,7 +45058,7 @@

environmen
- Sets the shortcut environment variables + Returns the searched resource
@@ -43156,7 +45094,7 @@

Parameters:
- environment + resourceName @@ -43172,7 +45110,7 @@
Parameters:
- The environment variables + The name of the resource @@ -43213,7 +45151,7 @@
Parameters:
Source:
@@ -43242,7 +45180,7 @@
Returns:
- The WineShortcut object + The found resource
@@ -43253,7 +45191,7 @@
Returns:
-WineShortcut +Resource
@@ -43271,7 +45209,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

get() → {String}

@@ -43279,7 +45217,7 @@

environmen
- set environment + Gets the content of the downloaded file
@@ -43290,55 +45228,6 @@

environmen -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - @@ -43372,7 +45261,7 @@
Parameters:
Source:
@@ -43401,7 +45290,7 @@
Returns:
- QuickScript object + The content of downloaded file
@@ -43412,7 +45301,7 @@
Returns:
-QuickScript +String
@@ -43430,7 +45319,7 @@
Returns:
-

executable(executable, args)

+

get() → {string}

@@ -43438,7 +45327,7 @@

executable<
- set executable + Fetches the Resource and returns the path leading to the downloaded resource
@@ -43449,68 +45338,6 @@

executable< -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - @@ -43544,7 +45371,7 @@
Parameters:
Source:
@@ -43569,6 +45396,28 @@
Parameters:
+
Returns:
+ + +
+ The path leading to the downloaded resource +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -43580,13 +45429,17 @@
Parameters:
-

fontDirectory() → {string}

+

getContainer() → {string}

+
+ Returns the name of the container belonging to a shortcut +
+ @@ -43628,7 +45481,7 @@

fontDire
Source:
@@ -43657,7 +45510,7 @@

Returns:
- font directory + The container name
@@ -43686,7 +45539,7 @@
Returns:
-

get() → {string}

+

getSettings() → {object}

@@ -43694,7 +45547,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Fetch all prefix dosbox sttings @@ -43738,7 +45591,7 @@

getSource:
@@ -43767,7 +45620,7 @@
Returns:
- The path leading to the downloaded resource + All the settings
@@ -43778,9 +45631,168 @@
Returns:
+object + + +
+

+ + + + + + + + + + + + + +

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 + +
@@ -43796,7 +45808,7 @@
Returns:
-

get() → {String}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -43804,7 +45816,7 @@

get - Gets the content of the downloaded file + Sets the setup file(s) name so that the script can fetch it from gog.com @@ -43815,6 +45827,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileNames + + + + + +Array.<string> + + + + + + + + + + The setup file name(s) + + + + + + + @@ -43848,7 +45909,7 @@

getSource:
@@ -43877,7 +45938,7 @@
Returns:
- The content of downloaded file + This
@@ -43888,7 +45949,7 @@
Returns:
-String +GogScript
@@ -43906,7 +45967,7 @@
Returns:
-

get(resourceName) → {Resource}

+

headers(headers) → {Downloader}

@@ -43914,7 +45975,7 @@

get - Returns the searched resource + Sets the http headers @@ -43950,13 +46011,13 @@
Parameters:
- resourceName + headers -string +Object @@ -43966,7 +46027,7 @@
Parameters:
- The name of the resource + The http headers @@ -44007,7 +46068,7 @@
Parameters:
Source:
@@ -44036,7 +46097,7 @@
Returns:
- The found resource + The Downloader object
@@ -44047,7 +46108,7 @@
Returns:
-Resource +Downloader
@@ -44065,7 +46126,7 @@
Returns:
-

getContainer() → {string}

+

isHdpi() → {boolean}

@@ -44073,7 +46134,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Fetches whether hdpi is enabled or not
@@ -44117,7 +46178,7 @@

getContai
Source:
@@ -44146,7 +46207,7 @@

Returns:
- The container name + True if hdpi is enabled, false otherwise
@@ -44157,7 +46218,7 @@
Returns:
-string +boolean
@@ -44175,7 +46236,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

json() → {any}

@@ -44183,7 +46244,7 @@

gogSe
- Sets one setup file 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
@@ -44194,55 +46255,6 @@

gogSe -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - @@ -44276,7 +46288,7 @@
Parameters:
Source:
@@ -44305,7 +46317,7 @@
Returns:
- This + The json value
@@ -44316,7 +46328,7 @@
Returns:
-GogScript +any
@@ -44334,7 +46346,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

kill() → {Wine}

@@ -44342,7 +46354,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + kill wine server
@@ -44353,55 +46365,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -44435,7 +46398,7 @@
Parameters:
Source:
@@ -44463,10 +46426,6 @@
Parameters:
Returns:
-
- This -
-
@@ -44475,7 +46434,7 @@
Returns:
-GogScript +Wine
@@ -44493,7 +46452,7 @@
Returns:
-

headers(headers) → {Downloader}

+

loginToGog(setupWizard) → {GogScript}

@@ -44501,7 +46460,8 @@

headers - Sets the http headers + 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 @@ -44537,13 +46497,13 @@
Parameters:
- headers + setupWizard -Object +SetupWizard @@ -44553,7 +46513,7 @@
Parameters:
- The http headers + The setupWizard to use @@ -44594,7 +46554,7 @@
Parameters:
Source:
@@ -44623,7 +46583,7 @@
Returns:
- The Downloader object + This
@@ -44634,7 +46594,7 @@
Returns:
-Downloader +GogScript
@@ -44652,7 +46612,7 @@
Returns:
-

json() → {any}

+

message(message) → {Downloader}

@@ -44660,7 +46620,7 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Sets the download message text @@ -44671,114 +46631,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
message + + +string + + The download message
@@ -44814,7 +46713,7 @@

killSource:
@@ -44842,6 +46741,10 @@

kill + The Downloader object + +
@@ -44850,7 +46753,7 @@
Returns:
-Wine +Downloader
@@ -44868,7 +46771,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

miniature(miniatureopt)

@@ -44876,8 +46779,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 + get/set miniature (for the installation and the shortcut)
@@ -44901,6 +46803,8 @@

Parameters:
Type + Attributes + @@ -44913,23 +46817,33 @@
Parameters:
- setupWizard + miniature -SetupWizard +URI + + + <optional>
+ + + + + + + - The setupWizard to use + path to the miniature file @@ -44970,7 +46884,147 @@
Parameters:
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:
+
@@ -44999,7 +47053,7 @@
Returns:
- This + The WineShortcut object
@@ -45010,7 +47064,7 @@
Returns:
-GogScript +WineShortcut
@@ -45028,7 +47082,7 @@
Returns:
-

message(message) → {Downloader}

+

name(name) → {Resource}

@@ -45036,7 +47090,7 @@

message - Sets the download message text + Sets the resource name @@ -45072,7 +47126,7 @@
Parameters:
- message + name @@ -45088,7 +47142,7 @@
Parameters:
- The download message + The name of the resource @@ -45129,7 +47183,7 @@
Parameters:
Source:
@@ -45158,7 +47212,7 @@
Returns:
- The Downloader object + The Resource object
@@ -45169,7 +47223,7 @@
Returns:
-Downloader +Resource
@@ -45187,7 +47241,7 @@
Returns:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {WineShortcut}

@@ -45195,7 +47249,7 @@

miniature - Sets the miniature for the shortcut + Sets the shortcut name @@ -45231,16 +47285,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -45250,7 +47301,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The shortcut name @@ -45291,7 +47342,7 @@
Parameters:
Source:
@@ -45349,7 +47400,7 @@
Returns:
-

miniature(miniatureopt)

+

of(shortcut) → {void}

@@ -45357,7 +47408,7 @@

miniature - get/set miniature (for the installation and the shortcut) + Sets shortcut @@ -45381,8 +47432,6 @@
Parameters:
Type - Attributes - @@ -45395,33 +47444,23 @@
Parameters:
- miniature + shortcut -URI +string - - - <optional>
- - - - - - - - path to the miniature file + shortcut @@ -45462,7 +47501,7 @@
Parameters:
Source:
@@ -45487,6 +47526,24 @@
Parameters:
+
Returns:
+ + + + +
+
+ Type +
+
+ +void + + +
+
+ + @@ -45498,7 +47555,7 @@
Parameters:
-

name(name) → {Resource}

+

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

@@ -45506,7 +47563,7 @@

name - Sets the resource name + Specifies if the download shall be executed only if a newer version is available @@ -45542,13 +47599,13 @@
Parameters:
- name + onlyIfUpdateAvailable -string +boolean @@ -45558,7 +47615,7 @@
Parameters:
- The name of the resource + true the download shall be executed only if a newer version is available @@ -45599,7 +47656,7 @@
Parameters:
Source:
@@ -45628,7 +47685,7 @@
Returns:
- The Resource object + The Downloader object
@@ -45639,7 +47696,7 @@
Returns:
-Resource +Downloader
@@ -45657,17 +47714,13 @@
Returns:
-

name(name) → {WineShortcut}

+

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

-
- Sets the shortcut name -
- @@ -45689,6 +47742,8 @@
Parameters:
Type + Attributes + @@ -45701,7 +47756,7 @@
Parameters:
- name + prefix @@ -45714,10 +47769,119 @@
Parameters:
+ + + <optional>
+ + + + + + + - The shortcut name + + + + + + + + distribution + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + + + + + + + + architecture + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + + + + + + + + version + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + @@ -45758,7 +47922,7 @@
Parameters:
Source:
@@ -45786,10 +47950,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -45798,7 +47958,10 @@
Returns:
-WineShortcut +string +| + +Wine
@@ -45816,7 +47979,7 @@
Returns:
-

of(shortcut) → {void}

+

prefix(prefix) → {WineShortcut}

@@ -45824,7 +47987,7 @@

of - Sets shortcut + Sets the shortcut prefix @@ -45860,7 +48023,7 @@
Parameters:
- shortcut + prefix @@ -45876,7 +48039,7 @@
Parameters:
- shortcut + The shortcut prefix @@ -45917,7 +48080,7 @@
Parameters:
Source:
@@ -45945,6 +48108,10 @@
Parameters:
Returns:
+
+ The WineShortcut object +
+
@@ -45953,7 +48120,7 @@
Returns:
-void +WineShortcut
@@ -45971,7 +48138,7 @@
Returns:
-

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

+

prefixDirectory() → {string}

@@ -45979,7 +48146,7 @@

- Specifies if the download shall be executed only if a newer version is available + returns prefix directory
@@ -45990,55 +48157,6 @@

-

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - @@ -46072,7 +48190,7 @@
Parameters:
Source:
@@ -46100,10 +48218,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -46112,7 +48226,7 @@
Returns:
-Downloader +string
@@ -46130,17 +48244,13 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

programFiles() → {string}

-
- Sets the shortcut prefix -
- @@ -46149,60 +48259,11 @@

prefixParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
+
@@ -46231,7 +48292,7 @@
Parameters:
Source:
@@ -46260,7 +48321,7 @@
Returns:
- The WineShortcut object + name of "Program Files"
@@ -46271,7 +48332,7 @@
Returns:
-WineShortcut +string
@@ -46289,7 +48350,7 @@
Returns:
-

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

+

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

@@ -46321,6 +48382,8 @@
Parameters:
+ Default + Description @@ -46331,7 +48394,7 @@
Parameters:
- prefix + executable @@ -46346,8 +48409,6 @@
Parameters:
- <optional>
- @@ -46356,6 +48417,10 @@
Parameters:
+ + + + @@ -46364,13 +48429,13 @@
Parameters:
- distribution + args -string +array @@ -46389,6 +48454,12 @@
Parameters:
+ + + [] + + + @@ -46397,7 +48468,7 @@
Parameters:
- architecture + workingDirectory @@ -46422,6 +48493,12 @@
Parameters:
+ + + working container + + + @@ -46430,13 +48507,13 @@
Parameters:
- version + captureOutput -string +boolean @@ -46455,224 +48532,97 @@
Parameters:
+ + + false + + + - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - + + + wait - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - + + + +boolean - - + + - + + + + <optional>
+ - + - -
Source:
-
- + + + - + + + + false + + + - + + -
- - - - - - - + + + userData + + + + +map + + + + + + <optional>
+ + - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - + + - + + + + empty + + + - -

programFiles() → {string}

- + + - - - - - - - - - + + @@ -46708,7 +48658,7 @@

programFi
Source:
@@ -46737,7 +48687,7 @@

Returns:
- name of "Program Files" + output
@@ -46748,7 +48698,7 @@
Returns:
-string +String
@@ -46921,373 +48871,7 @@
Returns:
-

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 - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

+

runInsidePrefix(executable, argsopt, waitopt)

@@ -49210,7 +50794,7 @@
Returns:
-

wait() → {Wine}

+

wait() → {Wine}

@@ -49298,7 +50882,7 @@
Returns:
-Wine +Wine
@@ -49616,7 +51200,7 @@
Parameters:
-

withScript(command) → {PlainInstaller}

+

withApplicationWindowsVersion(application, os) → {WindowsVersion}

@@ -49624,7 +51208,7 @@

withScript<
- Sets the installation script consisting of a lambda function + Specifies the windows version for a given application
@@ -49660,13 +51244,13 @@

Parameters:
- command + application -function +string @@ -49676,7 +51260,30 @@
Parameters:
- The installation command + The application executable + + + + + + + os + + + + + +string + + + + + + + + + + The windows version @@ -49717,7 +51324,7 @@
Parameters:
Source:
@@ -49746,7 +51353,7 @@
Returns:
- The PlainInstaller object + This
@@ -49757,7 +51364,7 @@
Returns:
-PlainInstaller +WindowsVersion
@@ -49775,7 +51382,7 @@
Returns:
-

wizard(wizard) → {Resource}

+

withCpuCycles(cpuCycles) → {Dosbox}

@@ -49783,7 +51390,8 @@

wizard - Sets the setup wizard + Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D @@ -49819,13 +51427,13 @@
Parameters:
- wizard + cpuCycles -SetupWizard +int @@ -49835,7 +51443,7 @@
Parameters:
- The setup wizard + (example: max 95% limit 33000) @@ -49876,7 +51484,7 @@
Parameters:
Source:
@@ -49905,7 +51513,7 @@
Returns:
- The Resource object + This
@@ -49916,7 +51524,7 @@
Returns:
-Resource +Dosbox
@@ -49934,7 +51542,7 @@
Returns:
-

wizard(wizard) → {Downloader}

+

withDimensions(width, height) → {VirtualDesktop}

@@ -49942,7 +51550,7 @@

wizard - Sets the setup wizard + Specifies the dimensions of the virtual desktop @@ -49978,13 +51586,13 @@
Parameters:
- wizard + width -SetupWizard +number @@ -49994,7 +51602,30 @@
Parameters:
- The setup wizard + width of virtual desktop (in px) + + + + + + + height + + + + + +number + + + + + + + + + + height of virtual desktop (in px) @@ -50035,7 +51666,7 @@
Parameters:
Source:
@@ -50064,7 +51695,7 @@
Returns:
- The Downloader object + This
@@ -50075,7 +51706,7 @@
Returns:
-Downloader +VirtualDesktop
@@ -50093,13 +51724,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

withDriver(driver) → {SoundDriver}

+
+ Specifies the used sound driver +
+ @@ -50121,8 +51756,6 @@
Parameters:
Type - Attributes - @@ -50135,33 +51768,23 @@
Parameters:
- wizard + driver -SetupWizard +string - - - <optional>
- - - - - - - - + alsa or pulse @@ -50202,7 +51825,7 @@
Parameters:
Source:
@@ -50230,6 +51853,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -50238,10 +51865,7 @@
Returns:
-SetupWizard -| - -Wine +SoundDriver
@@ -50254,55 +51878,77 @@
Returns:
+ + +

withExtension(extension) → {NativeApplication}

+ -

-
+
+ Specifies the file extension +
-
-
+ + + +
Parameters:
-

default()

+ + + + -
Setting to configure mouse warp override
+ - - -
-
- +
+ - -

Constructor

- + - -

new default()

- + + + + + + + + + + + + + - + + +
NameTypeDescription
extension + + +string + + The file extension (pdf, txt, rtf)
@@ -50338,7 +51984,7 @@

new defaultSource:
@@ -50363,30 +52009,32 @@

new defaultReturns:

+ +
+ This +
+
+
+ Type +
+
+ +NativeApplication - - - - - - - +
+
- - - - -

Methods

@@ -50394,7 +52042,7 @@

Methods

-

_createShortcut(prefixopt)

+

withHdpi(hdpi) → {HDPI}

@@ -50402,7 +52050,7 @@

_creat
- creates shortcut + Specifies whether hdpi should be enabled or not
@@ -50426,8 +52074,6 @@

Parameters:
Type - Attributes - @@ -50440,33 +52086,23 @@
Parameters:
- prefix + hdpi -string +boolean - - - <optional>
- - - - - - - - prefix name + true if hdpi shall be enabled @@ -50507,7 +52143,7 @@
Parameters:
Source:
@@ -50532,6 +52168,28 @@
Parameters:
+
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + @@ -50543,7 +52201,7 @@
Parameters:
-

_fetchFileNameFromUrl(url) → {string}

+

withManaged(managed) → {Managed}

@@ -50551,7 +52209,7 @@

- Fetches the file name from an URL + Specifies the global managed state
@@ -50587,13 +52245,13 @@

Parameters:
- url + managed -string +boolean @@ -50603,7 +52261,7 @@
Parameters:
- The URL + True if it shall be managed @@ -50644,7 +52302,7 @@
Parameters:
Source:
@@ -50673,7 +52331,7 @@
Returns:
- The file name + This
@@ -50684,7 +52342,7 @@
Returns:
-string +Managed
@@ -50702,7 +52360,7 @@
Returns:
-

algorithm(algorithm) → {Resource}

+

withManagedApplication(application, managed) → {Managed}

@@ -50710,7 +52368,7 @@

algorithm - Sets the checksum algorithm + Specifies the managed state for a given application @@ -50746,7 +52404,7 @@
Parameters:
- algorithm + application @@ -50762,7 +52420,30 @@
Parameters:
- The algorithm to verify the checksum (e.g. "SHA") + The application + + + + + + + managed + + + + + +boolean + + + + + + + + + + True if the application shall be managed @@ -50803,7 +52484,7 @@
Parameters:
Source:
@@ -50832,7 +52513,7 @@
Returns:
- The Resource object + This
@@ -50843,7 +52524,7 @@
Returns:
-Resource +Managed
@@ -50861,7 +52542,7 @@
Returns:
-

algorithm(algorithm) → {Downloader}

+

withMemSize(memSize) → {Dosbox}

@@ -50869,7 +52550,8 @@

algorithm - Sets the algorithm which shall be used to verify the checksum + Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D @@ -50905,13 +52587,13 @@
Parameters:
- algorithm + memSize -string +int @@ -50921,7 +52603,7 @@
Parameters:
- The checksum algorithm (e.g. "SHA") + The memory size @@ -50962,7 +52644,7 @@
Parameters:
Source:
@@ -50991,7 +52673,7 @@
Returns:
- The Downloader object + This
@@ -51002,7 +52684,7 @@
Returns:
-Downloader +Dosbox
@@ -51020,7 +52702,7 @@
Returns:
-

application(application) → {AppResource}

+

withMode(mode) → {FontSmoothing}

@@ -51028,7 +52710,7 @@

applicatio
- Sets the application containing the resources + Specifies the used font smoothing mode
@@ -51064,7 +52746,7 @@

Parameters:
- application + mode @@ -51080,7 +52762,7 @@
Parameters:
- The application with the resource + "RGB", "BGR" or "Gray Scale" @@ -51121,7 +52803,7 @@
Parameters:
Source:
@@ -51150,113 +52832,7 @@
Returns:
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") + This
@@ -51267,7 +52843,7 @@
Returns:
-string +FontSmoothing
@@ -51285,7 +52861,7 @@
Returns:
-

arguments(args) → {WineShortcut}

+

withMode(mode) → {GLSL}

@@ -51293,7 +52869,7 @@

arguments - Sets the shortcut arguments + Specifies the mode @@ -51329,13 +52905,13 @@
Parameters:
- args + mode -array +string @@ -51345,7 +52921,7 @@
Parameters:
- The shortcut arguments + enabled or disabled @@ -51386,7 +52962,7 @@
Parameters:
Source:
@@ -51415,7 +52991,7 @@
Returns:
- The WineShortcut object + This
@@ -51426,7 +53002,7 @@
Returns:
-WineShortcut +GLSL
@@ -51444,13 +53020,17 @@
Returns:
-

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

+

withMode(mode) → {TakeFocus}

+
+ Specifies the mode +
+ @@ -51472,12 +53052,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -51488,7 +53064,7 @@
Parameters:
- architecture + mode @@ -51501,26 +53077,10 @@
Parameters:
- - - <optional>
- - - - - - - - - - current architecture - - - - + "Y" or "N" @@ -51561,7 +53121,7 @@
Parameters:
Source:
@@ -51589,6 +53149,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -51597,7 +53161,7 @@
Returns:
-Array.<string> +TakeFocus
@@ -51615,13 +53179,17 @@
Returns:
-

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

+

withMode(mode) → {DirectDrawRenderer}

+
+ Selects the used direct draw mode (either gdi or opengl) +
+ @@ -51643,12 +53211,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -51659,7 +53223,7 @@
Parameters:
- distribution name + mode @@ -51672,26 +53236,10 @@
Parameters:
- - - <optional>
- - - - - - - - - - current distribution - - - - + gdi or opengl @@ -51732,7 +53280,7 @@
Parameters:
Source:
@@ -51760,6 +53308,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -51768,7 +53320,7 @@
Returns:
-Array.<string> +DirectDrawRenderer
@@ -51786,7 +53338,7 @@
Returns:
-

binPath(subCategoryopt, versionopt) → {string}

+

withRenderAspect(renderAspect) → {Dosbox}

@@ -51794,8 +53346,8 @@

binPath - returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used + Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D @@ -51819,8 +53371,6 @@
Parameters:
Type - Attributes - @@ -51833,66 +53383,23 @@
Parameters:
- subCategory - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - Wine sub-category - - - - - - - version + renderAspect -string +boolean - - - <optional>
- - - - - - - - Wine version + The render aspect @@ -51933,7 +53440,7 @@
Parameters:
Source:
@@ -51962,7 +53469,7 @@
Returns:
- path to "wine" binary + This
@@ -51973,7 +53480,7 @@
Returns:
-string +Dosbox
@@ -51991,7 +53498,7 @@
Returns:
-

category(category) → {WineShortcut}

+

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

@@ -51999,7 +53506,8 @@

category - Sets the shortcut category + Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D @@ -52035,13 +53543,13 @@
Parameters:
- category + renderFrameSkip -string +int @@ -52051,7 +53559,7 @@
Parameters:
- The shortcut category + The render frameskip @@ -52092,7 +53600,7 @@
Parameters:
Source:
@@ -52121,7 +53629,7 @@
Returns:
- The WineShortcut object + This
@@ -52132,7 +53640,7 @@
Returns:
-WineShortcut +Dosbox
@@ -52150,7 +53658,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

withScript(command) → {PlainInstaller}

@@ -52158,7 +53666,7 @@

checksum - Sets the checksum + Sets the installation script consisting of a lambda function @@ -52194,13 +53702,13 @@
Parameters:
- checksum + command -string +function @@ -52210,7 +53718,7 @@
Parameters:
- The checksum which shall be used to verify the download + The installation command @@ -52251,7 +53759,7 @@
Parameters:
Source:
@@ -52280,7 +53788,7 @@
Returns:
- The Downloader object + The PlainInstaller object
@@ -52291,7 +53799,7 @@
Returns:
-Downloader +PlainInstaller
@@ -52309,7 +53817,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

withSetting(key, value) → {Dosbox}

@@ -52317,7 +53825,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets a dosbox setting @@ -52353,7 +53861,7 @@
Parameters:
- checksum + key @@ -52369,122 +53877,35 @@
Parameters:
- The checksum + The key of the setting (example dosbox_memsize) - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - + + + value + + + + +any + + - - + - -

create() → {Wine}

- + The value to be set + - - - -
- runs "wineboot" -
- - - - - - - + + @@ -52520,7 +53941,7 @@

createSource:
@@ -52549,124 +53970,18 @@
Returns:
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut + This
- - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - -
Type
-void +Dosbox
@@ -52684,7 +53999,7 @@
Returns:
-

description(description) → {WineShortcut}

+

withVersion(major, minor) → {OpenGL}

@@ -52692,7 +54007,7 @@

descriptio
- Sets the shortcut description + Specifies the major and minor versions
@@ -52728,13 +54043,13 @@

Parameters:
- description + major -string +number @@ -52744,7 +54059,30 @@
Parameters:
- The shortcut description + The major version + + + + + + + minor + + + + + +number + + + + + + + + + + The minor version @@ -52785,7 +54123,7 @@
Parameters:
Source:
@@ -52814,7 +54152,7 @@
Returns:
- The WineShortcut object + This
@@ -52825,7 +54163,7 @@
Returns:
-WineShortcut +OpenGL
@@ -52843,7 +54181,7 @@
Returns:
-

directory(directory) → {Resource}

+

withWindowsVersion(version, servicePack) → {WindowsVersion}

@@ -52851,7 +54189,7 @@

directory - Sets the directory inside the resources directory where the Resource is stored + Specifies the default windows version @@ -52887,7 +54225,7 @@
Parameters:
- directory + version @@ -52903,7 +54241,30 @@
Parameters:
- The directory path + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31 + + + + + + + servicePack + + + + + +string + + + + + + + + + + e.g. sp3 @@ -52944,7 +54305,7 @@
Parameters:
Source:
@@ -52973,7 +54334,7 @@
Returns:
- The Resource object + This
@@ -52984,7 +54345,7 @@
Returns:
-Resource +WindowsVersion
@@ -53002,7 +54363,7 @@
Returns:
-

download(setupWizard) → {String}

+

wizard(wizard) → {Resource}

@@ -53010,7 +54371,7 @@

download - Download the setup resources in the same directory, and returns the path of the .exe + Sets the setup wizard @@ -53046,7 +54407,7 @@
Parameters:
- setupWizard + wizard @@ -53103,7 +54464,7 @@
Parameters:
Source:
@@ -53132,7 +54493,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + The Resource object
@@ -53143,7 +54504,7 @@
Returns:
-String +Resource
@@ -53161,17 +54522,13 @@
Returns:
-

environment(environment) → {WineShortcut}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the shortcut environment variables -
- @@ -53193,6 +54550,8 @@
Parameters:
Type + Attributes + @@ -53205,23 +54564,33 @@
Parameters:
- environment + wizard -string +SetupWizard + + + <optional>
+ + + + + + + - The environment variables + @@ -53262,7 +54631,7 @@
Parameters:
Source:
@@ -53290,10 +54659,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -53302,7 +54667,10 @@
Returns:
-WineShortcut +SetupWizard +| + +Wine
@@ -53320,7 +54688,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

wizard(wizard) → {Downloader}

@@ -53328,7 +54696,7 @@

environmen
- set environment + Sets the setup wizard
@@ -53364,13 +54732,13 @@

Parameters:
- environment + wizard -string +SetupWizard @@ -53380,7 +54748,7 @@
Parameters:
- variables + The setup wizard @@ -53421,7 +54789,7 @@
Parameters:
Source:
@@ -53450,7 +54818,7 @@
Returns:
- QuickScript object + The Downloader object
@@ -53461,7 +54829,7 @@
Returns:
-QuickScript +Downloader
@@ -53474,12 +54842,147 @@
Returns:
+ + + + + + + +

+ + + + + + + +
+ +
+ +

default()

+ +
Plugin to add extra settings to dos_support wine builds
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new default()

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

Methods

+ + -

executable(executable, args)

+

_createShortcut(prefixopt)

@@ -53487,7 +54990,7 @@

executable<
- set executable + creates shortcut
@@ -53511,6 +55014,8 @@

Parameters:
Type + Attributes + @@ -53523,36 +55028,33 @@
Parameters:
- executable + prefix - + +string - + - executable without path (e.g. "Steam.exe") - - - - - - - args + + + <optional>
+ - - - + + + - use array (e.g. ["-applaunch", 409160]) + prefix name @@ -53593,7 +55095,7 @@
Parameters:
Source:
@@ -53629,13 +55131,16 @@
Parameters:
-

fontDirectory() → {string}

+

_fetchFileNameFromUrl(url) → {string}

+
+ Fetches the file name from an URL +
@@ -53645,6 +55150,56 @@

fontDire +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
url + + +string + + + + The URL
+ + + @@ -53677,7 +55232,7 @@

fontDire
Source:
@@ -53706,7 +55261,7 @@

Returns:
- font directory + The file name
@@ -53735,7 +55290,7 @@
Returns:
-

get() → {string}

+

algorithm(algorithm) → {Downloader}

@@ -53743,7 +55298,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Sets the algorithm which shall be used to verify the checksum @@ -53754,6 +55309,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + algorithm + + + + + +string + + + + + + + + + + The checksum algorithm (e.g. "SHA") + + + + + + + @@ -53787,7 +55391,7 @@

getSource:
@@ -53816,7 +55420,7 @@
Returns:
- The path leading to the downloaded resource + The Downloader object
@@ -53827,7 +55431,7 @@
Returns:
-string +Downloader
@@ -53845,7 +55449,7 @@
Returns:
-

get() → {String}

+

algorithm(algorithm) → {Resource}

@@ -53853,7 +55457,7 @@

get - Gets the content of the downloaded file + Sets the checksum algorithm @@ -53864,6 +55468,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + algorithm + + + + + +string + + + + + + + + + + The algorithm to verify the checksum (e.g. "SHA") + + + + + + + @@ -53897,7 +55550,7 @@

getSource:
@@ -53926,7 +55579,7 @@
Returns:
- The content of downloaded file + The Resource object
@@ -53937,7 +55590,7 @@
Returns:
-String +Resource
@@ -53955,7 +55608,7 @@
Returns:
-

get(resourceName) → {Resource}

+

application(application) → {AppResource}

@@ -53963,7 +55616,7 @@

get - Returns the searched resource + Sets the application containing the resources @@ -53999,7 +55652,7 @@
Parameters:
- resourceName + application @@ -54015,7 +55668,7 @@
Parameters:
- The name of the resource + The application with the resource @@ -54056,7 +55709,7 @@
Parameters:
Source:
@@ -54085,7 +55738,7 @@
Returns:
- The found resource + The AppResource object
@@ -54096,7 +55749,7 @@
Returns:
-Resource +AppResource
@@ -54114,17 +55767,13 @@
Returns:
-

getContainer() → {string}

+

architecture() → {string}

-
- Returns the name of the container belonging to a shortcut -
- @@ -54166,7 +55815,7 @@

getContai
Source:
@@ -54195,7 +55844,7 @@

Returns:
- The container name + architecture ("x86" or "amd64")
@@ -54224,7 +55873,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

arguments(args) → {WineShortcut}

@@ -54232,7 +55881,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the shortcut arguments
@@ -54268,13 +55917,13 @@

Parameters:
- setupFileName + args -string +array @@ -54284,7 +55933,7 @@
Parameters:
- The setup file name + The shortcut arguments @@ -54325,7 +55974,7 @@
Parameters:
Source:
@@ -54354,7 +56003,7 @@
Returns:
- This + The WineShortcut object
@@ -54365,7 +56014,7 @@
Returns:
-GogScript +WineShortcut
@@ -54383,17 +56032,13 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

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

-
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- @@ -54415,8 +56060,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -54427,23 +56076,39 @@
Parameters:
- setupFileNames + architecture -Array.<string> +string + + + <optional>
+ + + + + + + + + + current architecture + + + - The setup file name(s) + @@ -54484,7 +56149,7 @@
Parameters:
Source:
@@ -54512,10 +56177,6 @@
Parameters:
Returns:
-
- This -
-
@@ -54524,7 +56185,7 @@
Returns:
-GogScript +Array.<string>
@@ -54542,17 +56203,13 @@
Returns:
-

headers(headers) → {Downloader}

+

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

-
- Sets the http headers -
- @@ -54574,8 +56231,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -54586,23 +56247,39 @@
Parameters:
- headers + distribution name -Object +string + + + <optional>
+ + + + + - The http headers + + + + current distribution + + + + + @@ -54643,7 +56320,7 @@
Parameters:
Source:
@@ -54671,10 +56348,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -54683,7 +56356,7 @@
Returns:
-Downloader +Array.<string>
@@ -54701,7 +56374,7 @@
Returns:
-

json() → {any}

+

binPath(subCategoryopt, versionopt) → {string}

@@ -54709,7 +56382,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + returns the path to the engine binary directory +if no parameters are given, the Wine version of the current prefix is used @@ -54720,6 +56394,100 @@

json + + + + Name + + + Type + + + Attributes + + + + + Description + + + + + + + + + subCategory + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + Wine sub-category + + + + + + + version + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + Wine version + + + + + + + @@ -54753,7 +56521,7 @@

jsonSource:
@@ -54782,7 +56550,7 @@
Returns:
- The json value + path to "wine" binary
@@ -54793,7 +56561,7 @@
Returns:
-any +string
@@ -54811,7 +56579,7 @@
Returns:
-

kill() → {Wine}

+

category(category) → {WineShortcut}

@@ -54819,7 +56587,7 @@

kill - kill wine server + Sets the shortcut category @@ -54830,6 +56598,55 @@

kill + + + + Name + + + Type + + + + + + Description + + + + + + + + + category + + + + + +string + + + + + + + + + + The shortcut category + + + + + + + @@ -54863,7 +56680,7 @@

killSource:
@@ -54891,6 +56708,10 @@

kill + The WineShortcut object + +
@@ -54899,7 +56720,7 @@
Returns:
-Wine +WineShortcut
@@ -54917,7 +56738,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

checksum(checksum) → {Resource}

@@ -54925,8 +56746,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 checksum which shall be used to verify the resource
@@ -54962,13 +56782,13 @@

Parameters:
- setupWizard + checksum -SetupWizard +string @@ -54978,7 +56798,7 @@
Parameters:
- The setupWizard to use + The checksum @@ -55019,7 +56839,7 @@
Parameters:
Source:
@@ -55048,7 +56868,7 @@
Returns:
- This + The Resource object
@@ -55059,7 +56879,7 @@
Returns:
-GogScript +Resource
@@ -55077,7 +56897,7 @@
Returns:
-

message(message) → {Downloader}

+

checksum(checksum) → {Downloader}

@@ -55085,7 +56905,7 @@

message - Sets the download message text + Sets the checksum @@ -55121,7 +56941,7 @@
Parameters:
- message + checksum @@ -55137,7 +56957,7 @@
Parameters:
- The download message + The checksum which shall be used to verify the download @@ -55178,7 +56998,7 @@
Parameters:
Source:
@@ -55236,7 +57056,7 @@
Returns:
-

miniature(miniature) → {WineShortcut}

+

create() → {void}

@@ -55244,7 +57064,7 @@

miniature - Sets the miniature for the shortcut + Creates a new shortcut @@ -55255,58 +57075,6 @@

miniatureParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - @@ -55340,7 +57108,113 @@
Parameters:
Source:
+ + + + + + + +

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

create() → {Wine}

+ + + + + + +
+ runs "wineboot" +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -55369,7 +57243,7 @@
Returns:
- The WineShortcut object + The Wine object
@@ -55380,7 +57254,7 @@
Returns:
-WineShortcut +Wine
@@ -55398,7 +57272,7 @@
Returns:
-

miniature(miniatureopt)

+

description(description) → {WineShortcut}

@@ -55406,7 +57280,7 @@

miniature - get/set miniature (for the installation and the shortcut) + Sets the shortcut description @@ -55430,8 +57304,6 @@
Parameters:
Type - Attributes - @@ -55444,33 +57316,23 @@
Parameters:
- miniature + description -URI +string - - - <optional>
- - - - - - - - path to the miniature file + The shortcut description @@ -55511,7 +57373,7 @@
Parameters:
Source:
@@ -55536,6 +57398,28 @@
Parameters:
+
Returns:
+ + +
+ The WineShortcut object +
+ + + +
+
+ Type +
+
+ +WineShortcut + + +
+
+ + @@ -55547,7 +57431,7 @@
Parameters:
-

name(name) → {Resource}

+

directory(directory) → {Resource}

@@ -55555,7 +57439,7 @@

name - Sets the resource name + Sets the directory inside the resources directory where the Resource is stored @@ -55591,7 +57475,7 @@
Parameters:
- name + directory @@ -55607,7 +57491,7 @@
Parameters:
- The name of the resource + The directory path @@ -55648,7 +57532,7 @@
Parameters:
Source:
@@ -55706,7 +57590,7 @@
Returns:
-

name(name) → {WineShortcut}

+

dosConfigFile() → {string}

@@ -55714,7 +57598,117 @@

name - Sets the shortcut name + Fetch the prefix dosbox configuration file + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

download(setupWizard) → {String}

+ + + + + + +
+ Download the setup resources in the same directory, and returns the path of the .exe
@@ -55750,13 +57744,13 @@
Parameters:
- name + setupWizard -string +SetupWizard @@ -55766,7 +57760,7 @@
Parameters:
- The shortcut name + The setup wizard @@ -55807,7 +57801,7 @@
Parameters:
Source:
@@ -55836,7 +57830,7 @@
Returns:
- The WineShortcut object + The .exe file entry that can be used to continue the installation
@@ -55847,7 +57841,7 @@
Returns:
-WineShortcut +String
@@ -55865,7 +57859,7 @@
Returns:
-

of(shortcut) → {void}

+

downloadFinished(wine) → {boolean}

@@ -55873,7 +57867,8 @@

of - Sets shortcut + Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first @@ -55909,13 +57904,13 @@
Parameters:
- shortcut + wine -string +Wine @@ -55925,7 +57920,7 @@
Parameters:
- shortcut + The wine engine object @@ -55966,7 +57961,7 @@
Parameters:
Source:
@@ -55994,6 +57989,10 @@
Parameters:
Returns:
+
+ True if the download has finished, false otherwise +
+
@@ -56002,7 +58001,7 @@
Returns:
-void +boolean
@@ -56020,7 +58019,7 @@
Returns:
-

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

+

downloadStarted(wine) → {boolean}

@@ -56028,7 +58027,7 @@

- Specifies if the download shall be executed only if a newer version is available + Checks whether the software download has started
@@ -56064,13 +58063,13 @@

Parameters:
- onlyIfUpdateAvailable + wine -boolean +Wine @@ -56080,7 +58079,7 @@
Parameters:
- true the download shall be executed only if a newer version is available + The wine engine object @@ -56121,7 +58120,7 @@
Parameters:
Source:
@@ -56150,7 +58149,7 @@
Returns:
- The Downloader object + True if the download has started, false otherwise
@@ -56161,7 +58160,7 @@
Returns:
-Downloader +boolean
@@ -56179,7 +58178,7 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

environment(environment) → {WineShortcut}

@@ -56187,7 +58186,7 @@

prefix - Sets the shortcut prefix + Sets the shortcut environment variables @@ -56223,7 +58222,7 @@
Parameters:
- prefix + environment @@ -56239,7 +58238,7 @@
Parameters:
- The shortcut prefix + The environment variables @@ -56280,7 +58279,7 @@
Parameters:
Source:
@@ -56338,13 +58337,17 @@
Returns:
-

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

+

environment(environment) → {QuickScript}

+
+ set environment +
+ @@ -56366,8 +58369,6 @@
Parameters:
Type - Attributes - @@ -56380,106 +58381,7 @@
Parameters:
- prefix - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - distribution - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - architecture - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - version + environment @@ -56492,20 +58394,10 @@
Parameters:
- - - <optional>
- - - - - - - - + variables @@ -56546,7 +58438,7 @@
Parameters:
Source:
@@ -56574,6 +58466,10 @@
Parameters:
Returns:
+
+ QuickScript object +
+
@@ -56582,10 +58478,7 @@
Returns:
-string -| - -Wine +QuickScript
@@ -56603,7 +58496,7 @@
Returns:
-

prefixDirectory() → {string}

+

executable(executable, args)

@@ -56611,7 +58504,7 @@

prefix
- returns prefix directory + set executable
@@ -56622,6 +58515,68 @@

prefix +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
executable + + executable without path (e.g. "Steam.exe")
args + + use array (e.g. ["-applaunch", 409160])
+ + @@ -56655,7 +58610,7 @@

prefix
Source:
@@ -56680,24 +58635,6 @@

prefix -

Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - @@ -56709,7 +58646,7 @@
Returns:
-

programFiles() → {string}

+

fontDirectory() → {string}

@@ -56757,7 +58694,7 @@

programFi
Source:
@@ -56786,7 +58723,7 @@

Returns:
- name of "Program Files" + font directory
@@ -56815,7 +58752,7 @@
Returns:
-

run(userArguments) → {void}

+

get(resourceName) → {Resource}

@@ -56823,7 +58760,7 @@

run - Runs a shortcut with the given user arguments + Returns the searched resource @@ -56859,13 +58796,13 @@
Parameters:
- userArguments + resourceName -array +string @@ -56875,7 +58812,7 @@
Parameters:
- The user arguments + The name of the resource @@ -56916,7 +58853,7 @@
Parameters:
Source:
@@ -56944,6 +58881,10 @@
Parameters:
Returns:
+
+ The found resource +
+
@@ -56952,7 +58893,7 @@
Returns:
-void +Resource
@@ -56970,13 +58911,16 @@
Returns:
-

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

+

get() → {String}

+
+ Gets the content of the downloaded file +
@@ -56985,264 +58929,115 @@

run - - - - Name - - Type - - Attributes - - - Default - - Description - - +
- - - - executable - - - - - -string - - - - - - - - - - + - - - + - - - - - + - - + - - - args - + - - - -array + + - - + - - - - <optional>
- + - + - - - + +
Source:
+
+ - - - - [] - - - + - - + +
- - - workingDirectory - - - - -string - - - - - - <optional>
- - - - - - - - - working container - - - - - - - - - captureOutput - - - - -boolean - - - - - - <optional>
- +
Returns:
- + +
+ The content of downloaded file +
- - - - - - - false - - - - - +
+
+ Type +
+
+ +String - - - - wait - +
+
- - - -boolean + - - - - - - <optional>
- - - - + - - - - false - - - + - - + +

get() → {string}

+ - - - userData - - - - -map +
+ Fetches the Resource and returns the path leading to the downloaded resource +
- - - - - - <optional>
- - - - - - - - - empty - - - - - - - - @@ -57278,7 +59073,7 @@
Parameters:
Source:
@@ -57307,7 +59102,7 @@
Returns:
- output + The path leading to the downloaded resource
@@ -57318,7 +59113,7 @@
Returns:
-String +string
@@ -57336,13 +59131,16 @@
Returns:
-

runInsidePrefix(executable, argsopt, waitopt)

+

getContainer() → {string}

+
+ Returns the name of the container belonging to a shortcut +
@@ -57351,147 +59149,115 @@

runIns -

Parameters:
- - - - - - - - - - - - - - - - - +
-
- - - - + - + - - - + - - - + - - + - - - - + - + - - - - - - - - - - - - - - - - - - - + + +
Returns:
+ + +
+ The container name +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + - - + - -
NameTypeAttributesDefaultDescription
executable - - -string + + - - - + - + - - - -
args - - -array + +
Source:
+
+ + - -
- - <optional>
- + + - - -
- - [] - -
wait - - -boolean - - - - <optional>
- - - -
- - false - -
+

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + @@ -57527,7 +59293,7 @@
Parameters:
Source:
@@ -57552,6 +59318,28 @@
Parameters:
+
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + @@ -57563,7 +59351,7 @@
Parameters:
- +

gogSetupFileName(setupFileName) → {GogScript}

@@ -57571,7 +59359,7 @@

- - -
- Specifies if the download shall be executed only if a newer version is available -
- +
@@ -66087,54 +68559,40 @@

+
-
Parameters:
+
- - - - +

default()

- +
Plugin to force the Font smoothing
+ + - - +
+
+ - + +

Constructor

+ -
- - + +

new default()

+ - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - true the download shall be executed only if a newer version is available
+ @@ -66170,7 +68628,7 @@
Parameters:
Source:
@@ -66195,32 +68653,30 @@
Parameters:
-
Returns:
- -
- The Downloader object -
-
-
- Type -
-
- -Downloader + + -
-
+ + + + + + + + + +

Methods

@@ -66228,7 +68684,7 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

_createShortcut(prefixopt)

@@ -66236,7 +68692,7 @@

prefix - Sets the shortcut prefix + creates shortcut @@ -66260,6 +68716,8 @@
Parameters:
Type + Attributes + @@ -66285,10 +68743,20 @@
Parameters:
+ + + <optional>
+ + + + + - The shortcut prefix + + + prefix name @@ -66329,7 +68797,7 @@
Parameters:
Source:
@@ -66354,28 +68822,6 @@
Parameters:
-
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - @@ -66387,13 +68833,17 @@
Returns:
-

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

+

_fetchFileNameFromUrl(url) → {string}

+
+ Fetches the file name from an URL +
+ @@ -66415,8 +68865,6 @@
Parameters:
Type - Attributes - @@ -66429,106 +68877,7 @@
Parameters:
- prefix - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - distribution - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - architecture - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - version + url @@ -66541,20 +68890,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The URL @@ -66595,7 +68934,7 @@
Parameters:
Source:
@@ -66623,6 +68962,10 @@
Parameters:
Returns:
+
+ The file name +
+
@@ -66632,9 +68975,6 @@
Returns:
string -| - -Wine
@@ -66652,7 +68992,7 @@
Returns:
-

prefixDirectory() → {string}

+

algorithm(algorithm) → {Downloader}

@@ -66660,7 +69000,7 @@

prefix
- returns prefix directory + Sets the algorithm which shall be used to verify the checksum
@@ -66671,6 +69011,55 @@

prefix +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
algorithm + + +string + + + + The checksum algorithm (e.g. "SHA")
+ + @@ -66704,7 +69093,7 @@

prefix
Source:
@@ -66732,6 +69121,10 @@

prefix

Returns:
+
+ The Downloader object +
+
@@ -66740,7 +69133,7 @@
Returns:
-string +Downloader
@@ -66758,19 +69151,72 @@
Returns:
-

programFiles() → {string}

+

algorithm(algorithm) → {Resource}

+
+ Sets the checksum algorithm +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
algorithm + + +string + + The algorithm to verify the checksum (e.g. "SHA")
@@ -66806,7 +69252,7 @@

programFi
Source:
@@ -66835,7 +69281,7 @@

Returns:
- name of "Program Files" + The Resource object
@@ -66846,7 +69292,7 @@
Returns:
-string +Resource
@@ -66864,7 +69310,7 @@
Returns:
-

run(userArguments) → {void}

+

application(application) → {AppResource}

@@ -66872,7 +69318,7 @@

run - Runs a shortcut with the given user arguments + Sets the application containing the resources @@ -66908,13 +69354,13 @@
Parameters:
- userArguments + application -array +string @@ -66924,7 +69370,7 @@
Parameters:
- The user arguments + The application with the resource @@ -66965,7 +69411,7 @@
Parameters:
Source:
@@ -66993,6 +69439,10 @@
Parameters:
Returns:
+
+ The AppResource object +
+
@@ -67001,7 +69451,7 @@
Returns:
-void +AppResource
@@ -67019,7 +69469,7 @@
Returns:
-

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

+

architecture() → {string}

@@ -67034,259 +69484,158 @@

run - - - - Name - - Type - - Attributes - - - Default - +
- Description - - + - - - - executable - + - - - -string + + - - + - - - + - + - - - + - - - - - + - - + - - - args - + +
Source:
+
+ - - - -array + + - - + +
- - - - <optional>
- - - - - - - - - [] - - - - - - - - - workingDirectory - - - - -string - - - - - - <optional>
- - - - - - - - - working container - - - - - +
Returns:
- + +
+ architecture ("x86" or "amd64") +
- - - captureOutput - - - - -boolean +
+
+ Type +
+
+ +string - - - - - - <optional>
- +
+
- + - - - - - - - false - - + + + + - - + +

arguments(args) → {WineShortcut}

+ - - - wait - + - - - -boolean - - +
+ Sets the shortcut arguments +
+ - - - - <optional>
- - - - - - - - - false - - - - - + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + - + - - - - - + @@ -67327,7 +69676,7 @@
Parameters:
Source:
@@ -67356,7 +69705,7 @@
Returns:
- output + The WineShortcut object
@@ -67367,7 +69716,7 @@
Returns:
-String +WineShortcut
@@ -67385,7 +69734,7 @@
Returns:
-

runInsidePrefix(executable, argsopt, waitopt)

+

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

@@ -67429,7 +69778,7 @@
Parameters:
- + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -67530,7 +69805,7 @@
Parameters:
@@ -67576,7 +69851,7 @@
Parameters:
Source:
@@ -67601,6 +69876,24 @@
Parameters:
+
Returns:
+ + + + +
+
+ Type +
+
+ +Array.<string> + + +
+
+ + @@ -67612,17 +69905,13 @@
Parameters:
- +

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

-
- Sets the executable which shall be used -
- @@ -67644,8 +69933,12 @@
Parameters:
+ + + + @@ -67656,7 +69949,7 @@
Parameters:
- + + - + + + + + @@ -67713,7 +70022,7 @@
Parameters:
Source:
@@ -67741,10 +70050,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -67753,7 +70058,7 @@
Returns:
-WineShortcut +Array.<string>
@@ -67771,7 +70076,7 @@
Returns:
-

stop() → {void}

+

binPath(subCategoryopt, versionopt) → {string}

@@ -67779,7 +70084,8 @@

stop - Stops the running shortcut + returns the path to the engine binary directory +if no parameters are given, the Wine version of the current prefix is used @@ -67790,106 +70096,98 @@

stop - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - +
NameTypeDescription
userDataargs -map +array - - <optional>
- - - - - -
- - empty - - The shortcut arguments
executablearchitecture @@ -67439,80 +69788,6 @@
Parameters:
-
- - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - false + current architecture TypeAttributesDefaultDescription
searchdistribution name @@ -67669,10 +69962,26 @@
Parameters:
+ + <optional>
+ + + + +
The executable name + + current distribution + +
+ + + + + + -
Returns:
+ + + + + + -
-
- Type -
-
- -void +
+ + + + + - - + + + + - - + + -

system32directory() → {string}

- - + + + + + + + + + + + + + +
NameTypeAttributesDescription
subCategory + + +string - + + + + <optional>
+ + + +
Wine sub-category
version + + +string + + + + <optional>
+ + + +
Wine version
@@ -67925,7 +70223,7 @@

syst
Source:
@@ -67954,7 +70252,7 @@

Returns:
- system32 directory + path to "wine" binary
@@ -67983,13 +70281,16 @@
Returns:
-

system64directory() → {string}

+

category(category) → {WineShortcut}

+
+ Sets the shortcut category +
@@ -67999,6 +70300,56 @@

syst +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
category + + +string + + + + The shortcut category
+ + + @@ -68031,7 +70382,7 @@

syst
Source:
@@ -68060,7 +70411,7 @@

Returns:
- system64 directory + The WineShortcut object
@@ -68071,7 +70422,7 @@
Returns:
-string +WineShortcut
@@ -68089,7 +70440,7 @@
Returns:
-

to(localDestination) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -68097,7 +70448,7 @@

to - Sets the download destination + Sets the checksum which shall be used to verify the resource @@ -68133,7 +70484,7 @@
Parameters:
- localDestination + checksum @@ -68149,7 +70500,7 @@
Parameters:
- The destination of the download. If it is a directory, the file will be placed inside + The checksum @@ -68190,7 +70541,7 @@
Parameters:
Source:
@@ -68219,7 +70570,7 @@
Returns:
- The Downloader object + The Resource object
@@ -68230,7 +70581,7 @@
Returns:
-Downloader +Resource
@@ -68248,7 +70599,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

checksum(checksum) → {Downloader}

@@ -68256,7 +70607,7 @@

trustLevel<
- Sets the trust level + Sets the checksum
@@ -68292,7 +70643,7 @@

Parameters:
- trustLevel + checksum @@ -68308,7 +70659,7 @@
Parameters:
- The trust level + The checksum which shall be used to verify the download @@ -68349,7 +70700,7 @@
Parameters:
Source:
@@ -68378,7 +70729,7 @@
Returns:
- The WineShortcut object + The Downloader object
@@ -68389,7 +70740,7 @@
Returns:
-WineShortcut +Downloader
@@ -68407,7 +70758,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

create() → {void}

@@ -68415,7 +70766,7 @@

trustLevel<
- set trust level + Creates a new shortcut
@@ -68426,55 +70777,6 @@

trustLevel< -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - @@ -68508,7 +70810,7 @@
Parameters:
Source:
@@ -68536,10 +70838,6 @@
Parameters:
Returns:
-
- QuickScript object -
-
@@ -68548,7 +70846,7 @@
Returns:
-QuickScript +void
@@ -68566,7 +70864,7 @@
Returns:
-

type(type) → {WineShortcut}

+

create() → {Wine}

@@ -68574,7 +70872,7 @@

type - Sets the shortcut type + runs "wineboot" @@ -68585,55 +70883,6 @@

type - - - - Name - - - Type - - - - - - Description - - - - - - - - - type - - - - - -string - - - - - - - - - - The shortcut type - - - - - - - @@ -68667,7 +70916,7 @@
Parameters:
Source:
@@ -68696,7 +70945,7 @@
Returns:
- The WineShortcut object + The Wine object
@@ -68707,7 +70956,7 @@
Returns:
-WineShortcut +Wine
@@ -68725,7 +70974,7 @@
Returns:
-

uninstall(name) → {bool}

+

description(description) → {WineShortcut}

@@ -68733,7 +70982,7 @@

uninstall - uninstall application + Sets the shortcut description @@ -68769,7 +71018,7 @@
Parameters:
- name + description @@ -68785,7 +71034,7 @@
Parameters:
- of the application which shall be uninstalled + The shortcut description @@ -68826,117 +71075,7 @@
Parameters:
Source:
- - - - - - - -

- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
@@ -68964,6 +71103,10 @@

uninstallReturns:

+
+ The WineShortcut object +
+
@@ -68972,7 +71115,7 @@
Returns:
-void +WineShortcut
@@ -68990,7 +71133,7 @@
Returns:
-

url(url) → {Downloader}

+

directory(directory) → {Resource}

@@ -68998,7 +71141,7 @@

url - Sets the URL which shall be used for the download + Sets the directory inside the resources directory where the Resource is stored @@ -69034,7 +71177,7 @@
Parameters:
- url + directory @@ -69050,7 +71193,7 @@
Parameters:
- The URL + The directory path @@ -69091,7 +71234,7 @@
Parameters:
Source:
@@ -69120,7 +71263,7 @@
Returns:
- The Downloader object + The Resource object
@@ -69131,7 +71274,7 @@
Returns:
-Downloader +Resource
@@ -69149,7 +71292,7 @@
Returns:
-

url(url) → {Resource}

+

dosConfigFile() → {string}

@@ -69157,7 +71300,117 @@

url - Sets the resource URL + Fetch the prefix dosbox configuration file + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

download(setupWizard) → {String}

+ + + + + + +
+ Download the setup resources in the same directory, and returns the path of the .exe
@@ -69193,13 +71446,13 @@
Parameters:
- url + setupWizard -string +SetupWizard @@ -69209,7 +71462,7 @@
Parameters:
- The URL + The setup wizard @@ -69250,7 +71503,7 @@
Parameters:
Source:
@@ -69279,7 +71532,7 @@
Returns:
- The Resource object + The .exe file entry that can be used to continue the installation
@@ -69290,7 +71543,7 @@
Returns:
-Resource +String
@@ -69308,7 +71561,7 @@
Returns:
-

wait() → {Wine}

+

downloadFinished(wine) → {boolean}

@@ -69316,7 +71569,8 @@

wait - wait until wineserver finishes + Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first @@ -69327,6 +71581,55 @@

wait + + + + Name + + + Type + + + + + + Description + + + + + + + + + wine + + + + + +Wine + + + + + + + + + + The wine engine object + + + + + + + @@ -69360,7 +71663,7 @@

waitSource:
@@ -69388,6 +71691,10 @@

wait + True if the download has finished, false otherwise + +
@@ -69396,7 +71703,7 @@
Returns:
-Wine +boolean
@@ -69414,13 +71721,17 @@
Returns:
-

winepath(pathopt) → {String}

+

downloadStarted(wine) → {boolean}

+
+ Checks whether the software download has started +
+ @@ -69442,8 +71753,6 @@
Parameters:
Type - Attributes - @@ -69456,33 +71765,23 @@
Parameters:
- path + wine -String +Wine - - - <optional>
- - - - - - - - + The wine engine object @@ -69523,7 +71822,7 @@
Parameters:
Source:
@@ -69551,6 +71850,10 @@
Parameters:
Returns:
+
+ True if the download has started, false otherwise +
+
@@ -69559,7 +71862,7 @@
Returns:
-String +boolean
@@ -69577,7 +71880,7 @@
Returns:
-

wineServer(wineserver)

+

environment(environment) → {WineShortcut}

@@ -69585,7 +71888,7 @@

wineServer<
- executes wineserver in current prefix + Sets the shortcut environment variables
@@ -69621,7 +71924,7 @@

Parameters:
- wineserver + environment @@ -69637,7 +71940,7 @@
Parameters:
- parameter + The environment variables @@ -69678,7 +71981,7 @@
Parameters:
Source:
@@ -69703,6 +72006,28 @@
Parameters:
+
Returns:
+ + +
+ The WineShortcut object +
+ + + +
+
+ Type +
+
+ +WineShortcut + + +
+
+ + @@ -69714,7 +72039,7 @@
Parameters:
-

withScript(command) → {PlainInstaller}

+

environment(environment) → {QuickScript}

@@ -69722,7 +72047,7 @@

withScript<
- Sets the installation script consisting of a lambda function + set environment
@@ -69758,13 +72083,13 @@

Parameters:
- command + environment -function +string @@ -69774,7 +72099,7 @@
Parameters:
- The installation command + variables @@ -69815,7 +72140,7 @@
Parameters:
Source:
@@ -69844,7 +72169,7 @@
Returns:
- The PlainInstaller object + QuickScript object
@@ -69855,7 +72180,7 @@
Returns:
-PlainInstaller +QuickScript
@@ -69873,7 +72198,7 @@
Returns:
-

wizard(wizard) → {Resource}

+

executable(executable, args)

@@ -69881,7 +72206,7 @@

wizard - Sets the setup wizard + set executable @@ -69917,15 +72242,28 @@
Parameters:
- wizard + executable - -SetupWizard + + + + + + executable without path (e.g. "Steam.exe") + + + + + + args + + + @@ -69933,7 +72271,7 @@
Parameters:
- The setup wizard + use array (e.g. ["-applaunch", 409160]) @@ -69974,7 +72312,91 @@
Parameters:
Source:
+ + + + + + + +

+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -70003,7 +72425,7 @@
Returns:
- The Resource object + font directory
@@ -70014,7 +72436,7 @@
Returns:
-Resource +string
@@ -70032,7 +72454,7 @@
Returns:
-

wizard(wizard) → {Downloader}

+

get(resourceName) → {Resource}

@@ -70040,7 +72462,7 @@

wizard - Sets the setup wizard + Returns the searched resource @@ -70076,13 +72498,13 @@
Parameters:
- wizard + resourceName -SetupWizard +string @@ -70092,7 +72514,7 @@
Parameters:
- The setup wizard + The name of the resource @@ -70133,7 +72555,7 @@
Parameters:
Source:
@@ -70162,7 +72584,7 @@
Returns:
- The Downloader object + The found resource
@@ -70173,7 +72595,7 @@
Returns:
-Downloader +Resource
@@ -70191,13 +72613,19 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

get() → {String}

+
+ Gets the content of the downloaded file +
+ + + @@ -70206,65 +72634,112 @@

wizardParameters:

+ + +
+ - - - - - - + - + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + + + + + + + + + + + + + + + + + +
Returns:
- - +
+ The content of downloaded file +
+ + +
+
+ Type +
+
+String -
- - - + + + - - - - - + - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - <optional>
- - + + + +

get() → {string}

+ + + + + + +
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ + + - -
@@ -70300,7 +72775,7 @@
Parameters:
Source:
@@ -70328,6 +72803,10 @@
Parameters:
Returns:
+
+ The path leading to the downloaded resource +
+
@@ -70336,10 +72815,7 @@
Returns:
-SetupWizard -| - -Wine +string
@@ -70352,48 +72828,21 @@
Returns:
- - - - - - - -

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

default()

- -
Setting to set the offscreen rendering mode
- - -
+ -
-
- -

Constructor

+

getContainer() → {string}

-

new default()

- - +
+ Returns the name of the container belonging to a shortcut +
@@ -70436,7 +72885,7 @@

new defaultSource:
@@ -70461,30 +72910,32 @@

new defaultReturns:

+ +
+ The container name +
+
+
+ Type +
+
+ +string - -

- - - - - + + - - - - -

Methods

@@ -70492,7 +72943,7 @@

Methods

-

_createShortcut(prefixopt)

+

getSettings() → {object}

@@ -70500,7 +72951,7 @@

_creat
- creates shortcut + Fetch all prefix dosbox sttings
@@ -70511,67 +72962,6 @@

_creat -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - @@ -70605,7 +72995,7 @@
Parameters:
Source:
@@ -70630,6 +73020,28 @@
Parameters:
+
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + @@ -70641,7 +73053,7 @@
Parameters:
-

_fetchFileNameFromUrl(url) → {string}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -70649,7 +73061,7 @@

- Fetches the file name from an URL + Sets one setup file name so that the script can fetch it from gog.com
@@ -70685,7 +73097,7 @@

Parameters:
- url + setupFileName @@ -70701,7 +73113,7 @@
Parameters:
- The URL + The setup file name @@ -70742,7 +73154,7 @@
Parameters:
Source:
@@ -70771,7 +73183,7 @@
Returns:
- The file name + This
@@ -70782,7 +73194,7 @@
Returns:
-string +GogScript
@@ -70800,7 +73212,7 @@
Returns:
-

algorithm(algorithm) → {Resource}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -70808,7 +73220,7 @@

algorithm - Sets the checksum algorithm + Sets the setup file(s) name so that the script can fetch it from gog.com @@ -70844,13 +73256,13 @@
Parameters:
- algorithm + setupFileNames -string +Array.<string> @@ -70860,7 +73272,7 @@
Parameters:
- The algorithm to verify the checksum (e.g. "SHA") + The setup file name(s) @@ -70901,7 +73313,7 @@
Parameters:
Source:
@@ -70930,7 +73342,7 @@
Returns:
- The Resource object + This
@@ -70941,7 +73353,7 @@
Returns:
-Resource +GogScript
@@ -70959,7 +73371,7 @@
Returns:
-

algorithm(algorithm) → {Downloader}

+

headers(headers) → {Downloader}

@@ -70967,7 +73379,7 @@

algorithm - Sets the algorithm which shall be used to verify the checksum + Sets the http headers @@ -71003,13 +73415,13 @@
Parameters:
- algorithm + headers -string +Object @@ -71019,7 +73431,7 @@
Parameters:
- The checksum algorithm (e.g. "SHA") + The http headers @@ -71060,7 +73472,7 @@
Parameters:
Source:
@@ -71118,7 +73530,7 @@
Returns:
-

application(application) → {AppResource}

+

isHdpi() → {boolean}

@@ -71126,7 +73538,7 @@

applicatio
- Sets the application containing the resources + Fetches whether hdpi is enabled or not
@@ -71137,55 +73549,6 @@

applicatio -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - @@ -71219,7 +73582,7 @@
Parameters:
Source:
@@ -71248,7 +73611,7 @@
Returns:
- The AppResource object + True if hdpi is enabled, false otherwise
@@ -71259,7 +73622,7 @@
Returns:
-AppResource +boolean
@@ -71277,13 +73640,17 @@
Returns:
-

architecture() → {string}

+

json() → {any}

+
+ Gets the content of the downloaded file and returns it as a JSON value +
+ @@ -71325,7 +73692,7 @@

architect
Source:
@@ -71354,7 +73721,7 @@

Returns:
- architecture ("x86" or "amd64") + The json value
@@ -71365,7 +73732,7 @@
Returns:
-string +any
@@ -71383,7 +73750,7 @@
Returns:
-

arguments(args) → {WineShortcut}

+

kill() → {Wine}

@@ -71391,7 +73758,114 @@

arguments - Sets the shortcut arguments + 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
@@ -71427,13 +73901,13 @@
Parameters:
- args + setupWizard -array +SetupWizard @@ -71443,7 +73917,7 @@
Parameters:
- The shortcut arguments + The setupWizard to use @@ -71484,7 +73958,7 @@
Parameters:
Source:
@@ -71513,7 +73987,7 @@
Returns:
- The WineShortcut object + This
@@ -71524,7 +73998,7 @@
Returns:
-WineShortcut +GogScript
@@ -71542,13 +74016,17 @@
Returns:
-

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

+

message(message) → {Downloader}

+
+ Sets the download message text +
+ @@ -71570,12 +74048,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -71586,7 +74060,7 @@
Parameters:
- architecture + message @@ -71599,26 +74073,10 @@
Parameters:
- - - <optional>
- - - - - - - - - current architecture - - - - - + The download message @@ -71659,7 +74117,7 @@
Parameters:
Source:
@@ -71687,6 +74145,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -71695,7 +74157,7 @@
Returns:
-Array.<string> +Downloader
@@ -71713,13 +74175,17 @@
Returns:
-

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

+

miniature(miniatureopt)

+
+ get/set miniature (for the installation and the shortcut) +
+ @@ -71745,8 +74211,6 @@
Parameters:
- Default - Description @@ -71757,13 +74221,13 @@
Parameters:
- distribution name + miniature -string +URI @@ -71782,14 +74246,8 @@
Parameters:
- - - current distribution - - - - + path to the miniature file @@ -71830,7 +74288,7 @@
Parameters:
Source:
@@ -71855,24 +74313,6 @@
Parameters:
-
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - @@ -71884,7 +74324,7 @@
Returns:
-

binPath(subCategoryopt, versionopt) → {string}

+

miniature(miniature) → {WineShortcut}

@@ -71892,8 +74332,7 @@

binPath - returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used + Sets the miniature for the shortcut @@ -71917,8 +74356,6 @@
Parameters:
Type - Attributes - @@ -71931,66 +74368,26 @@
Parameters:
- subCategory + miniature -string - - - - - - - - - <optional>
- - - - - - - - - - - Wine sub-category - - - - - - - version - +Array.<string> +| - - - -string +URI - - - <optional>
- - - - - - - - Wine version + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -72031,7 +74428,7 @@
Parameters:
Source:
@@ -72060,7 +74457,7 @@
Returns:
- path to "wine" binary + The WineShortcut object
@@ -72071,7 +74468,7 @@
Returns:
-string +WineShortcut
@@ -72089,7 +74486,7 @@
Returns:
-

category(category) → {WineShortcut}

+

name(name) → {Resource}

@@ -72097,7 +74494,7 @@

category - Sets the shortcut category + Sets the resource name @@ -72133,7 +74530,7 @@
Parameters:
- category + name @@ -72149,7 +74546,7 @@
Parameters:
- The shortcut category + The name of the resource @@ -72190,7 +74587,7 @@
Parameters:
Source:
@@ -72219,7 +74616,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -72230,7 +74627,7 @@
Returns:
-WineShortcut +Resource
@@ -72248,7 +74645,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

name(name) → {WineShortcut}

@@ -72256,7 +74653,7 @@

checksum - Sets the checksum + Sets the shortcut name @@ -72292,7 +74689,7 @@
Parameters:
- checksum + name @@ -72308,7 +74705,7 @@
Parameters:
- The checksum which shall be used to verify the download + The shortcut name @@ -72349,7 +74746,7 @@
Parameters:
Source:
@@ -72378,7 +74775,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -72389,7 +74786,7 @@
Returns:
-Downloader +WineShortcut
@@ -72407,7 +74804,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

of(shortcut) → {void}

@@ -72415,7 +74812,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets shortcut @@ -72451,7 +74848,7 @@
Parameters:
- checksum + shortcut @@ -72467,7 +74864,7 @@
Parameters:
- The checksum + shortcut @@ -72508,7 +74905,7 @@
Parameters:
Source:
@@ -72536,10 +74933,6 @@
Parameters:
Returns:
-
- The Resource object -
-
@@ -72548,7 +74941,7 @@
Returns:
-Resource +void
@@ -72566,7 +74959,7 @@
Returns:
-

create() → {Wine}

+

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

@@ -72574,7 +74967,7 @@

create - runs "wineboot" + Specifies if the download shall be executed only if a newer version is available @@ -72585,6 +74978,55 @@

createParameters:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
onlyIfUpdateAvailable + + +boolean + + + + true the download shall be executed only if a newer version is available
+ + @@ -72618,7 +75060,7 @@

createSource:
@@ -72647,7 +75089,7 @@
Returns:
- The Wine object + The Downloader object
@@ -72658,7 +75100,7 @@
Returns:
-Wine +Downloader
@@ -72676,16 +75118,13 @@
Returns:
-

create() → {void}

+

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

-
- Creates a new shortcut -
@@ -72694,12 +75133,171 @@

createParameters:

+ + + + + + + + + + + + -
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
prefix + + +string + + + + + + <optional>
+ + + + + +
distribution + + +string + + + + + + <optional>
+ + + + + +
architecture + + +string + + + + + + <optional>
+ + + + + +
version + + +string + + + + + + <optional>
+ + + + + +
+ + + + + + +
@@ -72728,7 +75326,7 @@

createSource:
@@ -72764,7 +75362,10 @@
Returns:
-void +string +| + +Wine
@@ -72782,7 +75383,7 @@
Returns:
-

description(description) → {WineShortcut}

+

prefix(prefix) → {WineShortcut}

@@ -72790,7 +75391,7 @@

descriptio
- Sets the shortcut description + Sets the shortcut prefix
@@ -72826,7 +75427,7 @@

Parameters:
- description + prefix @@ -72842,7 +75443,7 @@
Parameters:
- The shortcut description + The shortcut prefix @@ -72883,7 +75484,7 @@
Parameters:
Source:
@@ -72941,7 +75542,7 @@
Returns:
-

directory(directory) → {Resource}

+

prefixDirectory() → {string}

@@ -72949,7 +75550,7 @@

directory - Sets the directory inside the resources directory where the Resource is stored + returns prefix directory @@ -72960,55 +75561,6 @@

directoryParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - @@ -73042,7 +75594,7 @@
Parameters:
Source:
@@ -73070,10 +75622,6 @@
Parameters:
Returns:
-
- The Resource object -
-
@@ -73082,7 +75630,7 @@
Returns:
-Resource +string
@@ -73100,16 +75648,13 @@
Returns:
-

download(setupWizard) → {String}

+

programFiles() → {string}

-
- Download the setup resources in the same directory, and returns the path of the .exe -
@@ -73119,56 +75664,6 @@

downloadParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - @@ -73201,7 +75696,7 @@
Parameters:
Source:
@@ -73230,7 +75725,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + name of "Program Files"
@@ -73241,7 +75736,7 @@
Returns:
-String +string
@@ -73259,17 +75754,13 @@
Returns:
-

environment(environment) → {WineShortcut}

+

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

-
- Sets the shortcut environment variables -
- @@ -73291,8 +75782,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -73303,7 +75798,7 @@
Parameters:
- environment + executable @@ -73316,10 +75811,217 @@
Parameters:
+ + + + + + - The environment variables + + + + + + + + + + + + + + args + + + + + +array + + + + + + + + + <optional>
+ + + + + + + + + + + + [] + + + + + + + + + + + + workingDirectory + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + + working container + + + + + + + + + + + + captureOutput + + + + + +boolean + + + + + + + + + <optional>
+ + + + + + + + + + + + false + + + + + + + + + + + + wait + + + + + +boolean + + + + + + + + + <optional>
+ + + + + + + + + + + + false + + + + + + + + + + + + userData + + + + + +map + + + + + + + + + <optional>
+ + + + + + + + + + + + empty + + + + + @@ -73360,7 +76062,7 @@
Parameters:
Source:
@@ -73389,7 +76091,7 @@
Returns:
- The WineShortcut object + output
@@ -73400,7 +76102,7 @@
Returns:
-WineShortcut +String
@@ -73418,7 +76120,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

run(userArguments) → {void}

@@ -73426,7 +76128,7 @@

environmen
- set environment + Runs a shortcut with the given user arguments
@@ -73462,13 +76164,13 @@

Parameters:
- environment + userArguments -string +array @@ -73478,7 +76180,7 @@
Parameters:
- variables + The user arguments @@ -73519,7 +76221,7 @@
Parameters:
Source:
@@ -73547,10 +76249,6 @@
Parameters:
Returns:
-
- QuickScript object -
-
@@ -73559,7 +76257,7 @@
Returns:
-QuickScript +void
@@ -73577,17 +76275,13 @@
Returns:
-

executable(executable, args)

+

runInsidePrefix(executable, argsopt, waitopt)

-
- set executable -
- @@ -73609,8 +76303,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -73626,13 +76324,30 @@
Parameters:
+ +string + + + + + + + + + + + + + + + - executable without path (e.g. "Steam.exe") + @@ -73644,13 +76359,73 @@
Parameters:
+ +array + + + + + + <optional>
+ + + + + - use array (e.g. ["-applaunch", 409160]) + + + + [] + + + + + + + + + + + + wait + + + + + +boolean + + + + + + + + + <optional>
+ + + + + + + + + + + + false + + + + + @@ -73691,7 +76466,7 @@
Parameters:
Source:
@@ -73727,19 +76502,72 @@
Parameters:
-

fontDirectory() → {string}

+ +
+ Sets the executable which shall be used +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
search + + +string + + The executable name
@@ -73775,7 +76603,7 @@

fontDire
Source:
@@ -73804,7 +76632,7 @@

Returns:
- font directory + The WineShortcut object
@@ -73815,7 +76643,7 @@
Returns:
-string +WineShortcut
@@ -73833,7 +76661,7 @@
Returns:
-

get() → {string}

+

stop() → {void}

@@ -73841,7 +76669,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Stops the running shortcut @@ -73885,7 +76713,109 @@

getSource:
+ + + + + + + +

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

system32directory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -73914,7 +76844,7 @@
Returns:
- The path leading to the downloaded resource + system32 directory
@@ -73943,17 +76873,13 @@
Returns:
-

get() → {String}

+

system64directory() → {string}

-
- Gets the content of the downloaded file -
- @@ -73995,7 +76921,7 @@

getSource:
@@ -74024,7 +76950,7 @@
Returns:
- The content of downloaded file + system64 directory
@@ -74035,7 +76961,7 @@
Returns:
-String +string
@@ -74053,7 +76979,7 @@
Returns:
-

get(resourceName) → {Resource}

+

to(localDestination) → {Downloader}

@@ -74061,7 +76987,7 @@

get - Returns the searched resource + Sets the download destination @@ -74097,7 +77023,7 @@
Parameters:
- resourceName + localDestination @@ -74113,7 +77039,7 @@
Parameters:
- The name of the resource + The destination of the download. If it is a directory, the file will be placed inside @@ -74154,7 +77080,7 @@
Parameters:
Source:
@@ -74183,7 +77109,7 @@
Returns:
- The found resource + The Downloader object
@@ -74194,7 +77120,7 @@
Returns:
-Resource +Downloader
@@ -74212,7 +77138,7 @@
Returns:
-

getContainer() → {string}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -74220,7 +77146,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the trust level
@@ -74231,6 +77157,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
trustLevel + + +string + + + + The trust level
+ + @@ -74264,7 +77239,7 @@

getContai
Source:
@@ -74293,7 +77268,7 @@

Returns:
- The container name + The WineShortcut object
@@ -74304,7 +77279,7 @@
Returns:
-string +WineShortcut
@@ -74322,7 +77297,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

trustLevel(trustlevel) → {QuickScript}

@@ -74330,7 +77305,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + set trust level
@@ -74366,7 +77341,7 @@

Parameters:
- setupFileName + trustlevel @@ -74382,7 +77357,7 @@
Parameters:
- The setup file name + @@ -74423,7 +77398,7 @@
Parameters:
Source:
@@ -74452,7 +77427,7 @@
Returns:
- This + QuickScript object
@@ -74463,7 +77438,7 @@
Returns:
-GogScript +QuickScript
@@ -74481,7 +77456,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

type(type) → {WineShortcut}

@@ -74489,7 +77464,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Sets the shortcut type
@@ -74525,13 +77500,13 @@

Parameters:
- setupFileNames + type -Array.<string> +string @@ -74541,7 +77516,7 @@
Parameters:
- The setup file name(s) + The shortcut type @@ -74582,7 +77557,7 @@
Parameters:
Source:
@@ -74611,7 +77586,7 @@
Returns:
- This + The WineShortcut object
@@ -74622,7 +77597,7 @@
Returns:
-GogScript +WineShortcut
@@ -74640,7 +77615,7 @@
Returns:
-

headers(headers) → {Downloader}

+

uninstall(name) → {bool}

@@ -74648,7 +77623,7 @@

headers - Sets the http headers + uninstall application @@ -74684,13 +77659,13 @@
Parameters:
- headers + name -Object +string @@ -74700,7 +77675,7 @@
Parameters:
- The http headers + of the application which shall be uninstalled @@ -74741,7 +77716,7 @@
Parameters:
Source:
@@ -74770,7 +77745,7 @@
Returns:
- The Downloader object + true if an application has been uninstalled, false otherwise
@@ -74781,7 +77756,7 @@
Returns:
-Downloader +bool
@@ -74799,7 +77774,7 @@
Returns:
-

json() → {any}

+

uninstall() → {void}

@@ -74807,7 +77782,7 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Uninstalls the shortcut @@ -74851,7 +77826,7 @@

jsonSource:
@@ -74879,10 +77854,6 @@

json - The json value - -
@@ -74891,7 +77862,7 @@
Returns:
-any +void
@@ -74909,7 +77880,7 @@
Returns:
-

kill() → {Wine}

+

url(url) → {Downloader}

@@ -74917,7 +77888,7 @@

kill - kill wine server + Sets the URL which shall be used for the download @@ -74928,6 +77899,55 @@

kill + + + + Name + + + Type + + + + + + Description + + + + + + + + + url + + + + + +string + + + + + + + + + + The URL + + + + + + + @@ -74961,7 +77981,7 @@

killSource:
@@ -74989,6 +78009,10 @@

kill + The Downloader object + +
@@ -74997,7 +78021,7 @@
Returns:
-Wine +Downloader
@@ -75015,7 +78039,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

url(url) → {Resource}

@@ -75023,8 +78047,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 resource URL
@@ -75060,13 +78083,13 @@

Parameters:
- setupWizard + url -SetupWizard +string @@ -75076,7 +78099,7 @@
Parameters:
- The setupWizard to use + The URL @@ -75117,7 +78140,7 @@
Parameters:
Source:
@@ -75146,7 +78169,7 @@
Returns:
- This + The Resource object
@@ -75157,7 +78180,7 @@
Returns:
-GogScript +Resource
@@ -75175,7 +78198,7 @@
Returns:
-

message(message) → {Downloader}

+

wait() → {Wine}

@@ -75183,7 +78206,7 @@

message - Sets the download message text + wait until wineserver finishes @@ -75194,55 +78217,6 @@

messageParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - @@ -75276,7 +78250,7 @@
Parameters:
Source:
@@ -75304,10 +78278,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -75316,7 +78286,7 @@
Returns:
-Downloader +Wine
@@ -75334,17 +78304,13 @@
Returns:
-

miniature(miniature) → {WineShortcut}

+

winepath(pathopt) → {String}

-
- Sets the miniature for the shortcut -
- @@ -75366,6 +78332,8 @@
Parameters:
Type + Attributes + @@ -75378,26 +78346,33 @@
Parameters:
- miniature + path -Array.<string> -| - -URI +String + + + <optional>
+ + + + + + + - An array which specifies the application of which the miniature shall be used or URI of the miniature + @@ -75438,7 +78413,7 @@
Parameters:
Source:
@@ -75466,10 +78441,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -75478,7 +78449,7 @@
Returns:
-WineShortcut +String
@@ -75496,7 +78467,7 @@
Returns:
-

miniature(miniatureopt)

+

wineServer(wineserver)

@@ -75504,7 +78475,7 @@

miniature - get/set miniature (for the installation and the shortcut) + executes wineserver in current prefix @@ -75528,8 +78499,6 @@
Parameters:
Type - Attributes - @@ -75542,33 +78511,183 @@
Parameters:
- miniature + wineserver -URI +string - - - <optional>
- + + + parameter + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +string + + + - + + + @@ -75609,7 +78728,7 @@
Parameters:
Source:
@@ -75634,6 +78753,28 @@
Parameters:
+
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + @@ -75645,7 +78786,7 @@
Parameters:
-

name(name) → {Resource}

+

withCpuCycles(cpuCycles) → {Dosbox}

@@ -75653,7 +78794,8 @@

name - Sets the resource name + Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D @@ -75689,13 +78831,13 @@
Parameters:

- + + @@ -75746,7 +78888,7 @@
Parameters:
Source:
@@ -75775,7 +78917,7 @@
Returns:
- The Resource object + This
@@ -75786,7 +78928,7 @@
Returns:
-Resource +Dosbox
@@ -75804,7 +78946,7 @@
Returns:
-

name(name) → {WineShortcut}

+

withDimensions(width, height) → {VirtualDesktop}

@@ -75812,7 +78954,7 @@

name - Sets the shortcut name + Specifies the dimensions of the virtual desktop @@ -75848,13 +78990,13 @@
Parameters:

- + + + + + + + + + + + + + + + + + + @@ -75905,7 +79070,7 @@
Parameters:
Source:
@@ -75934,7 +79099,7 @@
Returns:
- The WineShortcut object + This
@@ -75945,7 +79110,7 @@
Returns:
-WineShortcut +VirtualDesktop
@@ -75963,7 +79128,7 @@
Returns:
-

of(shortcut) → {void}

+

withDriver(driver) → {SoundDriver}

@@ -75971,7 +79136,7 @@

of - Sets shortcut + Specifies the used sound driver @@ -76007,7 +79172,7 @@
Parameters:

- + + @@ -76064,7 +79229,7 @@
Parameters:
Source:
@@ -76092,6 +79257,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -76100,7 +79269,7 @@
Returns:
-void +SoundDriver
@@ -76118,7 +79287,7 @@
Returns:
-

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

+

withExtension(extension) → {NativeApplication}

@@ -76126,7 +79295,7 @@

- Specifies if the download shall be executed only if a newer version is available + Specifies the file extension
@@ -76162,13 +79331,13 @@

Parameters:
- + + @@ -76219,7 +79388,7 @@
Parameters:
Source:
@@ -76248,7 +79417,7 @@
Returns:
- The Downloader object + This
@@ -76259,7 +79428,7 @@
Returns:
-Downloader +NativeApplication
@@ -76277,7 +79446,7 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

withHdpi(hdpi) → {HDPI}

@@ -76285,7 +79454,7 @@

prefix - Sets the shortcut prefix + Specifies whether hdpi should be enabled or not @@ -76321,13 +79490,13 @@
Parameters:

- + + @@ -76378,7 +79547,7 @@
Parameters:
Source:
@@ -76407,7 +79576,7 @@
Returns:
- The WineShortcut object + This
@@ -76418,7 +79587,7 @@
Returns:
-WineShortcut +HDPI
@@ -76436,13 +79605,17 @@
Returns:
-

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

+

withManaged(managed) → {Managed}

+
+ Specifies the global managed state +
+ @@ -76464,8 +79637,6 @@
Parameters:
- - @@ -76478,132 +79649,23 @@
Parameters:
- + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -76644,7 +79706,7 @@
Parameters:
Source:
@@ -76672,6 +79734,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -76680,10 +79746,7 @@
Returns:
-string -| - -Wine +Managed
@@ -76701,7 +79764,7 @@
Returns:
-

prefixDirectory() → {string}

+

withManagedApplication(application, managed) → {Managed}

@@ -76709,7 +79772,7 @@

prefix
- returns prefix directory + Specifies the managed state for a given application
@@ -76720,106 +79783,76 @@

prefix - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-
- - - - - - - - - - - - - - - -

Returns:
+
NameTypeDescription
application + +string + + + The application executable
os + - path to the miniature fileThe windows version
namecpuCycles -string +int @@ -75705,7 +78847,7 @@
Parameters:
-
The name of the resource(example: max 95% limit 33000)
namewidth -string +number @@ -75864,7 +79006,30 @@
Parameters:
-
The shortcut namewidth of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
shortcutdriver @@ -76023,7 +79188,7 @@
Parameters:
-
shortcutalsa or pulse
onlyIfUpdateAvailableextension -boolean +string @@ -76178,7 +79347,7 @@
Parameters:
-
true the download shall be executed only if a newer version is availableThe file extension (pdf, txt, rtf)
prefixhdpi -string +boolean @@ -76337,7 +79506,7 @@
Parameters:
-
The shortcut prefixtrue if hdpi shall be enabled
TypeAttributes
prefixmanaged -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string +boolean - - <optional>
- - - - - -
True if it shall be managed
+ + + + + -
-
- Type -
-
-string + -
-
+ + + + + + + + + - - + - -

programFiles() → {string}

- + + + + + + + + + + + - + + +
NameTypeDescription
application + + +string + + The application
managed + + +boolean + + True if the application shall be managed
@@ -76855,7 +79888,7 @@

programFi
Source:
@@ -76884,7 +79917,7 @@

Returns:
- name of "Program Files" + This
@@ -76895,7 +79928,7 @@
Returns:
-string +Managed
@@ -76913,7 +79946,7 @@
Returns:
-

run(userArguments) → {void}

+

withMemSize(memSize) → {Dosbox}

@@ -76921,7 +79954,8 @@

run - Runs a shortcut with the given user arguments + Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D @@ -76957,13 +79991,13 @@
Parameters:
- userArguments + memSize -array +int @@ -76973,7 +80007,7 @@
Parameters:
- The user arguments + The memory size @@ -77014,7 +80048,7 @@
Parameters:
Source:
@@ -77042,6 +80076,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -77050,7 +80088,7 @@
Returns:
-void +Dosbox
@@ -77068,13 +80106,17 @@
Returns:
-

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

+

withMode(mode) → {FontSmoothing}

+
+ Specifies the used font smoothing mode +
+ @@ -77096,12 +80138,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -77112,7 +80150,7 @@
Parameters:
- executable + mode @@ -77125,217 +80163,169 @@
Parameters:
- - - - - - - - - - - - - + "RGB", "BGR" or "Gray Scale" + + - - - args - - - - -array - - - - - - <optional>
- - +
- - - + - - - - [] - - - + - - + - - - workingDirectory - + - - - -string + + - - + - - - - <optional>
- + - + - - - + - - - - working container - - - + - - + +
Source:
+
+ - - - captureOutput - + + + +
+ - - - -boolean - - - - - - <optional>
- - - - - - - - - false - - - - - + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
- - - wait - - - - -boolean - - + - - - <optional>
- - + - - - + +

withMode(mode) → {GLSL}

+ - - - - false - - - + - - + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + - + - - - - - - + @@ -77376,7 +80366,7 @@
Parameters:
Source:
@@ -77405,7 +80395,7 @@
Returns:
- output + This
@@ -77416,7 +80406,7 @@
Returns:
-String +GLSL
@@ -77434,13 +80424,17 @@
Returns:
-

runInsidePrefix(executable, argsopt, waitopt)

+

withMode(mode) → {TakeFocus}

+
+ Specifies the mode +
+ @@ -77462,12 +80456,8 @@
Parameters:
- - - - @@ -77478,7 +80468,7 @@
Parameters:
- + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -77625,7 +80525,7 @@
Parameters:
Source:
@@ -77650,6 +80550,28 @@
Parameters:
+
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + @@ -77661,7 +80583,7 @@
Parameters:
- +

withMode(mode) → {DirectDrawRenderer}

@@ -77669,7 +80591,7 @@ - + + @@ -77762,7 +80684,7 @@
Parameters:
Source:
@@ -77791,7 +80713,7 @@
Returns:
- The WineShortcut object + This
@@ -77802,7 +80724,7 @@
Returns:
-WineShortcut +DirectDrawRenderer
@@ -77820,7 +80742,7 @@
Returns:
-

stop() → {void}

+

withRenderAspect(renderAspect) → {Dosbox}

@@ -77828,7 +80750,8 @@

stop - Stops the running shortcut + Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D @@ -77839,6 +80762,55 @@

stop +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
userDatamode -map +string - - <optional>
- - - - -
- - empty - - enabled or disabled
TypeAttributesDefaultDescription
executablemode @@ -77491,100 +80481,10 @@
Parameters:
- - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - - "Y" or "N"
searchmode @@ -77721,7 +80643,7 @@
Parameters:
-
The executable namegdi or opengl
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + @@ -77872,7 +80844,7 @@

stopSource:
@@ -77900,6 +80872,10 @@

stop + This + +
@@ -77908,7 +80884,7 @@
Returns:
-void +Dosbox
@@ -77926,13 +80902,17 @@
Returns:
-

system32directory() → {string}

+

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
@@ -77942,6 +80922,56 @@

syst +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + @@ -77974,7 +81004,7 @@

syst
Source:
@@ -78003,7 +81033,7 @@

Returns:
- system32 directory + This
@@ -78014,7 +81044,7 @@
Returns:
-string +Dosbox
@@ -78032,13 +81062,17 @@
Returns:
-

system64directory() → {string}

+

withScript(command) → {PlainInstaller}

+
+ Sets the installation script consisting of a lambda function +
+ @@ -78047,6 +81081,55 @@

syst +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
command + + +function + + + + The installation command
+ + @@ -78080,7 +81163,7 @@

syst
Source:
@@ -78109,7 +81192,7 @@

Returns:
- system64 directory + The PlainInstaller object
@@ -78120,7 +81203,7 @@
Returns:
-string +PlainInstaller
@@ -78138,7 +81221,7 @@
Returns:
-

to(localDestination) → {Downloader}

+

withSetting(key, value) → {Dosbox}

@@ -78146,7 +81229,7 @@

to - Sets the download destination + Sets a dosbox setting @@ -78182,7 +81265,7 @@
Parameters:
- localDestination + key @@ -78198,7 +81281,30 @@
Parameters:
- The destination of the download. If it is a directory, the file will be placed inside + The key of the setting (example dosbox_memsize) + + + + + + + value + + + + + +any + + + + + + + + + + The value to be set @@ -78239,7 +81345,7 @@
Parameters:
Source:
@@ -78268,7 +81374,7 @@
Returns:
- The Downloader object + This
@@ -78279,7 +81385,7 @@
Returns:
-Downloader +Dosbox
@@ -78297,7 +81403,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

withVersion(major, minor) → {OpenGL}

@@ -78305,7 +81411,7 @@

trustLevel<
- Sets the trust level + Specifies the major and minor versions
@@ -78341,13 +81447,13 @@

Parameters:
- trustLevel + major -string +number @@ -78357,7 +81463,30 @@
Parameters:
- The trust level + The major version + + + + + + + minor + + + + + +number + + + + + + + + + + The minor version @@ -78398,7 +81527,7 @@
Parameters:
Source:
@@ -78427,7 +81556,7 @@
Returns:
- The WineShortcut object + This
@@ -78438,7 +81567,7 @@
Returns:
-WineShortcut +OpenGL
@@ -78456,7 +81585,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

withWindowsVersion(version, servicePack) → {WindowsVersion}

@@ -78464,7 +81593,7 @@

trustLevel<
- set trust level + Specifies the default windows version
@@ -78500,7 +81629,7 @@

Parameters:
- trustlevel + version @@ -78516,7 +81645,30 @@
Parameters:
- + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31 + + + + + + + servicePack + + + + + +string + + + + + + + + + + e.g. sp3 @@ -78557,7 +81709,7 @@
Parameters:
Source:
@@ -78586,7 +81738,7 @@
Returns:
- QuickScript object + This
@@ -78597,7 +81749,7 @@
Returns:
-QuickScript +WindowsVersion
@@ -78615,7 +81767,7 @@
Returns:
-

type(type) → {WineShortcut}

+

wizard(wizard) → {Resource}

@@ -78623,7 +81775,7 @@

type - Sets the shortcut type + Sets the setup wizard @@ -78659,13 +81811,13 @@
Parameters:
- type + wizard -string +SetupWizard @@ -78675,7 +81827,7 @@
Parameters:
- The shortcut type + The setup wizard @@ -78716,7 +81868,7 @@
Parameters:
Source:
@@ -78745,7 +81897,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -78756,7 +81908,7 @@
Returns:
-WineShortcut +Resource
@@ -78774,17 +81926,13 @@
Returns:
-

uninstall(name) → {bool}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- uninstall application -
- @@ -78806,6 +81954,8 @@
Parameters:
Type + Attributes + @@ -78818,23 +81968,33 @@
Parameters:
- name + wizard -string +SetupWizard + + + <optional>
+ + + + + - of the application which shall be uninstalled + + + @@ -78875,7 +82035,7 @@
Parameters:
Source:
@@ -78903,10 +82063,6 @@
Parameters:
Returns:
-
- true if an application has been uninstalled, false otherwise -
-
@@ -78915,7 +82071,10 @@
Returns:
-bool +SetupWizard +| + +Wine
@@ -78933,7 +82092,7 @@
Returns:
-

uninstall() → {void}

+

wizard(wizard) → {Downloader}

@@ -78941,7 +82100,7 @@

uninstall - Uninstalls the shortcut + Sets the setup wizard @@ -78952,6 +82111,55 @@

uninstallParameters:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wizard + + +SetupWizard + + + + The setup wizard
+ + @@ -78985,7 +82193,7 @@

uninstallSource:
@@ -79013,6 +82221,10 @@

uninstallReturns:

+
+ The Downloader object +
+
@@ -79021,7 +82233,7 @@
Returns:
-void +Downloader
@@ -79034,21 +82246,48 @@
Returns:
- + -

url(url) → {Downloader}

+

+ +
+ + + + + + + +
+ +
+ +

default(managedopt) → {boolean|Wine}

+ +
Plugin to set the managed state
+ + +
+ +
+
+ + + + +

Constructor

+

new default(managedopt) → {boolean|Wine}

+ + -
- Sets the URL which shall be used for the download -
@@ -79071,6 +82310,8 @@
Parameters:
Type + Attributes + @@ -79083,23 +82324,33 @@
Parameters:
- url + managed -string +boolean + + + <optional>
+ + + + + + + - The URL + true if it shall be managed @@ -79140,7 +82391,7 @@
Parameters:
Source:
@@ -79169,7 +82420,7 @@
Returns:
- The Downloader object + get: if is managed, set: Wine object
@@ -79180,7 +82431,10 @@
Returns:
-Downloader +boolean +| + +Wine
@@ -79192,13 +82446,33 @@
Returns:
+ +
+ + + + + + + + + + + + + + + + +

Methods

+ -

url(url) → {Resource}

+

_createShortcut(prefixopt)

@@ -79206,7 +82480,7 @@

url - Sets the resource URL + creates shortcut @@ -79230,6 +82504,8 @@
Parameters:
Type + Attributes + @@ -79242,7 +82518,7 @@
Parameters:
- url + prefix @@ -79255,10 +82531,20 @@
Parameters:
+ + + <optional>
+ + + + + - The URL + + + prefix name @@ -79299,7 +82585,7 @@
Parameters:
Source:
@@ -79324,56 +82610,83 @@
Parameters:
-
Returns:
- -
- The Resource object -
-
-
- Type -
-
+ -Resource + + -
-
+ +

_fetchFileNameFromUrl(url) → {string}

+ +
+ Fetches the file name from an URL +
- - - - -

wait() → {Wine}

- + + + + +
Parameters:
+ + + + + + + + + -
- wait until wineserver finishes -
+ + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
url + + +string + + The URL
@@ -79409,7 +82722,7 @@

waitSource:
@@ -79437,6 +82750,10 @@

wait + The file name + +
@@ -79445,7 +82762,7 @@
Returns:
-Wine +string
@@ -79463,13 +82780,17 @@
Returns:
-

winepath(pathopt) → {String}

+

algorithm(algorithm) → {Downloader}

+
+ Sets the algorithm which shall be used to verify the checksum +
+ @@ -79491,8 +82812,6 @@
Parameters:
Type - Attributes - @@ -79505,33 +82824,23 @@
Parameters:
- path + algorithm -String +string - - - <optional>
- - - - - - - - + The checksum algorithm (e.g. "SHA") @@ -79572,7 +82881,7 @@
Parameters:
Source:
@@ -79600,6 +82909,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -79608,7 +82921,7 @@
Returns:
-String +Downloader
@@ -79626,7 +82939,7 @@
Returns:
-

wineServer(wineserver)

+

algorithm(algorithm) → {Resource}

@@ -79634,7 +82947,7 @@

wineServer<
- executes wineserver in current prefix + Sets the checksum algorithm
@@ -79670,7 +82983,7 @@

Parameters:
- wineserver + algorithm @@ -79686,7 +82999,7 @@
Parameters:
- parameter + The algorithm to verify the checksum (e.g. "SHA") @@ -79727,7 +83040,7 @@
Parameters:
Source:
@@ -79752,6 +83065,28 @@
Parameters:
+
Returns:
+ + +
+ The Resource object +
+ + + +
+
+ Type +
+
+ +Resource + + +
+
+ + @@ -79763,7 +83098,7 @@
Parameters:
-

withScript(command) → {PlainInstaller}

+

application(application) → {AppResource}

@@ -79771,7 +83106,7 @@

withScript<
- Sets the installation script consisting of a lambda function + Sets the application containing the resources
@@ -79807,13 +83142,13 @@

Parameters:
- command + application -function +string @@ -79823,7 +83158,7 @@
Parameters:
- The installation command + The application with the resource @@ -79864,7 +83199,7 @@
Parameters:
Source:
@@ -79893,7 +83228,7 @@
Returns:
- The PlainInstaller object + The AppResource object
@@ -79904,7 +83239,7 @@
Returns:
-PlainInstaller +AppResource
@@ -79922,72 +83257,19 @@
Returns:
-

wizard(wizard) → {Resource}

+

architecture() → {string}

-
- Sets the setup wizard -
- - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
@@ -80023,7 +83305,7 @@
Parameters:
Source:
@@ -80052,7 +83334,7 @@
Returns:
- The Resource object + architecture ("x86" or "amd64")
@@ -80063,7 +83345,7 @@
Returns:
-Resource +string
@@ -80081,7 +83363,7 @@
Returns:
-

wizard(wizard) → {Downloader}

+

arguments(args) → {WineShortcut}

@@ -80089,7 +83371,7 @@

wizard - Sets the setup wizard + Sets the shortcut arguments @@ -80125,13 +83407,13 @@
Parameters:
- wizard + args -SetupWizard +array @@ -80141,7 +83423,7 @@
Parameters:
- The setup wizard + The shortcut arguments @@ -80182,7 +83464,7 @@
Parameters:
Source:
@@ -80211,7 +83493,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -80222,7 +83504,7 @@
Returns:
-Downloader +WineShortcut
@@ -80240,7 +83522,7 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

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

@@ -80272,6 +83554,8 @@
Parameters:
+ Default + Description @@ -80282,13 +83566,13 @@
Parameters:
- wizard + architecture -SetupWizard +string @@ -80307,6 +83591,12 @@
Parameters:
+ + + current architecture + + + @@ -80349,7 +83639,7 @@
Parameters:
Source:
@@ -80385,10 +83675,7 @@
Returns:
-SetupWizard -| - -Wine +Array.<string>
@@ -80401,14 +83688,16 @@
Returns:
+ + +

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

+ -

-
@@ -80416,40 +83705,76 @@

Returns:
-
-
+ + +
Parameters:
-

default()

+ + + + -
Setting to set the render target lock mode
+ - - -
-
- +
+ + + - -

Constructor

- + + + - -

new default()

- + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDefaultDescription
distribution name + + +string + + + + <optional>
+ + + +
+ + current distribution + +
@@ -80485,7 +83810,7 @@

new defaultSource:
@@ -80510,30 +83835,28 @@

new defaultReturns:

+ +
+
+ Type +
+
+ +Array.<string> - - - - - - - - +
+
- - - - -

Methods

@@ -80541,7 +83864,7 @@

Methods

-

_createShortcut(prefixopt)

+

binPath(subCategoryopt, versionopt) → {string}

@@ -80549,7 +83872,8 @@

_creat
- creates shortcut + returns the path to the engine binary directory +if no parameters are given, the Wine version of the current prefix is used
@@ -80587,7 +83911,7 @@

Parameters:
- prefix + subCategory @@ -80613,128 +83937,14 @@
Parameters:
- prefix name + Wine sub-category - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - + + + - + @@ -80791,7 +84011,7 @@
Parameters:
Source:
@@ -80820,7 +84040,7 @@
Returns:
- The file name + path to "wine" binary
@@ -80849,7 +84069,7 @@
Returns:
-

algorithm(algorithm) → {Resource}

+

category(category) → {WineShortcut}

@@ -80857,7 +84077,7 @@

algorithm - Sets the checksum algorithm + Sets the shortcut category @@ -80893,7 +84113,7 @@
Parameters:

- + + @@ -80950,7 +84170,7 @@
Parameters:
Source:
@@ -80979,7 +84199,7 @@
Returns:
- The Resource object + The WineShortcut object
@@ -80990,7 +84210,7 @@
Returns:
-Resource +WineShortcut
@@ -81008,7 +84228,7 @@
Returns:
-

algorithm(algorithm) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -81016,7 +84236,7 @@

algorithm - Sets the algorithm which shall be used to verify the checksum + Sets the checksum which shall be used to verify the resource @@ -81052,7 +84272,7 @@
Parameters:

- + + @@ -81109,7 +84329,7 @@
Parameters:
Source:
@@ -81138,7 +84358,7 @@
Returns:
- The Downloader object + The Resource object
@@ -81149,7 +84369,7 @@
Returns:
-Downloader +Resource
@@ -81167,7 +84387,7 @@
Returns:
-

application(application) → {AppResource}

+

checksum(checksum) → {Downloader}

@@ -81175,7 +84395,7 @@

applicatio
- Sets the application containing the resources + Sets the checksum
@@ -81211,7 +84431,7 @@

Parameters:
- + + @@ -81268,7 +84488,7 @@
Parameters:
Source:
@@ -81297,7 +84517,7 @@
Returns:
- The AppResource object + The Downloader object
@@ -81308,7 +84528,7 @@
Returns:
-AppResource +Downloader
@@ -81326,13 +84546,17 @@
Returns:
-

architecture() → {string}

+

create() → {void}

+
+ Creates a new shortcut +
+ @@ -81374,7 +84598,7 @@

architect
Source:
@@ -81402,10 +84626,6 @@

architect

Returns:
-
- architecture ("x86" or "amd64") -
-
@@ -81414,7 +84634,7 @@
Returns:
-string +void
@@ -81432,7 +84652,7 @@
Returns:
-

arguments(args) → {WineShortcut}

+

create() → {Wine}

@@ -81440,7 +84660,7 @@

arguments - Sets the shortcut arguments + runs "wineboot" @@ -81451,60 +84671,11 @@

argumentsParameters:

- -

NameTypeDescription
urlversion @@ -80747,10 +83957,20 @@
Parameters:
+ + <optional>
+ + + + + +
The URLWine version
algorithmcategory @@ -80909,7 +84129,7 @@
Parameters:
-
The algorithm to verify the checksum (e.g. "SHA")The shortcut category
algorithmchecksum @@ -81068,7 +84288,7 @@
Parameters:
-
The checksum algorithm (e.g. "SHA")The checksum
applicationchecksum @@ -81227,7 +84447,7 @@
Parameters:
-
The application with the resourceThe checksum which shall be used to verify the download
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
+
@@ -81533,7 +84704,7 @@
Parameters:
Source:
@@ -81562,7 +84733,7 @@
Returns:
- The WineShortcut object + The Wine object
@@ -81573,7 +84744,7 @@
Returns:
-WineShortcut +Wine
@@ -81591,13 +84762,17 @@
Returns:
-

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

+

description(description) → {WineShortcut}

+
+ Sets the shortcut description +
+ @@ -81619,12 +84794,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -81635,7 +84806,7 @@
Parameters:
- architecture + description @@ -81648,26 +84819,10 @@
Parameters:
- - - <optional>
- - - - - - - - - current architecture - - - - - + The shortcut description @@ -81708,7 +84863,7 @@
Parameters:
Source:
@@ -81736,6 +84891,10 @@
Parameters:
Returns:
+
+ The WineShortcut object +
+
@@ -81744,7 +84903,7 @@
Returns:
-Array.<string> +WineShortcut
@@ -81762,13 +84921,17 @@
Returns:
-

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

+

directory(directory) → {Resource}

+
+ Sets the directory inside the resources directory where the Resource is stored +
+ @@ -81790,12 +84953,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -81806,7 +84965,7 @@
Parameters:
- distribution name + directory @@ -81819,26 +84978,10 @@
Parameters:
- - - <optional>
- - - - - - - - - - - current distribution - - - + The directory path @@ -81879,7 +85022,7 @@
Parameters:
Source:
@@ -81907,6 +85050,10 @@
Parameters:
Returns:
+
+ The Resource object +
+
@@ -81915,7 +85062,7 @@
Returns:
-Array.<string> +Resource
@@ -81933,7 +85080,7 @@
Returns:
-

binPath(subCategoryopt, versionopt) → {string}

+

dosConfigFile() → {string}

@@ -81941,8 +85088,7 @@

binPath - returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used + Fetch the prefix dosbox configuration file @@ -81953,93 +85099,158 @@

binPathParameters:

+ + + + +
+ - - - - - - + - + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + + + + + + + + + + + + + + + + + +
Returns:
- - +
+ The dosbox configuration file path +
+ + +
+
+ Type +
+
+string -
- - - + + + - - - - - + - - + +

download(setupWizard) → {String}

+ - + - - + +
+ Download the setup resources in the same directory, and returns the path of the .exe +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeAttributesDescription
subCategory - - -string - - - - <optional>
- - + - -
Wine sub-category
+ + + + + + + + + + + + + + + + + - + - - - + @@ -82080,7 +85291,7 @@
Parameters:
Source:
@@ -82109,7 +85320,7 @@
Returns:
- path to "wine" binary + The .exe file entry that can be used to continue the installation
@@ -82120,7 +85331,7 @@
Returns:
-string +String
@@ -82138,7 +85349,7 @@
Returns:
-

category(category) → {WineShortcut}

+

downloadFinished(wine) → {boolean}

@@ -82146,7 +85357,8 @@

category - Sets the shortcut category + Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first @@ -82182,13 +85394,13 @@
Parameters:

- + + @@ -82239,7 +85451,7 @@
Parameters:
Source:
@@ -82268,7 +85480,7 @@
Returns:
- The WineShortcut object + True if the download has finished, false otherwise
@@ -82279,7 +85491,7 @@
Returns:
-WineShortcut +boolean
@@ -82297,7 +85509,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

downloadStarted(wine) → {boolean}

@@ -82305,7 +85517,7 @@

checksum - Sets the checksum + Checks whether the software download has started @@ -82341,13 +85553,13 @@
Parameters:

- + + @@ -82398,7 +85610,7 @@
Parameters:
Source:
@@ -82427,7 +85639,7 @@
Returns:
- The Downloader object + True if the download has started, false otherwise
@@ -82438,7 +85650,7 @@
Returns:
-Downloader +boolean
@@ -82456,7 +85668,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

environment(environment) → {WineShortcut}

@@ -82464,7 +85676,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the shortcut environment variables @@ -82500,7 +85712,7 @@
Parameters:

- + + @@ -82557,7 +85769,7 @@
Parameters:
Source:
@@ -82586,7 +85798,7 @@
Returns:
- The Resource object + The WineShortcut object
@@ -82597,7 +85809,7 @@
Returns:
-Resource +WineShortcut
@@ -82615,7 +85827,7 @@
Returns:
-

create() → {Wine}

+

environment(environment) → {QuickScript}

@@ -82623,7 +85835,7 @@

create - runs "wineboot" + set environment @@ -82634,114 +85846,53 @@

create - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
- - - - - - - - - - - - - - - - -
Returns:
+

NameTypeDescription
versionsetupWizard -string +SetupWizard - - <optional>
- - - - - -
Wine versionThe setup wizard
categorywine -string +Wine @@ -82198,7 +85410,7 @@
Parameters:
-
The shortcut categoryThe wine engine object
checksumwine -string +Wine @@ -82357,7 +85569,7 @@
Parameters:
-
The checksum which shall be used to verify the downloadThe wine engine object
checksumenvironment @@ -82516,7 +85728,7 @@
Parameters:
-
The checksumThe environment variables
+ + + + -
- The Wine object -
- + -
-
- Type -
-
-Wine + -
-
+ + + + + + + + + - - + - -

create() → {void}

- + + - - - -
- Creates a new shortcut -
- - - - - - - + +
NameTypeDescription
environment + + +string + + variables
@@ -82777,7 +85928,7 @@

createSource:
@@ -82805,6 +85956,10 @@

createReturns:

+
+ QuickScript object +
+
@@ -82813,7 +85968,7 @@
Returns:
-void +QuickScript
@@ -82831,7 +85986,7 @@
Returns:
-

description(description) → {WineShortcut}

+

executable(executable, args)

@@ -82839,7 +85994,7 @@

descriptio
- Sets the shortcut description + set executable
@@ -82875,23 +86030,36 @@

Parameters:
- description + executable - -string + + + + executable without path (e.g. "Steam.exe") + + + + + + + args + + + + - The shortcut description + use array (e.g. ["-applaunch", 409160]) @@ -82932,7 +86100,7 @@
Parameters:
Source:
@@ -82957,28 +86125,6 @@
Parameters:
-
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - @@ -82990,72 +86136,19 @@
Returns:
-

directory(directory) → {Resource}

- - +

fontDirectory() → {string}

- - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - The directory path
@@ -83091,7 +86184,7 @@
Parameters:
Source:
@@ -83120,7 +86213,7 @@
Returns:
- The Resource object + font directory
@@ -83131,7 +86224,7 @@
Returns:
-Resource +string
@@ -83149,7 +86242,7 @@
Returns:
-

download(setupWizard) → {String}

+

get(resourceName) → {Resource}

@@ -83157,7 +86250,7 @@

download - Download the setup resources in the same directory, and returns the path of the .exe + Returns the searched resource @@ -83193,13 +86286,13 @@
Parameters:
- setupWizard + resourceName -SetupWizard +string @@ -83209,7 +86302,7 @@
Parameters:
- The setup wizard + The name of the resource @@ -83250,7 +86343,7 @@
Parameters:
Source:
@@ -83279,7 +86372,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + The found resource
@@ -83290,7 +86383,7 @@
Returns:
-String +Resource
@@ -83308,7 +86401,7 @@
Returns:
-

environment(environment) → {WineShortcut}

+

get() → {String}

@@ -83316,7 +86409,7 @@

environmen
- Sets the shortcut environment variables + Gets the content of the downloaded file
@@ -83327,55 +86420,6 @@

environmen -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - @@ -83409,7 +86453,7 @@
Parameters:
Source:
@@ -83438,7 +86482,7 @@
Returns:
- The WineShortcut object + The content of downloaded file
@@ -83449,7 +86493,7 @@
Returns:
-WineShortcut +String
@@ -83467,7 +86511,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

get() → {string}

@@ -83475,7 +86519,7 @@

environmen
- set environment + Fetches the Resource and returns the path leading to the downloaded resource
@@ -83486,55 +86530,6 @@

environmen -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - @@ -83568,7 +86563,7 @@
Parameters:
Source:
@@ -83597,7 +86592,7 @@
Returns:
- QuickScript object + The path leading to the downloaded resource
@@ -83608,7 +86603,7 @@
Returns:
-QuickScript +string
@@ -83626,7 +86621,7 @@
Returns:
-

executable(executable, args)

+

getContainer() → {string}

@@ -83634,7 +86629,7 @@

executable<
- set executable + Returns the name of the container belonging to a shortcut
@@ -83645,66 +86640,114 @@

executable< -

Parameters:
+ + + + +
+ - - - - - - + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + + + + + + - + + + + + + + + + + +
Returns:
+
+ The container name +
+ + +
+
+ Type +
+
+string -
- - - + + + - - - - - - + + - - + +

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
@@ -83740,7 +86783,7 @@
Parameters:
Source:
@@ -83765,6 +86808,28 @@
Parameters:
+
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + @@ -83776,19 +86841,72 @@
Parameters:
-

fontDirectory() → {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
@@ -83824,7 +86942,7 @@

fontDire
Source:
@@ -83853,7 +86971,7 @@

Returns:
- font directory + This
@@ -83864,7 +86982,7 @@
Returns:
-string +GogScript
@@ -83882,7 +87000,7 @@
Returns:
-

get() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -83890,7 +87008,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Sets the setup file(s) name so that the script can fetch it from gog.com @@ -83901,6 +87019,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileNames + + + + + +Array.<string> + + + + + + + + + + The setup file name(s) + + + + + + + @@ -83934,7 +87101,7 @@

getSource:
@@ -83963,7 +87130,7 @@
Returns:
- The path leading to the downloaded resource + This
@@ -83974,7 +87141,7 @@
Returns:
-string +GogScript
@@ -83992,7 +87159,7 @@
Returns:
-

get() → {String}

+

headers(headers) → {Downloader}

@@ -84000,7 +87167,7 @@

get - Gets the content of the downloaded file + Sets the http headers @@ -84011,6 +87178,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + headers + + + + + +Object + + + + + + + + + + The http headers + + + + + + + @@ -84044,7 +87260,7 @@

getSource:
@@ -84073,7 +87289,7 @@
Returns:
- The content of downloaded file + The Downloader object
@@ -84084,7 +87300,7 @@
Returns:
-String +Downloader
@@ -84102,7 +87318,7 @@
Returns:
-

get(resourceName) → {Resource}

+

isHdpi() → {boolean}

@@ -84110,7 +87326,7 @@

get - Returns the searched resource + Fetches whether hdpi is enabled or not @@ -84121,55 +87337,6 @@

get - - - - Name - - - Type - - - - - - Description - - - - - - - - - resourceName - - - - - -string - - - - - - - - - - The name of the resource - - - - - - - @@ -84203,7 +87370,7 @@
Parameters:
Source:
@@ -84232,7 +87399,7 @@
Returns:
- The found resource + True if hdpi is enabled, false otherwise
@@ -84243,7 +87410,7 @@
Returns:
-Resource +boolean
@@ -84261,7 +87428,7 @@
Returns:
-

getContainer() → {string}

+

json() → {any}

@@ -84269,7 +87436,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Gets the content of the downloaded file and returns it as a JSON value
@@ -84313,7 +87480,7 @@

getContai
Source:
@@ -84342,7 +87509,7 @@

Returns:
- The container name + The json value
@@ -84353,7 +87520,7 @@
Returns:
-string +any
@@ -84371,7 +87538,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

kill() → {Wine}

@@ -84379,7 +87546,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + kill wine server
@@ -84390,55 +87557,6 @@

gogSe -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - @@ -84472,7 +87590,7 @@
Parameters:
Source:
@@ -84500,10 +87618,6 @@
Parameters:
Returns:
-
- This -
-
@@ -84512,7 +87626,7 @@
Returns:
-GogScript +Wine
@@ -84530,7 +87644,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

loginToGog(setupWizard) → {GogScript}

@@ -84538,7 +87652,8 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + 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
@@ -84574,13 +87689,13 @@

Parameters:
- setupFileNames + setupWizard -Array.<string> +SetupWizard @@ -84590,7 +87705,7 @@
Parameters:
- The setup file name(s) + The setupWizard to use @@ -84631,7 +87746,7 @@
Parameters:
Source:
@@ -84689,7 +87804,7 @@
Returns:
-

headers(headers) → {Downloader}

+

message(message) → {Downloader}

@@ -84697,7 +87812,7 @@

headers - Sets the http headers + Sets the download message text @@ -84733,13 +87848,13 @@
Parameters:
- headers + message -Object +string @@ -84749,7 +87864,7 @@
Parameters:
- The http headers + The download message @@ -84790,7 +87905,7 @@
Parameters:
Source:
@@ -84848,7 +87963,7 @@
Returns:
-

json() → {any}

+

miniature(miniatureopt)

@@ -84856,7 +87971,7 @@

json - Gets the content of the downloaded file and returns it as a JSON value + get/set miniature (for the installation and the shortcut) @@ -84867,6 +87982,67 @@

json + + + + Name + + + Type + + + Attributes + + + + + Description + + + + + + + + + miniature + + + + + +URI + + + + + + + + + <optional>
+ + + + + + + + + + + path to the miniature file + + + + + + + @@ -84900,7 +88076,7 @@

jsonSource:
@@ -84925,56 +88101,86 @@

json - The json value - -
-
- Type -
-
+ -any + + -
-
+ +

miniature(miniature) → {WineShortcut}

+ +
+ Sets the miniature for the shortcut +
+ + - - - - -

kill() → {Wine}

- + + +
Parameters:
+ + + + + + + -
- kill wine server -
+ + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
miniature + + +Array.<string> +| +URI + + An array which specifies the application of which the miniature shall be used or URI of the miniature
@@ -85010,7 +88216,7 @@

killSource:
@@ -85038,6 +88244,10 @@

kill + The WineShortcut object + +
@@ -85046,7 +88256,7 @@
Returns:
-Wine +WineShortcut
@@ -85064,7 +88274,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

name(name) → {Resource}

@@ -85072,8 +88282,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 resource name
@@ -85109,13 +88318,13 @@

Parameters:
- setupWizard + name -SetupWizard +string @@ -85125,7 +88334,7 @@
Parameters:
- The setupWizard to use + The name of the resource @@ -85166,7 +88375,7 @@
Parameters:
Source:
@@ -85195,7 +88404,7 @@
Returns:
- This + The Resource object
@@ -85206,7 +88415,7 @@
Returns:
-GogScript +Resource
@@ -85224,7 +88433,7 @@
Returns:
-

message(message) → {Downloader}

+

name(name) → {WineShortcut}

@@ -85232,7 +88441,7 @@

message - Sets the download message text + Sets the shortcut name @@ -85268,7 +88477,7 @@
Parameters:
- message + name @@ -85284,7 +88493,7 @@
Parameters:
- The download message + The shortcut name @@ -85325,7 +88534,7 @@
Parameters:
Source:
@@ -85354,7 +88563,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -85365,7 +88574,7 @@
Returns:
-Downloader +WineShortcut
@@ -85383,7 +88592,7 @@
Returns:
-

miniature(miniature) → {WineShortcut}

+

of(shortcut) → {void}

@@ -85391,7 +88600,7 @@

miniature - Sets the miniature for the shortcut + Sets shortcut @@ -85427,16 +88636,13 @@
Parameters:
- miniature + shortcut -Array.<string> -| - -URI +string @@ -85446,7 +88652,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + shortcut @@ -85487,7 +88693,7 @@
Parameters:
Source:
@@ -85515,10 +88721,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -85527,7 +88729,7 @@
Returns:
-WineShortcut +void
@@ -85545,7 +88747,7 @@
Returns:
-

miniature(miniatureopt)

+

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

@@ -85553,7 +88755,7 @@

miniature - get/set miniature (for the installation and the shortcut) + Specifies if the download shall be executed only if a newer version is available @@ -85577,8 +88779,6 @@
Parameters:
Type - Attributes - @@ -85591,33 +88791,23 @@
Parameters:
- miniature + onlyIfUpdateAvailable -URI +boolean - - - <optional>
- - - - - - - - path to the miniature file + true the download shall be executed only if a newer version is available @@ -85658,7 +88848,7 @@
Parameters:
Source:
@@ -85683,6 +88873,28 @@
Parameters:
+
Returns:
+ + +
+ The Downloader object +
+ + + +
+
+ Type +
+
+ +Downloader + + +
+
+ + @@ -85694,17 +88906,13 @@
Parameters:
-

name(name) → {Resource}

+

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

-
- Sets the resource name -
- @@ -85726,6 +88934,8 @@
Parameters:
Type + Attributes + @@ -85738,7 +88948,7 @@
Parameters:
- name + prefix @@ -85751,10 +88961,119 @@
Parameters:
+ + + <optional>
+ + + + + - The name of the resource + + + + + + + + + + distribution + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + + + + + + + + architecture + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + + + + + + + + version + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + @@ -85795,7 +89114,7 @@
Parameters:
Source:
@@ -85823,10 +89142,6 @@
Parameters:
Returns:
-
- The Resource object -
-
@@ -85835,7 +89150,10 @@
Returns:
-Resource +string +| + +Wine
@@ -85853,7 +89171,7 @@
Returns:
-

name(name) → {WineShortcut}

+

prefix(prefix) → {WineShortcut}

@@ -85861,7 +89179,7 @@

name - Sets the shortcut name + Sets the shortcut prefix @@ -85897,7 +89215,7 @@
Parameters:
- name + prefix @@ -85913,7 +89231,7 @@
Parameters:
- The shortcut name + The shortcut prefix @@ -85954,7 +89272,7 @@
Parameters:
Source:
@@ -86012,7 +89330,7 @@
Returns:
-

of(shortcut) → {void}

+

prefixDirectory() → {string}

@@ -86020,7 +89338,7 @@

of - Sets shortcut + returns prefix directory @@ -86031,60 +89349,11 @@

of - - - - Name - - - Type - - - Description - - - - - - - - - shortcut - - - - - -string - - - - - - - - - - shortcut - - - - - - - - - - - -
+
@@ -86113,7 +89382,7 @@
Parameters:
Source:
@@ -86149,7 +89418,7 @@
Returns:
-void +string
@@ -86167,72 +89436,19 @@
Returns:
-

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - +

programFiles() → {string}

- - -
- 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
@@ -86268,7 +89484,7 @@
Parameters:
Source:
@@ -86297,7 +89513,7 @@
Returns:
- The Downloader object + name of "Program Files"
@@ -86308,7 +89524,7 @@
Returns:
-Downloader +string
@@ -86326,17 +89542,13 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

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

-
- Sets the shortcut prefix -
- @@ -86358,8 +89570,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -86370,7 +89586,7 @@
Parameters:
- prefix + executable @@ -86383,157 +89599,35 @@
Parameters:
+ + - - - The shortcut prefix - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - + - + + - - - -

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

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - + + + - - - + + - - + + @@ -86560,7 +89660,7 @@
Parameters:
- + + @@ -86593,13 +89699,13 @@
Parameters:
- + + @@ -86626,13 +89738,13 @@
Parameters:
- + + - -
NameTypeAttributes + + Description
prefixargs -string +array @@ -86552,6 +89646,12 @@
Parameters:
+
+ + [] + +
distributionworkingDirectory @@ -86585,6 +89685,12 @@
Parameters:
+
+ + working container + +
architecturecaptureOutput -string +boolean @@ -86618,6 +89724,12 @@
Parameters:
+
+ + false + +
versionwait -string +boolean @@ -86651,224 +89763,58 @@
Parameters:
+
+ + false + +
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - + + + userData - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - + + + +map + + + + + + <optional>
+ + - + + - + + + + empty + + + - -

programFiles() → {string}

- + + - - - - - - - - - + + @@ -86904,7 +89850,7 @@

programFi
Source:
@@ -86933,7 +89879,7 @@

Returns:
- name of "Program Files" + output
@@ -86944,7 +89890,7 @@
Returns:
-string +String
@@ -87117,372 +90063,6 @@
Returns:
-

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 - - -
-
- - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

@@ -89406,7 +91986,7 @@
Returns:
-

wait() → {Wine}

+

wait() → {Wine}

@@ -89494,7 +92074,7 @@
Returns:
-Wine +Wine
@@ -89812,7 +92392,7 @@
Parameters:
-

withScript(command) → {PlainInstaller}

+

withApplicationWindowsVersion(application, os) → {WindowsVersion}

@@ -89820,7 +92400,7 @@

withScript<
- Sets the installation script consisting of a lambda function + Specifies the windows version for a given application
@@ -89856,13 +92436,13 @@

Parameters:
- command + application -function +string @@ -89872,7 +92452,30 @@
Parameters:
- The installation command + The application executable + + + + + + + os + + + + + +string + + + + + + + + + + The windows version @@ -89913,7 +92516,7 @@
Parameters:
Source:
@@ -89942,7 +92545,7 @@
Returns:
- The PlainInstaller object + This
@@ -89953,7 +92556,7 @@
Returns:
-PlainInstaller +WindowsVersion
@@ -89971,7 +92574,7 @@
Returns:
-

wizard(wizard) → {Resource}

+

withCpuCycles(cpuCycles) → {Dosbox}

@@ -89979,7 +92582,8 @@

wizard - Sets the setup wizard + Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D @@ -90015,13 +92619,13 @@
Parameters:
- wizard + cpuCycles -SetupWizard +int @@ -90031,7 +92635,7 @@
Parameters:
- The setup wizard + (example: max 95% limit 33000) @@ -90072,7 +92676,7 @@
Parameters:
Source:
@@ -90101,7 +92705,7 @@
Returns:
- The Resource object + This
@@ -90112,7 +92716,7 @@
Returns:
-Resource +Dosbox
@@ -90130,7 +92734,7 @@
Returns:
-

wizard(wizard) → {Downloader}

+

withDimensions(width, height) → {VirtualDesktop}

@@ -90138,7 +92742,7 @@

wizard - Sets the setup wizard + Specifies the dimensions of the virtual desktop @@ -90174,13 +92778,13 @@
Parameters:
- wizard + width -SetupWizard +number @@ -90190,7 +92794,30 @@
Parameters:
- The setup wizard + width of virtual desktop (in px) + + + + + + + height + + + + + +number + + + + + + + + + + height of virtual desktop (in px) @@ -90231,7 +92858,7 @@
Parameters:
Source:
@@ -90260,7 +92887,7 @@
Returns:
- The Downloader object + This
@@ -90271,7 +92898,7 @@
Returns:
-Downloader +VirtualDesktop
@@ -90289,13 +92916,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

withDriver(driver) → {SoundDriver}

+
+ Specifies the used sound driver +
+ @@ -90317,8 +92948,6 @@
Parameters:
Type - Attributes - @@ -90331,33 +92960,23 @@
Parameters:
- wizard + driver -SetupWizard +string - - - <optional>
- - - - - - - - + alsa or pulse @@ -90398,7 +93017,7 @@
Parameters:
Source:
@@ -90426,6 +93045,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -90434,10 +93057,7 @@
Returns:
-SetupWizard -| - -Wine +SoundDriver
@@ -90450,55 +93070,77 @@
Returns:
+ + +

withExtension(extension) → {NativeApplication}

+ - -

+
+ Specifies the file extension +
-
-
+ + + +
Parameters:
-

default()

+ + + + -
Setting to configure strict draw ordering
+ - - -
-
- +
+ - -

Constructor

- + - -

new default()

- + + + + + + + + + + + + + - + + +
NameTypeDescription
extension + + +string + + The file extension (pdf, txt, rtf)
@@ -90534,7 +93176,7 @@

new defaultSource:
@@ -90559,30 +93201,32 @@

new defaultReturns:

+ +
+ This +
+
+
+ Type +
+
+ +NativeApplication - - - - - - - +
+
- - - - -

Methods

@@ -90590,7 +93234,7 @@

Methods

-

_createShortcut(prefixopt)

+

withHdpi(hdpi) → {HDPI}

@@ -90598,7 +93242,7 @@

_creat
- creates shortcut + Specifies whether hdpi should be enabled or not
@@ -90622,8 +93266,6 @@

Parameters:
Type - Attributes - @@ -90636,33 +93278,23 @@
Parameters:
- prefix + hdpi -string +boolean - - - <optional>
- - - - - - - - prefix name + true if hdpi shall be enabled @@ -90703,7 +93335,7 @@
Parameters:
Source:
@@ -90728,6 +93360,28 @@
Parameters:
+
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + @@ -90739,7 +93393,7 @@
Parameters:
-

_fetchFileNameFromUrl(url) → {string}

+

withManaged(managed) → {Managed}

@@ -90747,7 +93401,7 @@

- Fetches the file name from an URL + Specifies the global managed state
@@ -90783,13 +93437,13 @@

Parameters:
- url + managed -string +boolean @@ -90799,7 +93453,7 @@
Parameters:
- The URL + True if it shall be managed @@ -90840,7 +93494,7 @@
Parameters:
Source:
@@ -90869,7 +93523,7 @@
Returns:
- The file name + This
@@ -90880,7 +93534,7 @@
Returns:
-string +Managed
@@ -90898,7 +93552,7 @@
Returns:
-

algorithm(algorithm) → {Resource}

+

withManagedApplication(application, managed) → {Managed}

@@ -90906,7 +93560,7 @@

algorithm - Sets the checksum algorithm + Specifies the managed state for a given application @@ -90942,7 +93596,7 @@
Parameters:
- algorithm + application @@ -90958,7 +93612,30 @@
Parameters:
- The algorithm to verify the checksum (e.g. "SHA") + The application + + + + + + + managed + + + + + +boolean + + + + + + + + + + True if the application shall be managed @@ -90999,7 +93676,7 @@
Parameters:
Source:
@@ -91028,7 +93705,7 @@
Returns:
- The Resource object + This
@@ -91039,7 +93716,7 @@
Returns:
-Resource +Managed
@@ -91057,7 +93734,7 @@
Returns:
-

algorithm(algorithm) → {Downloader}

+

withMemSize(memSize) → {Dosbox}

@@ -91065,7 +93742,8 @@

algorithm - Sets the algorithm which shall be used to verify the checksum + Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D @@ -91101,13 +93779,13 @@
Parameters:
- algorithm + memSize -string +int @@ -91117,7 +93795,7 @@
Parameters:
- The checksum algorithm (e.g. "SHA") + The memory size @@ -91158,7 +93836,7 @@
Parameters:
Source:
@@ -91187,7 +93865,7 @@
Returns:
- The Downloader object + This
@@ -91198,7 +93876,7 @@
Returns:
-Downloader +Dosbox
@@ -91216,7 +93894,7 @@
Returns:
-

application(application) → {AppResource}

+

withMode(mode) → {FontSmoothing}

@@ -91224,7 +93902,7 @@

applicatio
- Sets the application containing the resources + Specifies the used font smoothing mode
@@ -91260,7 +93938,7 @@

Parameters:
- application + mode @@ -91276,7 +93954,7 @@
Parameters:
- The application with the resource + "RGB", "BGR" or "Gray Scale" @@ -91317,7 +93995,7 @@
Parameters:
Source:
@@ -91346,113 +94024,7 @@
Returns:
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") + This
@@ -91463,7 +94035,7 @@
Returns:
-string +FontSmoothing
@@ -91481,7 +94053,7 @@
Returns:
-

arguments(args) → {WineShortcut}

+

withMode(mode) → {GLSL}

@@ -91489,7 +94061,7 @@

arguments - Sets the shortcut arguments + Specifies the mode @@ -91525,13 +94097,13 @@
Parameters:
- args + mode -array +string @@ -91541,7 +94113,7 @@
Parameters:
- The shortcut arguments + enabled or disabled @@ -91582,7 +94154,7 @@
Parameters:
Source:
@@ -91611,7 +94183,7 @@
Returns:
- The WineShortcut object + This
@@ -91622,7 +94194,7 @@
Returns:
-WineShortcut +GLSL
@@ -91640,13 +94212,17 @@
Returns:
-

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

+

withMode(mode) → {TakeFocus}

+
+ Specifies the mode +
+ @@ -91668,12 +94244,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -91684,7 +94256,7 @@
Parameters:
- architecture + mode @@ -91697,26 +94269,10 @@
Parameters:
- - - <optional>
- - - - - - - - - - current architecture - - - - + "Y" or "N" @@ -91757,7 +94313,7 @@
Parameters:
Source:
@@ -91785,6 +94341,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -91793,7 +94353,7 @@
Returns:
-Array.<string> +TakeFocus
@@ -91811,13 +94371,17 @@
Returns:
-

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

+

withMode(mode) → {DirectDrawRenderer}

+
+ Selects the used direct draw mode (either gdi or opengl) +
+ @@ -91839,12 +94403,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -91855,7 +94415,7 @@
Parameters:
- distribution name + mode @@ -91868,26 +94428,10 @@
Parameters:
- - - <optional>
- - - - - - - - - - current distribution - - - - + gdi or opengl @@ -91928,7 +94472,7 @@
Parameters:
Source:
@@ -91956,6 +94500,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -91964,7 +94512,7 @@
Returns:
-Array.<string> +DirectDrawRenderer
@@ -91982,7 +94530,7 @@
Returns:
-

binPath(subCategoryopt, versionopt) → {string}

+

withRenderAspect(renderAspect) → {Dosbox}

@@ -91990,8 +94538,8 @@

binPath - returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used + Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D @@ -92015,8 +94563,6 @@
Parameters:
Type - Attributes - @@ -92029,66 +94575,23 @@
Parameters:
- subCategory - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - Wine sub-category - - - - - - - version + renderAspect -string +boolean - - - <optional>
- - - - - - - - Wine version + The render aspect @@ -92129,7 +94632,7 @@
Parameters:
Source:
@@ -92158,7 +94661,7 @@
Returns:
- path to "wine" binary + This
@@ -92169,7 +94672,7 @@
Returns:
-string +Dosbox
@@ -92187,7 +94690,7 @@
Returns:
-

category(category) → {WineShortcut}

+

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

@@ -92195,7 +94698,8 @@

category - Sets the shortcut category + Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D @@ -92231,13 +94735,13 @@
Parameters:
- category + renderFrameSkip -string +int @@ -92247,7 +94751,7 @@
Parameters:
- The shortcut category + The render frameskip @@ -92288,7 +94792,7 @@
Parameters:
Source:
@@ -92317,7 +94821,7 @@
Returns:
- The WineShortcut object + This
@@ -92328,7 +94832,7 @@
Returns:
-WineShortcut +Dosbox
@@ -92346,7 +94850,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

withScript(command) → {PlainInstaller}

@@ -92354,7 +94858,7 @@

checksum - Sets the checksum + Sets the installation script consisting of a lambda function @@ -92390,13 +94894,13 @@
Parameters:
- checksum + command -string +function @@ -92406,7 +94910,7 @@
Parameters:
- The checksum which shall be used to verify the download + The installation command @@ -92447,7 +94951,7 @@
Parameters:
Source:
@@ -92476,7 +94980,7 @@
Returns:
- The Downloader object + The PlainInstaller object
@@ -92487,7 +94991,7 @@
Returns:
-Downloader +PlainInstaller
@@ -92505,7 +95009,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

withSetting(key, value) → {Dosbox}

@@ -92513,7 +95017,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets a dosbox setting @@ -92549,7 +95053,7 @@
Parameters:
- checksum + key @@ -92565,122 +95069,35 @@
Parameters:
- The checksum + The key of the setting (example dosbox_memsize) - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - + + + value + + + + +any + + - - + - -

create() → {Wine}

- + The value to be set + - - - -
- runs "wineboot" -
- - - - - - - + + @@ -92716,7 +95133,7 @@

createSource:
@@ -92745,124 +95162,18 @@
Returns:
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut + This
- - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - -
Type
-void +Dosbox
@@ -92880,7 +95191,7 @@
Returns:
-

description(description) → {WineShortcut}

+

withVersion(major, minor) → {OpenGL}

@@ -92888,7 +95199,7 @@

descriptio
- Sets the shortcut description + Specifies the major and minor versions
@@ -92924,13 +95235,13 @@

Parameters:
- description + major -string +number @@ -92940,7 +95251,30 @@
Parameters:
- The shortcut description + The major version + + + + + + + minor + + + + + +number + + + + + + + + + + The minor version @@ -92981,7 +95315,7 @@
Parameters:
Source:
@@ -93010,7 +95344,7 @@
Returns:
- The WineShortcut object + This
@@ -93021,7 +95355,7 @@
Returns:
-WineShortcut +OpenGL
@@ -93039,7 +95373,7 @@
Returns:
-

directory(directory) → {Resource}

+

withWindowsVersion(version, servicePack) → {WindowsVersion}

@@ -93047,7 +95381,7 @@

directory - Sets the directory inside the resources directory where the Resource is stored + Specifies the default windows version @@ -93083,7 +95417,7 @@
Parameters:
- directory + version @@ -93099,7 +95433,30 @@
Parameters:
- The directory path + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31 + + + + + + + servicePack + + + + + +string + + + + + + + + + + e.g. sp3 @@ -93140,7 +95497,7 @@
Parameters:
Source:
@@ -93169,7 +95526,7 @@
Returns:
- The Resource object + This
@@ -93180,7 +95537,7 @@
Returns:
-Resource +WindowsVersion
@@ -93198,7 +95555,7 @@
Returns:
-

download(setupWizard) → {String}

+

wizard(wizard) → {Resource}

@@ -93206,7 +95563,7 @@

download - Download the setup resources in the same directory, and returns the path of the .exe + Sets the setup wizard @@ -93242,7 +95599,7 @@
Parameters:
- setupWizard + wizard @@ -93299,7 +95656,7 @@
Parameters:
Source:
@@ -93328,7 +95685,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + The Resource object
@@ -93339,7 +95696,7 @@
Returns:
-String +Resource
@@ -93357,17 +95714,13 @@
Returns:
-

environment(environment) → {WineShortcut}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the shortcut environment variables -
- @@ -93389,6 +95742,8 @@
Parameters:
Type + Attributes + @@ -93401,23 +95756,33 @@
Parameters:
- environment + wizard -string +SetupWizard + + + <optional>
+ + + + + + + - The environment variables + @@ -93458,7 +95823,7 @@
Parameters:
Source:
@@ -93486,10 +95851,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -93498,7 +95859,10 @@
Returns:
-WineShortcut +SetupWizard +| + +Wine
@@ -93516,7 +95880,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

wizard(wizard) → {Downloader}

@@ -93524,7 +95888,7 @@

environmen
- set environment + Sets the setup wizard
@@ -93560,13 +95924,13 @@

Parameters:
- environment + wizard -string +SetupWizard @@ -93576,7 +95940,7 @@
Parameters:
- variables + The setup wizard @@ -93617,7 +95981,7 @@
Parameters:
Source:
@@ -93646,7 +96010,7 @@
Returns:
- QuickScript object + The Downloader object
@@ -93657,7 +96021,7 @@
Returns:
-QuickScript +Downloader
@@ -93670,12 +96034,147 @@
Returns:
+ + + + + + + +

+ + + + + + + +
+ +
+ +

default()

+ +
AppResource class
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new default()

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

Methods

+ + -

executable(executable, args)

+

_createShortcut(prefixopt)

@@ -93683,7 +96182,7 @@

executable<
- set executable + creates shortcut
@@ -93707,6 +96206,8 @@

Parameters:
Type + Attributes + @@ -93719,36 +96220,33 @@
Parameters:
- executable + prefix - + +string - + - executable without path (e.g. "Steam.exe") - - - - - - - args + + + <optional>
+ - - - + + + - use array (e.g. ["-applaunch", 409160]) + prefix name @@ -93789,7 +96287,7 @@
Parameters:
Source:
@@ -93825,13 +96323,16 @@
Parameters:
-

fontDirectory() → {string}

+

_fetchFileNameFromUrl(url) → {string}

+
+ Fetches the file name from an URL +
@@ -93841,6 +96342,56 @@

fontDire +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
url + + +string + + + + The URL
+ + + @@ -93873,7 +96424,7 @@

fontDire
Source:
@@ -93902,7 +96453,7 @@

Returns:
- font directory + The file name
@@ -93931,7 +96482,7 @@
Returns:
-

get() → {string}

+

algorithm(algorithm) → {Downloader}

@@ -93939,7 +96490,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Sets the algorithm which shall be used to verify the checksum @@ -93950,6 +96501,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + algorithm + + + + + +string + + + + + + + + + + The checksum algorithm (e.g. "SHA") + + + + + + + @@ -93983,7 +96583,7 @@

getSource:
@@ -94012,7 +96612,7 @@
Returns:
- The path leading to the downloaded resource + The Downloader object
@@ -94023,7 +96623,7 @@
Returns:
-string +Downloader
@@ -94041,7 +96641,7 @@
Returns:
-

get() → {String}

+

algorithm(algorithm) → {Resource}

@@ -94049,7 +96649,7 @@

get - Gets the content of the downloaded file + Sets the checksum algorithm @@ -94060,6 +96660,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + algorithm + + + + + +string + + + + + + + + + + The algorithm to verify the checksum (e.g. "SHA") + + + + + + + @@ -94093,7 +96742,7 @@

getSource:
@@ -94122,7 +96771,7 @@
Returns:
- The content of downloaded file + The Resource object
@@ -94133,7 +96782,7 @@
Returns:
-String +Resource
@@ -94151,7 +96800,7 @@
Returns:
-

get(resourceName) → {Resource}

+

application(application) → {AppResource}

@@ -94159,7 +96808,7 @@

get - Returns the searched resource + Sets the application containing the resources @@ -94195,7 +96844,7 @@
Parameters:
- resourceName + application @@ -94211,7 +96860,7 @@
Parameters:
- The name of the resource + The application with the resource @@ -94252,7 +96901,7 @@
Parameters:
Source:
@@ -94281,7 +96930,7 @@
Returns:
- The found resource + The AppResource object
@@ -94292,7 +96941,7 @@
Returns:
-Resource +AppResource
@@ -94310,17 +96959,13 @@
Returns:
-

getContainer() → {string}

+

architecture() → {string}

-
- Returns the name of the container belonging to a shortcut -
- @@ -94362,7 +97007,7 @@

getContai
Source:
@@ -94391,7 +97036,7 @@

Returns:
- The container name + architecture ("x86" or "amd64")
@@ -94420,7 +97065,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

arguments(args) → {WineShortcut}

@@ -94428,7 +97073,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the shortcut arguments
@@ -94464,13 +97109,13 @@

Parameters:
- setupFileName + args -string +array @@ -94480,7 +97125,7 @@
Parameters:
- The setup file name + The shortcut arguments @@ -94521,7 +97166,7 @@
Parameters:
Source:
@@ -94550,7 +97195,7 @@
Returns:
- This + The WineShortcut object
@@ -94561,7 +97206,7 @@
Returns:
-GogScript +WineShortcut
@@ -94579,17 +97224,13 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

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

-
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- @@ -94611,8 +97252,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -94623,23 +97268,39 @@
Parameters:
- setupFileNames + architecture -Array.<string> +string + + + <optional>
+ + + + + + + + + + current architecture + + + - The setup file name(s) + @@ -94680,7 +97341,7 @@
Parameters:
Source:
@@ -94708,10 +97369,6 @@
Parameters:
Returns:
-
- This -
-
@@ -94720,7 +97377,7 @@
Returns:
-GogScript +Array.<string>
@@ -94738,17 +97395,13 @@
Returns:
-

headers(headers) → {Downloader}

+

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

-
- Sets the http headers -
- @@ -94770,8 +97423,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -94782,23 +97439,39 @@
Parameters:
- headers + distribution name -Object +string + + + <optional>
+ + + + + - The http headers + + + + current distribution + + + + + @@ -94839,7 +97512,7 @@
Parameters:
Source:
@@ -94867,10 +97540,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -94879,7 +97548,7 @@
Returns:
-Downloader +Array.<string>
@@ -94897,7 +97566,7 @@
Returns:
-

json() → {any}

+

binPath(subCategoryopt, versionopt) → {string}

@@ -94905,7 +97574,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + returns the path to the engine binary directory +if no parameters are given, the Wine version of the current prefix is used @@ -94916,6 +97586,100 @@

json + + + + Name + + + Type + + + Attributes + + + + + Description + + + + + + + + + subCategory + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + Wine sub-category + + + + + + + version + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + Wine version + + + + + + + @@ -94949,7 +97713,7 @@

jsonSource:
@@ -94978,7 +97742,7 @@
Returns:
- The json value + path to "wine" binary
@@ -94989,7 +97753,7 @@
Returns:
-any +string
@@ -95007,7 +97771,7 @@
Returns:
-

kill() → {Wine}

+

category(category) → {WineShortcut}

@@ -95015,7 +97779,7 @@

kill - kill wine server + Sets the shortcut category @@ -95026,6 +97790,55 @@

kill + + + + Name + + + Type + + + + + + Description + + + + + + + + + category + + + + + +string + + + + + + + + + + The shortcut category + + + + + + + @@ -95059,7 +97872,7 @@

killSource:
@@ -95087,6 +97900,10 @@

kill + The WineShortcut object + +
@@ -95095,7 +97912,7 @@
Returns:
-Wine +WineShortcut
@@ -95113,7 +97930,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

checksum(checksum) → {Resource}

@@ -95121,8 +97938,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 checksum which shall be used to verify the resource
@@ -95158,13 +97974,13 @@

Parameters:
- setupWizard + checksum -SetupWizard +string @@ -95174,7 +97990,7 @@
Parameters:
- The setupWizard to use + The checksum @@ -95215,7 +98031,7 @@
Parameters:
Source:
@@ -95244,7 +98060,7 @@
Returns:
- This + The Resource object
@@ -95255,7 +98071,7 @@
Returns:
-GogScript +Resource
@@ -95273,7 +98089,7 @@
Returns:
-

message(message) → {Downloader}

+

checksum(checksum) → {Downloader}

@@ -95281,7 +98097,7 @@

message - Sets the download message text + Sets the checksum @@ -95317,7 +98133,7 @@
Parameters:
- message + checksum @@ -95333,7 +98149,7 @@
Parameters:
- The download message + The checksum which shall be used to verify the download @@ -95374,7 +98190,7 @@
Parameters:
Source:
@@ -95432,7 +98248,7 @@
Returns:
-

miniature(miniature) → {WineShortcut}

+

create() → {void}

@@ -95440,7 +98256,7 @@

miniature - Sets the miniature for the shortcut + Creates a new shortcut @@ -95451,58 +98267,6 @@

miniatureParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - @@ -95536,7 +98300,113 @@
Parameters:
Source:
+ + + + + + + +

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

create() → {Wine}

+ + + + + + +
+ runs "wineboot" +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -95565,7 +98435,7 @@
Returns:
- The WineShortcut object + The Wine object
@@ -95576,7 +98446,7 @@
Returns:
-WineShortcut +Wine
@@ -95594,7 +98464,7 @@
Returns:
-

miniature(miniatureopt)

+

description(description) → {WineShortcut}

@@ -95602,7 +98472,7 @@

miniature - get/set miniature (for the installation and the shortcut) + Sets the shortcut description @@ -95626,8 +98496,6 @@
Parameters:
Type - Attributes - @@ -95640,33 +98508,23 @@
Parameters:
- miniature + description -URI +string - - - <optional>
- - - - - - - - path to the miniature file + The shortcut description @@ -95707,7 +98565,7 @@
Parameters:
Source:
@@ -95732,6 +98590,28 @@
Parameters:
+
Returns:
+ + +
+ The WineShortcut object +
+ + + +
+
+ Type +
+
+ +WineShortcut + + +
+
+ + @@ -95743,7 +98623,7 @@
Parameters:
-

name(name) → {Resource}

+

directory(directory) → {Resource}

@@ -95751,7 +98631,7 @@

name - Sets the resource name + Sets the directory inside the resources directory where the Resource is stored @@ -95787,7 +98667,7 @@
Parameters:
- name + directory @@ -95803,7 +98683,7 @@
Parameters:
- The name of the resource + The directory path @@ -95844,7 +98724,7 @@
Parameters:
Source:
@@ -95902,7 +98782,7 @@
Returns:
-

name(name) → {WineShortcut}

+

dosConfigFile() → {string}

@@ -95910,7 +98790,117 @@

name - Sets the shortcut name + Fetch the prefix dosbox configuration file + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

download(setupWizard) → {String}

+ + + + + + +
+ Download the setup resources in the same directory, and returns the path of the .exe
@@ -95946,13 +98936,13 @@
Parameters:
- name + setupWizard -string +SetupWizard @@ -95962,7 +98952,7 @@
Parameters:
- The shortcut name + The setup wizard @@ -96003,7 +98993,7 @@
Parameters:
Source:
@@ -96032,7 +99022,7 @@
Returns:
- The WineShortcut object + The .exe file entry that can be used to continue the installation
@@ -96043,7 +99033,7 @@
Returns:
-WineShortcut +String
@@ -96061,7 +99051,7 @@
Returns:
-

of(shortcut) → {void}

+

downloadFinished(wine) → {boolean}

@@ -96069,7 +99059,8 @@

of - Sets shortcut + Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first @@ -96105,13 +99096,13 @@
Parameters:
- shortcut + wine -string +Wine @@ -96121,7 +99112,7 @@
Parameters:
- shortcut + The wine engine object @@ -96162,7 +99153,7 @@
Parameters:
Source:
@@ -96190,6 +99181,10 @@
Parameters:
Returns:
+
+ True if the download has finished, false otherwise +
+
@@ -96198,7 +99193,7 @@
Returns:
-void +boolean
@@ -96216,7 +99211,7 @@
Returns:
-

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

+

downloadStarted(wine) → {boolean}

@@ -96224,7 +99219,7 @@

- Specifies if the download shall be executed only if a newer version is available + Checks whether the software download has started
@@ -96260,13 +99255,13 @@

Parameters:
- onlyIfUpdateAvailable + wine -boolean +Wine @@ -96276,7 +99271,7 @@
Parameters:
- true the download shall be executed only if a newer version is available + The wine engine object @@ -96317,7 +99312,7 @@
Parameters:
Source:
@@ -96346,7 +99341,7 @@
Returns:
- The Downloader object + True if the download has started, false otherwise
@@ -96357,7 +99352,7 @@
Returns:
-Downloader +boolean
@@ -96375,7 +99370,7 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

environment(environment) → {WineShortcut}

@@ -96383,7 +99378,7 @@

prefix - Sets the shortcut prefix + Sets the shortcut environment variables @@ -96419,7 +99414,7 @@
Parameters:
- prefix + environment @@ -96435,7 +99430,7 @@
Parameters:
- The shortcut prefix + The environment variables @@ -96476,7 +99471,7 @@
Parameters:
Source:
@@ -96534,13 +99529,17 @@
Returns:
-

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

+

environment(environment) → {QuickScript}

+
+ set environment +
+ @@ -96562,8 +99561,6 @@
Parameters:
Type - Attributes - @@ -96576,106 +99573,7 @@
Parameters:
- prefix - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - distribution - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - architecture - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - version + environment @@ -96688,20 +99586,10 @@
Parameters:
- - - <optional>
- - - - - - - - + variables @@ -96742,7 +99630,7 @@
Parameters:
Source:
@@ -96770,6 +99658,10 @@
Parameters:
Returns:
+
+ QuickScript object +
+
@@ -96778,10 +99670,7 @@
Returns:
-string -| - -Wine +QuickScript
@@ -96799,7 +99688,7 @@
Returns:
-

prefixDirectory() → {string}

+

executable(executable, args)

@@ -96807,7 +99696,7 @@

prefix
- returns prefix directory + set executable
@@ -96818,6 +99707,68 @@

prefix +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
executable + + executable without path (e.g. "Steam.exe")
args + + use array (e.g. ["-applaunch", 409160])
+ + @@ -96851,7 +99802,7 @@

prefix
Source:
@@ -96876,24 +99827,6 @@

prefix -

Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - @@ -96905,7 +99838,7 @@
Returns:
-

programFiles() → {string}

+

fontDirectory() → {string}

@@ -96953,7 +99886,7 @@

programFi
Source:
@@ -96982,7 +99915,7 @@

Returns:
- name of "Program Files" + font directory
@@ -97011,7 +99944,7 @@
Returns:
-

run(userArguments) → {void}

+

get(resourceName) → {Resource}

@@ -97019,7 +99952,7 @@

run - Runs a shortcut with the given user arguments + Returns the searched resource @@ -97055,13 +99988,13 @@
Parameters:
- userArguments + resourceName -array +string @@ -97071,7 +100004,7 @@
Parameters:
- The user arguments + The name of the resource @@ -97112,7 +100045,7 @@
Parameters:
Source:
@@ -97140,6 +100073,10 @@
Parameters:
Returns:
+
+ The found resource +
+
@@ -97148,7 +100085,7 @@
Returns:
-void +Resource
@@ -97166,13 +100103,16 @@
Returns:
-

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

+

get() → {String}

+
+ Gets the content of the downloaded file +
@@ -97181,264 +100121,115 @@

run - - - - Name - - Type - - Attributes - - - Default - - Description - - +
- - - - executable - - - - - -string - - - - - - - - - - + - - - + - - - - - + - - + - - - args - + - - - -array + + - - + - - - - <optional>
- + - + - - - + +
Source:
+
+ - - - - [] - - - + - - + +
- - - workingDirectory - - - - -string - - - - - - <optional>
- - - - - - - - - working container - - - - - - - - - captureOutput - - - - -boolean - - - - - - <optional>
- +
Returns:
- + +
+ The content of downloaded file +
- - - - - - - false - - - - - +
+
+ Type +
+
+ +String - - - - wait - +
+
- - - -boolean + - - - - - - <optional>
- - - - + - - - - false - - - + - - + +

get() → {string}

+ - - - userData - - - - -map +
+ Fetches the Resource and returns the path leading to the downloaded resource +
- - - - - - <optional>
- - - - - - - - - empty - - - - - - - - @@ -97474,7 +100265,7 @@
Parameters:
Source:
@@ -97503,7 +100294,7 @@
Returns:
- output + The path leading to the downloaded resource
@@ -97514,7 +100305,7 @@
Returns:
-String +string
@@ -97532,13 +100323,16 @@
Returns:
-

runInsidePrefix(executable, argsopt, waitopt)

+

getContainer() → {string}

+
+ Returns the name of the container belonging to a shortcut +
@@ -97547,147 +100341,115 @@

runIns -

Parameters:
- - - - - - - - - - - - - - - - - +
-
- - - - + - + - - - + - - - + - - + - - - - + - + - - - - - - - - - - - - - - - - - - - + + +
Returns:
+ + +
+ The container name +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + - - + - -
NameTypeAttributesDefaultDescription
executable - - -string + + - - - + - + - - - -
args - - -array + +
Source:
+
+ + - -
- - <optional>
- + + - - -
- - [] - -
wait - - -boolean - - - - <optional>
- - - -
- - false - -
+

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + @@ -97723,7 +100485,7 @@
Parameters:
Source:
@@ -97748,6 +100510,28 @@
Parameters:
+
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + @@ -97759,7 +100543,7 @@
Parameters:
- +

gogSetupFileName(setupFileName) → {GogScript}

@@ -97767,7 +100551,7 @@

- - -
- Specifies if the download shall be executed only if a newer version is available -
- +
@@ -106283,54 +109751,40 @@

+
-
Parameters:
+
- - - - +

default()

- +
Plugin to force the use of GLSL
+ + - - +
+
+ - + +

Constructor

+ -
- - + +

new default()

+ - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - true the download shall be executed only if a newer version is available
+ @@ -106366,7 +109820,7 @@
Parameters:
Source:
@@ -106391,32 +109845,30 @@
Parameters:
-
Returns:
- -
- The Downloader object -
-
-
- Type -
-
- -Downloader + + -
-
+ + + + + + + + + +

Methods

@@ -106424,7 +109876,7 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

_createShortcut(prefixopt)

@@ -106432,7 +109884,7 @@

prefix - Sets the shortcut prefix + creates shortcut @@ -106456,6 +109908,8 @@
Parameters:
Type + Attributes + @@ -106481,10 +109935,20 @@
Parameters:
+ + + <optional>
+ + + + + - The shortcut prefix + + + prefix name @@ -106525,7 +109989,7 @@
Parameters:
Source:
@@ -106550,28 +110014,6 @@
Parameters:
-
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - @@ -106583,13 +110025,17 @@
Returns:
-

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

+

_fetchFileNameFromUrl(url) → {string}

+
+ Fetches the file name from an URL +
+ @@ -106611,8 +110057,6 @@
Parameters:
Type - Attributes - @@ -106625,106 +110069,7 @@
Parameters:
- prefix - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - distribution - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - architecture - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - version + url @@ -106737,20 +110082,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The URL @@ -106791,7 +110126,7 @@
Parameters:
Source:
@@ -106819,6 +110154,10 @@
Parameters:
Returns:
+
+ The file name +
+
@@ -106828,9 +110167,6 @@
Returns:
string -| - -Wine
@@ -106848,7 +110184,7 @@
Returns:
-

prefixDirectory() → {string}

+

algorithm(algorithm) → {Downloader}

@@ -106856,7 +110192,7 @@

prefix
- returns prefix directory + Sets the algorithm which shall be used to verify the checksum
@@ -106867,6 +110203,55 @@

prefix +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
algorithm + + +string + + + + The checksum algorithm (e.g. "SHA")
+ + @@ -106900,7 +110285,7 @@

prefix
Source:
@@ -106928,6 +110313,10 @@

prefix

Returns:
+
+ The Downloader object +
+
@@ -106936,7 +110325,7 @@
Returns:
-string +Downloader
@@ -106954,19 +110343,72 @@
Returns:
-

programFiles() → {string}

+

algorithm(algorithm) → {Resource}

+
+ Sets the checksum algorithm +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
algorithm + + +string + + The algorithm to verify the checksum (e.g. "SHA")
@@ -107002,7 +110444,7 @@

programFi
Source:
@@ -107031,7 +110473,7 @@

Returns:
- name of "Program Files" + The Resource object
@@ -107042,7 +110484,7 @@
Returns:
-string +Resource
@@ -107060,7 +110502,7 @@
Returns:
-

run(userArguments) → {void}

+

application(application) → {AppResource}

@@ -107068,7 +110510,7 @@

run - Runs a shortcut with the given user arguments + Sets the application containing the resources @@ -107104,13 +110546,13 @@
Parameters:
- userArguments + application -array +string @@ -107120,7 +110562,7 @@
Parameters:
- The user arguments + The application with the resource @@ -107161,7 +110603,7 @@
Parameters:
Source:
@@ -107189,6 +110631,10 @@
Parameters:
Returns:
+
+ The AppResource object +
+
@@ -107197,7 +110643,7 @@
Returns:
-void +AppResource
@@ -107215,7 +110661,7 @@
Returns:
-

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

+

architecture() → {string}

@@ -107230,259 +110676,158 @@

run - - - - Name - - Type - - Attributes - - - Default - +
- Description - - + - - - - executable - + - - - -string + + - - + - - - + - + - - - + - - - - - + - - + - - - args - + +
Source:
+
+ - - - -array + + - - + +
- - - - <optional>
- - - - - - - - - [] - - - - - - - - - workingDirectory - - - - -string - - - - - - <optional>
- - - - - - - - - working container - - - - - +
Returns:
- + +
+ architecture ("x86" or "amd64") +
- - - captureOutput - - - - -boolean +
+
+ Type +
+
+ +string - - - - - - <optional>
- +
+
- + - - - - - - - false - - + + + + - - + +

arguments(args) → {WineShortcut}

+ - - - wait - + - - - -boolean - - +
+ Sets the shortcut arguments +
+ - - - - <optional>
- - - - - - - - - false - - - - - + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + - + - - - - - + @@ -107523,7 +110868,7 @@
Parameters:
Source:
@@ -107552,7 +110897,7 @@
Returns:
- output + The WineShortcut object
@@ -107563,7 +110908,7 @@
Returns:
-String +WineShortcut
@@ -107581,7 +110926,7 @@
Returns:
-

runInsidePrefix(executable, argsopt, waitopt)

+

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

@@ -107625,7 +110970,7 @@
Parameters:
- + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -107726,7 +110997,7 @@
Parameters:
@@ -107772,7 +111043,7 @@
Parameters:
Source:
@@ -107797,6 +111068,24 @@
Parameters:
+
Returns:
+ + + + +
+
+ Type +
+
+ +Array.<string> + + +
+
+ + @@ -107808,17 +111097,13 @@
Parameters:
- +

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

-
- Sets the executable which shall be used -
- @@ -107840,8 +111125,12 @@
Parameters:
+ + + + @@ -107852,7 +111141,7 @@
Parameters:
- + + - + + + + + @@ -107909,7 +111214,7 @@
Parameters:
Source:
@@ -107937,10 +111242,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -107949,7 +111250,7 @@
Returns:
-WineShortcut +Array.<string>
@@ -107967,7 +111268,7 @@
Returns:
-

stop() → {void}

+

binPath(subCategoryopt, versionopt) → {string}

@@ -107975,7 +111276,8 @@

stop - Stops the running shortcut + returns the path to the engine binary directory +if no parameters are given, the Wine version of the current prefix is used @@ -107986,106 +111288,98 @@

stop - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - +
NameTypeDescription
userDataargs -map +array - - <optional>
- - - - - -
- - empty - - The shortcut arguments
executablearchitecture @@ -107635,80 +110980,6 @@
Parameters:
-
- - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - false + current architecture TypeAttributesDefaultDescription
searchdistribution name @@ -107865,10 +111154,26 @@
Parameters:
+ + <optional>
+ + + + +
The executable name + + current distribution + +
+ + + + + + -
Returns:
+ + + + + + -
-
- Type -
-
- -void +
+ + + + + - - + + + + - - + + -

system32directory() → {string}

- - + + + + + + + + + + + + + +
NameTypeAttributesDescription
subCategory + + +string - + + + + <optional>
+ + + +
Wine sub-category
version + + +string + + + + <optional>
+ + + +
Wine version
@@ -108121,7 +111415,7 @@

syst
Source:
@@ -108150,7 +111444,7 @@

Returns:
- system32 directory + path to "wine" binary
@@ -108179,13 +111473,16 @@
Returns:
-

system64directory() → {string}

+

category(category) → {WineShortcut}

+
+ Sets the shortcut category +
@@ -108195,6 +111492,56 @@

syst +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
category + + +string + + + + The shortcut category
+ + + @@ -108227,7 +111574,7 @@

syst
Source:
@@ -108256,7 +111603,7 @@

Returns:
- system64 directory + The WineShortcut object
@@ -108267,7 +111614,7 @@
Returns:
-string +WineShortcut
@@ -108285,7 +111632,7 @@
Returns:
-

to(localDestination) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -108293,7 +111640,7 @@

to - Sets the download destination + Sets the checksum which shall be used to verify the resource @@ -108329,7 +111676,7 @@
Parameters:
- localDestination + checksum @@ -108345,7 +111692,7 @@
Parameters:
- The destination of the download. If it is a directory, the file will be placed inside + The checksum @@ -108386,7 +111733,7 @@
Parameters:
Source:
@@ -108415,7 +111762,7 @@
Returns:
- The Downloader object + The Resource object
@@ -108426,7 +111773,7 @@
Returns:
-Downloader +Resource
@@ -108444,7 +111791,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

checksum(checksum) → {Downloader}

@@ -108452,7 +111799,7 @@

trustLevel<
- Sets the trust level + Sets the checksum
@@ -108488,7 +111835,7 @@

Parameters:
- trustLevel + checksum @@ -108504,7 +111851,7 @@
Parameters:
- The trust level + The checksum which shall be used to verify the download @@ -108545,7 +111892,7 @@
Parameters:
Source:
@@ -108574,7 +111921,7 @@
Returns:
- The WineShortcut object + The Downloader object
@@ -108585,7 +111932,7 @@
Returns:
-WineShortcut +Downloader
@@ -108603,7 +111950,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

create() → {void}

@@ -108611,7 +111958,7 @@

trustLevel<
- set trust level + Creates a new shortcut
@@ -108622,55 +111969,6 @@

trustLevel< -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - @@ -108704,7 +112002,7 @@
Parameters:
Source:
@@ -108732,10 +112030,6 @@
Parameters:
Returns:
-
- QuickScript object -
-
@@ -108744,7 +112038,7 @@
Returns:
-QuickScript +void
@@ -108762,7 +112056,7 @@
Returns:
-

type(type) → {WineShortcut}

+

create() → {Wine}

@@ -108770,7 +112064,7 @@

type - Sets the shortcut type + runs "wineboot" @@ -108781,55 +112075,6 @@

type - - - - Name - - - Type - - - - - - Description - - - - - - - - - type - - - - - -string - - - - - - - - - - The shortcut type - - - - - - - @@ -108863,7 +112108,7 @@
Parameters:
Source:
@@ -108892,7 +112137,7 @@
Returns:
- The WineShortcut object + The Wine object
@@ -108903,7 +112148,7 @@
Returns:
-WineShortcut +Wine
@@ -108921,7 +112166,7 @@
Returns:
-

uninstall(name) → {bool}

+

description(description) → {WineShortcut}

@@ -108929,7 +112174,7 @@

uninstall - uninstall application + Sets the shortcut description @@ -108965,7 +112210,7 @@
Parameters:
- name + description @@ -108981,7 +112226,7 @@
Parameters:
- of the application which shall be uninstalled + The shortcut description @@ -109022,117 +112267,7 @@
Parameters:
Source:
- - - - - - - -

- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
@@ -109160,6 +112295,10 @@

uninstallReturns:

+
+ The WineShortcut object +
+
@@ -109168,7 +112307,7 @@
Returns:
-void +WineShortcut
@@ -109186,7 +112325,7 @@
Returns:
-

url(url) → {Downloader}

+

directory(directory) → {Resource}

@@ -109194,7 +112333,7 @@

url - Sets the URL which shall be used for the download + Sets the directory inside the resources directory where the Resource is stored @@ -109230,7 +112369,7 @@
Parameters:
- url + directory @@ -109246,7 +112385,7 @@
Parameters:
- The URL + The directory path @@ -109287,7 +112426,7 @@
Parameters:
Source:
@@ -109316,7 +112455,7 @@
Returns:
- The Downloader object + The Resource object
@@ -109327,7 +112466,7 @@
Returns:
-Downloader +Resource
@@ -109345,7 +112484,7 @@
Returns:
-

url(url) → {Resource}

+

dosConfigFile() → {string}

@@ -109353,7 +112492,117 @@

url - Sets the resource URL + Fetch the prefix dosbox configuration file + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

download(setupWizard) → {String}

+ + + + + + +
+ Download the setup resources in the same directory, and returns the path of the .exe
@@ -109389,13 +112638,13 @@
Parameters:
- url + setupWizard -string +SetupWizard @@ -109405,7 +112654,7 @@
Parameters:
- The URL + The setup wizard @@ -109446,7 +112695,7 @@
Parameters:
Source:
@@ -109475,7 +112724,7 @@
Returns:
- The Resource object + The .exe file entry that can be used to continue the installation
@@ -109486,7 +112735,7 @@
Returns:
-Resource +String
@@ -109504,7 +112753,7 @@
Returns:
-

wait() → {Wine}

+

downloadFinished(wine) → {boolean}

@@ -109512,7 +112761,8 @@

wait - wait until wineserver finishes + Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first @@ -109523,6 +112773,55 @@

wait + + + + Name + + + Type + + + + + + Description + + + + + + + + + wine + + + + + +Wine + + + + + + + + + + The wine engine object + + + + + + + @@ -109556,7 +112855,7 @@

waitSource:
@@ -109584,6 +112883,10 @@

wait + True if the download has finished, false otherwise + +
@@ -109592,7 +112895,7 @@
Returns:
-Wine +boolean
@@ -109610,13 +112913,17 @@
Returns:
-

winepath(pathopt) → {String}

+

downloadStarted(wine) → {boolean}

+
+ Checks whether the software download has started +
+ @@ -109638,8 +112945,6 @@
Parameters:
Type - Attributes - @@ -109652,33 +112957,23 @@
Parameters:
- path + wine -String +Wine - - - <optional>
- - - - - - - - + The wine engine object @@ -109719,7 +113014,7 @@
Parameters:
Source:
@@ -109747,6 +113042,10 @@
Parameters:
Returns:
+
+ True if the download has started, false otherwise +
+
@@ -109755,7 +113054,7 @@
Returns:
-String +boolean
@@ -109773,7 +113072,7 @@
Returns:
-

wineServer(wineserver)

+

environment(environment) → {WineShortcut}

@@ -109781,7 +113080,7 @@

wineServer<
- executes wineserver in current prefix + Sets the shortcut environment variables
@@ -109817,7 +113116,7 @@

Parameters:
- wineserver + environment @@ -109833,7 +113132,7 @@
Parameters:
- parameter + The environment variables @@ -109874,7 +113173,7 @@
Parameters:
Source:
@@ -109899,6 +113198,28 @@
Parameters:
+
Returns:
+ + +
+ The WineShortcut object +
+ + + +
+
+ Type +
+
+ +WineShortcut + + +
+
+ + @@ -109910,7 +113231,7 @@
Parameters:
-

withScript(command) → {PlainInstaller}

+

environment(environment) → {QuickScript}

@@ -109918,7 +113239,7 @@

withScript<
- Sets the installation script consisting of a lambda function + set environment
@@ -109954,13 +113275,13 @@

Parameters:
- command + environment -function +string @@ -109970,7 +113291,7 @@
Parameters:
- The installation command + variables @@ -110011,7 +113332,7 @@
Parameters:
Source:
@@ -110040,7 +113361,7 @@
Returns:
- The PlainInstaller object + QuickScript object
@@ -110051,7 +113372,7 @@
Returns:
-PlainInstaller +QuickScript
@@ -110069,7 +113390,7 @@
Returns:
-

wizard(wizard) → {Resource}

+

executable(executable, args)

@@ -110077,7 +113398,7 @@

wizard - Sets the setup wizard + set executable @@ -110113,15 +113434,28 @@
Parameters:
- wizard + executable - -SetupWizard + + + + + + executable without path (e.g. "Steam.exe") + + + + + + args + + + @@ -110129,7 +113463,7 @@
Parameters:
- The setup wizard + use array (e.g. ["-applaunch", 409160]) @@ -110170,7 +113504,91 @@
Parameters:
Source:
+ + + + + + + +

+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -110199,7 +113617,7 @@
Returns:
- The Resource object + font directory
@@ -110210,7 +113628,7 @@
Returns:
-Resource +string
@@ -110228,7 +113646,7 @@
Returns:
-

wizard(wizard) → {Downloader}

+

get(resourceName) → {Resource}

@@ -110236,7 +113654,7 @@

wizard - Sets the setup wizard + Returns the searched resource @@ -110272,13 +113690,13 @@
Parameters:
- wizard + resourceName -SetupWizard +string @@ -110288,7 +113706,7 @@
Parameters:
- The setup wizard + The name of the resource @@ -110329,7 +113747,7 @@
Parameters:
Source:
@@ -110358,7 +113776,7 @@
Returns:
- The Downloader object + The found resource
@@ -110369,7 +113787,7 @@
Returns:
-Downloader +Resource
@@ -110387,13 +113805,19 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

get() → {String}

+
+ Gets the content of the downloaded file +
+ + + @@ -110402,65 +113826,112 @@

wizardParameters:

+ + +
+ - - - - - - + - + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + + + + + + + + + + + + + + + + + +
Returns:
- - +
+ The content of downloaded file +
+ + +
+
+ Type +
+
+String -
- - - + + + - - - - - + - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - <optional>
- - + + + +

get() → {string}

+ + + + + + +
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ + + - -
@@ -110496,7 +113967,7 @@
Parameters:
Source:
@@ -110524,6 +113995,10 @@
Parameters:
Returns:
+
+ The path leading to the downloaded resource +
+
@@ -110532,10 +114007,7 @@
Returns:
-SetupWizard -| - -Wine +string
@@ -110548,48 +114020,21 @@
Returns:
- - - - - - - -

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

default()

- -
Resource class
- - -
+ -
-
- -

Constructor

+

getContainer() → {string}

-

new default()

- - +
+ Returns the name of the container belonging to a shortcut +
@@ -110632,7 +114077,7 @@

new defaultSource:
@@ -110657,30 +114102,32 @@

new defaultReturns:

+ +
+ The container name +
+
+
+ Type +
+
+ +string - -

- - - - - + + - - - - -

Methods

@@ -110688,7 +114135,7 @@

Methods

-

_createShortcut(prefixopt)

+

getSettings() → {object}

@@ -110696,7 +114143,7 @@

_creat
- creates shortcut + Fetch all prefix dosbox sttings
@@ -110707,67 +114154,6 @@

_creat -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - @@ -110801,7 +114187,7 @@
Parameters:
Source:
@@ -110826,6 +114212,28 @@
Parameters:
+
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + @@ -110837,7 +114245,7 @@
Parameters:
-

_fetchFileNameFromUrl(url) → {string}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -110845,7 +114253,7 @@

- Fetches the file name from an URL + Sets one setup file name so that the script can fetch it from gog.com
@@ -110881,7 +114289,7 @@

Parameters:
- url + setupFileName @@ -110897,7 +114305,7 @@
Parameters:
- The URL + The setup file name @@ -110938,7 +114346,7 @@
Parameters:
Source:
@@ -110967,7 +114375,7 @@
Returns:
- The file name + This
@@ -110978,7 +114386,7 @@
Returns:
-string +GogScript
@@ -110996,7 +114404,7 @@
Returns:
-

algorithm(algorithm) → {Resource}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -111004,7 +114412,7 @@

algorithm - Sets the checksum algorithm + Sets the setup file(s) name so that the script can fetch it from gog.com @@ -111040,13 +114448,13 @@
Parameters:
- algorithm + setupFileNames -string +Array.<string> @@ -111056,7 +114464,7 @@
Parameters:
- The algorithm to verify the checksum (e.g. "SHA") + The setup file name(s) @@ -111097,7 +114505,7 @@
Parameters:
Source:
@@ -111126,7 +114534,7 @@
Returns:
- The Resource object + This
@@ -111137,7 +114545,7 @@
Returns:
-Resource +GogScript
@@ -111155,7 +114563,7 @@
Returns:
-

algorithm(algorithm) → {Downloader}

+

headers(headers) → {Downloader}

@@ -111163,7 +114571,7 @@

algorithm - Sets the algorithm which shall be used to verify the checksum + Sets the http headers @@ -111199,13 +114607,13 @@
Parameters:
- algorithm + headers -string +Object @@ -111215,7 +114623,7 @@
Parameters:
- The checksum algorithm (e.g. "SHA") + The http headers @@ -111256,7 +114664,7 @@
Parameters:
Source:
@@ -111314,7 +114722,7 @@
Returns:
-

application(application) → {AppResource}

+

isHdpi() → {boolean}

@@ -111322,7 +114730,7 @@

applicatio
- Sets the application containing the resources + Fetches whether hdpi is enabled or not
@@ -111333,55 +114741,6 @@

applicatio -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - @@ -111415,7 +114774,7 @@
Parameters:
Source:
@@ -111444,7 +114803,7 @@
Returns:
- The AppResource object + True if hdpi is enabled, false otherwise
@@ -111455,7 +114814,7 @@
Returns:
-AppResource +boolean
@@ -111473,13 +114832,17 @@
Returns:
-

architecture() → {string}

+

json() → {any}

+
+ Gets the content of the downloaded file and returns it as a JSON value +
+ @@ -111521,7 +114884,7 @@

architect
Source:
@@ -111550,7 +114913,7 @@

Returns:
- architecture ("x86" or "amd64") + The json value
@@ -111561,7 +114924,7 @@
Returns:
-string +any
@@ -111579,7 +114942,7 @@
Returns:
-

arguments(args) → {WineShortcut}

+

kill() → {Wine}

@@ -111587,7 +114950,114 @@

arguments - Sets the shortcut arguments + 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
@@ -111623,13 +115093,13 @@
Parameters:
- args + setupWizard -array +SetupWizard @@ -111639,7 +115109,7 @@
Parameters:
- The shortcut arguments + The setupWizard to use @@ -111680,7 +115150,7 @@
Parameters:
Source:
@@ -111709,7 +115179,7 @@
Returns:
- The WineShortcut object + This
@@ -111720,7 +115190,7 @@
Returns:
-WineShortcut +GogScript
@@ -111738,13 +115208,17 @@
Returns:
-

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

+

message(message) → {Downloader}

+
+ Sets the download message text +
+ @@ -111766,12 +115240,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -111782,7 +115252,7 @@
Parameters:
- architecture + message @@ -111795,26 +115265,10 @@
Parameters:
- - - <optional>
- - - - - - - - - current architecture - - - - - + The download message @@ -111855,7 +115309,7 @@
Parameters:
Source:
@@ -111883,6 +115337,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -111891,7 +115349,7 @@
Returns:
-Array.<string> +Downloader
@@ -111909,13 +115367,17 @@
Returns:
-

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

+

miniature(miniatureopt)

+
+ get/set miniature (for the installation and the shortcut) +
+ @@ -111941,8 +115403,6 @@
Parameters:
- Default - Description @@ -111953,13 +115413,13 @@
Parameters:
- distribution name + miniature -string +URI @@ -111978,14 +115438,8 @@
Parameters:
- - - current distribution - - - - + path to the miniature file @@ -112026,7 +115480,7 @@
Parameters:
Source:
@@ -112051,24 +115505,6 @@
Parameters:
-
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - @@ -112080,7 +115516,7 @@
Returns:
-

binPath(subCategoryopt, versionopt) → {string}

+

miniature(miniature) → {WineShortcut}

@@ -112088,8 +115524,7 @@

binPath - returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used + Sets the miniature for the shortcut @@ -112113,8 +115548,6 @@
Parameters:
Type - Attributes - @@ -112127,66 +115560,26 @@
Parameters:
- subCategory + miniature -string - - - - - - - - - <optional>
- - - - - - - - - - - Wine sub-category - - - - - - - version - +Array.<string> +| - - - -string +URI - - - <optional>
- - - - - - - - Wine version + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -112227,7 +115620,7 @@
Parameters:
Source:
@@ -112256,7 +115649,7 @@
Returns:
- path to "wine" binary + The WineShortcut object
@@ -112267,7 +115660,7 @@
Returns:
-string +WineShortcut
@@ -112285,7 +115678,7 @@
Returns:
-

category(category) → {WineShortcut}

+

name(name) → {Resource}

@@ -112293,7 +115686,7 @@

category - Sets the shortcut category + Sets the resource name @@ -112329,7 +115722,7 @@
Parameters:
- category + name @@ -112345,7 +115738,7 @@
Parameters:
- The shortcut category + The name of the resource @@ -112386,7 +115779,7 @@
Parameters:
Source:
@@ -112415,7 +115808,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -112426,7 +115819,7 @@
Returns:
-WineShortcut +Resource
@@ -112444,7 +115837,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

name(name) → {WineShortcut}

@@ -112452,7 +115845,7 @@

checksum - Sets the checksum + Sets the shortcut name @@ -112488,7 +115881,7 @@
Parameters:
- checksum + name @@ -112504,7 +115897,7 @@
Parameters:
- The checksum which shall be used to verify the download + The shortcut name @@ -112545,7 +115938,7 @@
Parameters:
Source:
@@ -112574,7 +115967,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -112585,7 +115978,7 @@
Returns:
-Downloader +WineShortcut
@@ -112603,7 +115996,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

of(shortcut) → {void}

@@ -112611,7 +116004,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets shortcut @@ -112647,7 +116040,7 @@
Parameters:
- checksum + shortcut @@ -112663,7 +116056,7 @@
Parameters:
- The checksum + shortcut @@ -112704,7 +116097,7 @@
Parameters:
Source:
@@ -112732,10 +116125,6 @@
Parameters:
Returns:
-
- The Resource object -
-
@@ -112744,7 +116133,7 @@
Returns:
-Resource +void
@@ -112762,7 +116151,7 @@
Returns:
-

create() → {Wine}

+

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

@@ -112770,7 +116159,7 @@

create - runs "wineboot" + Specifies if the download shall be executed only if a newer version is available @@ -112781,6 +116170,55 @@

createParameters:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
onlyIfUpdateAvailable + + +boolean + + + + true the download shall be executed only if a newer version is available
+ + @@ -112814,7 +116252,7 @@

createSource:
@@ -112843,7 +116281,7 @@
Returns:
- The Wine object + The Downloader object
@@ -112854,7 +116292,7 @@
Returns:
-Wine +Downloader
@@ -112872,16 +116310,13 @@
Returns:
-

create() → {void}

+

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

-
- Creates a new shortcut -
@@ -112890,12 +116325,171 @@

createParameters:

+ + + + + + + + + + + + -
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
prefix + + +string + + + + + + <optional>
+ + + + + +
distribution + + +string + + + + + + <optional>
+ + + + + +
architecture + + +string + + + + + + <optional>
+ + + + + +
version + + +string + + + + + + <optional>
+ + + + + +
+ + + + + + +
@@ -112924,7 +116518,7 @@

createSource:
@@ -112960,7 +116554,10 @@
Returns:
-void +string +| + +Wine
@@ -112978,7 +116575,7 @@
Returns:
-

description(description) → {WineShortcut}

+

prefix(prefix) → {WineShortcut}

@@ -112986,7 +116583,7 @@

descriptio
- Sets the shortcut description + Sets the shortcut prefix
@@ -113022,7 +116619,7 @@

Parameters:
- description + prefix @@ -113038,7 +116635,7 @@
Parameters:
- The shortcut description + The shortcut prefix @@ -113079,7 +116676,7 @@
Parameters:
Source:
@@ -113137,7 +116734,7 @@
Returns:
-

directory(directory) → {Resource}

+

prefixDirectory() → {string}

@@ -113145,7 +116742,7 @@

directory - Sets the directory inside the resources directory where the Resource is stored + returns prefix directory @@ -113156,55 +116753,6 @@

directoryParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - @@ -113238,7 +116786,7 @@
Parameters:
Source:
@@ -113266,10 +116814,6 @@
Parameters:
Returns:
-
- The Resource object -
-
@@ -113278,7 +116822,7 @@
Returns:
-Resource +string
@@ -113296,16 +116840,13 @@
Returns:
-

download(setupWizard) → {String}

+

programFiles() → {string}

-
- Download the setup resources in the same directory, and returns the path of the .exe -
@@ -113315,56 +116856,6 @@

downloadParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - @@ -113397,7 +116888,7 @@
Parameters:
Source:
@@ -113426,7 +116917,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + name of "Program Files"
@@ -113437,7 +116928,7 @@
Returns:
-String +string
@@ -113455,17 +116946,13 @@
Returns:
-

environment(environment) → {WineShortcut}

+

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

-
- Sets the shortcut environment variables -
- @@ -113487,8 +116974,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -113499,7 +116990,7 @@
Parameters:
- environment + executable @@ -113512,10 +117003,217 @@
Parameters:
+ + + + + + - The environment variables + + + + + + + + + + + + + + args + + + + + +array + + + + + + + + + <optional>
+ + + + + + + + + + + + [] + + + + + + + + + + + + workingDirectory + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + + working container + + + + + + + + + + + + captureOutput + + + + + +boolean + + + + + + + + + <optional>
+ + + + + + + + + + + + false + + + + + + + + + + + + wait + + + + + +boolean + + + + + + + + + <optional>
+ + + + + + + + + + + + false + + + + + + + + + + + + userData + + + + + +map + + + + + + + + + <optional>
+ + + + + + + + + + + + empty + + + + + @@ -113556,7 +117254,7 @@
Parameters:
Source:
@@ -113585,7 +117283,7 @@
Returns:
- The WineShortcut object + output
@@ -113596,7 +117294,7 @@
Returns:
-WineShortcut +String
@@ -113614,7 +117312,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

run(userArguments) → {void}

@@ -113622,7 +117320,7 @@

environmen
- set environment + Runs a shortcut with the given user arguments
@@ -113658,13 +117356,13 @@

Parameters:
- environment + userArguments -string +array @@ -113674,7 +117372,7 @@
Parameters:
- variables + The user arguments @@ -113715,7 +117413,7 @@
Parameters:
Source:
@@ -113743,10 +117441,6 @@
Parameters:
Returns:
-
- QuickScript object -
-
@@ -113755,7 +117449,7 @@
Returns:
-QuickScript +void
@@ -113773,17 +117467,13 @@
Returns:
-

executable(executable, args)

+

runInsidePrefix(executable, argsopt, waitopt)

-
- set executable -
- @@ -113805,8 +117495,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -113822,13 +117516,30 @@
Parameters:
+ +string + + + + + + + + + + + + + + + - executable without path (e.g. "Steam.exe") + @@ -113840,13 +117551,73 @@
Parameters:
+ +array + + + + + + <optional>
+ + + + + - use array (e.g. ["-applaunch", 409160]) + + + + [] + + + + + + + + + + + + wait + + + + + +boolean + + + + + + + + + <optional>
+ + + + + + + + + + + + false + + + + + @@ -113887,7 +117658,7 @@
Parameters:
Source:
@@ -113923,19 +117694,72 @@
Parameters:
-

fontDirectory() → {string}

+ +
+ Sets the executable which shall be used +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
search + + +string + + The executable name
@@ -113971,7 +117795,7 @@

fontDire
Source:
@@ -114000,7 +117824,7 @@

Returns:
- font directory + The WineShortcut object
@@ -114011,7 +117835,7 @@
Returns:
-string +WineShortcut
@@ -114029,7 +117853,7 @@
Returns:
-

get() → {string}

+

stop() → {void}

@@ -114037,7 +117861,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Stops the running shortcut @@ -114081,7 +117905,109 @@

getSource:
+ + + + + + + +

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

system32directory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -114110,7 +118036,7 @@
Returns:
- The path leading to the downloaded resource + system32 directory
@@ -114139,17 +118065,13 @@
Returns:
-

get() → {String}

+

system64directory() → {string}

-
- Gets the content of the downloaded file -
- @@ -114191,7 +118113,7 @@

getSource:
@@ -114220,7 +118142,7 @@
Returns:
- The content of downloaded file + system64 directory
@@ -114231,7 +118153,7 @@
Returns:
-String +string
@@ -114249,7 +118171,7 @@
Returns:
-

get(resourceName) → {Resource}

+

to(localDestination) → {Downloader}

@@ -114257,7 +118179,7 @@

get - Returns the searched resource + Sets the download destination @@ -114293,7 +118215,7 @@
Parameters:
- resourceName + localDestination @@ -114309,7 +118231,7 @@
Parameters:
- The name of the resource + The destination of the download. If it is a directory, the file will be placed inside @@ -114350,7 +118272,7 @@
Parameters:
Source:
@@ -114379,7 +118301,7 @@
Returns:
- The found resource + The Downloader object
@@ -114390,7 +118312,7 @@
Returns:
-Resource +Downloader
@@ -114408,7 +118330,7 @@
Returns:
-

getContainer() → {string}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -114416,7 +118338,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the trust level
@@ -114427,6 +118349,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
trustLevel + + +string + + + + The trust level
+ + @@ -114460,7 +118431,7 @@

getContai
Source:
@@ -114489,7 +118460,7 @@

Returns:
- The container name + The WineShortcut object
@@ -114500,7 +118471,7 @@
Returns:
-string +WineShortcut
@@ -114518,7 +118489,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

trustLevel(trustlevel) → {QuickScript}

@@ -114526,7 +118497,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + set trust level
@@ -114562,7 +118533,7 @@

Parameters:
- setupFileName + trustlevel @@ -114578,7 +118549,7 @@
Parameters:
- The setup file name + @@ -114619,7 +118590,7 @@
Parameters:
Source:
@@ -114648,7 +118619,7 @@
Returns:
- This + QuickScript object
@@ -114659,7 +118630,7 @@
Returns:
-GogScript +QuickScript
@@ -114677,7 +118648,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

type(type) → {WineShortcut}

@@ -114685,7 +118656,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Sets the shortcut type
@@ -114721,13 +118692,13 @@

Parameters:
- setupFileNames + type -Array.<string> +string @@ -114737,7 +118708,7 @@
Parameters:
- The setup file name(s) + The shortcut type @@ -114778,7 +118749,7 @@
Parameters:
Source:
@@ -114807,7 +118778,7 @@
Returns:
- This + The WineShortcut object
@@ -114818,7 +118789,7 @@
Returns:
-GogScript +WineShortcut
@@ -114836,7 +118807,7 @@
Returns:
-

headers(headers) → {Downloader}

+

uninstall(name) → {bool}

@@ -114844,7 +118815,7 @@

headers - Sets the http headers + uninstall application @@ -114880,13 +118851,13 @@
Parameters:
- headers + name -Object +string @@ -114896,7 +118867,7 @@
Parameters:
- The http headers + of the application which shall be uninstalled @@ -114937,7 +118908,7 @@
Parameters:
Source:
@@ -114966,7 +118937,7 @@
Returns:
- The Downloader object + true if an application has been uninstalled, false otherwise
@@ -114977,7 +118948,7 @@
Returns:
-Downloader +bool
@@ -114995,7 +118966,7 @@
Returns:
-

json() → {any}

+

uninstall() → {void}

@@ -115003,7 +118974,7 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Uninstalls the shortcut @@ -115047,7 +119018,7 @@

jsonSource:
@@ -115075,10 +119046,6 @@

json - The json value - -
@@ -115087,7 +119054,7 @@
Returns:
-any +void
@@ -115105,7 +119072,7 @@
Returns:
-

kill() → {Wine}

+

url(url) → {Downloader}

@@ -115113,7 +119080,7 @@

kill - kill wine server + Sets the URL which shall be used for the download @@ -115124,6 +119091,55 @@

kill + + + + Name + + + Type + + + + + + Description + + + + + + + + + url + + + + + +string + + + + + + + + + + The URL + + + + + + + @@ -115157,7 +119173,7 @@

killSource:
@@ -115185,6 +119201,10 @@

kill + The Downloader object + +
@@ -115193,7 +119213,7 @@
Returns:
-Wine +Downloader
@@ -115211,7 +119231,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

url(url) → {Resource}

@@ -115219,8 +119239,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 resource URL
@@ -115256,13 +119275,13 @@

Parameters:
- setupWizard + url -SetupWizard +string @@ -115272,7 +119291,7 @@
Parameters:
- The setupWizard to use + The URL @@ -115313,7 +119332,7 @@
Parameters:
Source:
@@ -115342,7 +119361,7 @@
Returns:
- This + The Resource object
@@ -115353,7 +119372,7 @@
Returns:
-GogScript +Resource
@@ -115371,7 +119390,7 @@
Returns:
-

message(message) → {Downloader}

+

wait() → {Wine}

@@ -115379,7 +119398,7 @@

message - Sets the download message text + wait until wineserver finishes @@ -115390,55 +119409,6 @@

messageParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - @@ -115472,7 +119442,7 @@
Parameters:
Source:
@@ -115500,10 +119470,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -115512,7 +119478,7 @@
Returns:
-Downloader +Wine
@@ -115530,17 +119496,13 @@
Returns:
-

miniature(miniature) → {WineShortcut}

+

winepath(pathopt) → {String}

-
- Sets the miniature for the shortcut -
- @@ -115562,6 +119524,8 @@
Parameters:
Type + Attributes + @@ -115574,26 +119538,33 @@
Parameters:
- miniature + path -Array.<string> -| - -URI +String + + + <optional>
+ + + + + + + - An array which specifies the application of which the miniature shall be used or URI of the miniature + @@ -115634,7 +119605,7 @@
Parameters:
Source:
@@ -115662,10 +119633,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -115674,7 +119641,7 @@
Returns:
-WineShortcut +String
@@ -115692,7 +119659,7 @@
Returns:
-

miniature(miniatureopt)

+

wineServer(wineserver)

@@ -115700,7 +119667,7 @@

miniature - get/set miniature (for the installation and the shortcut) + executes wineserver in current prefix @@ -115724,8 +119691,6 @@
Parameters:
Type - Attributes - @@ -115738,33 +119703,183 @@
Parameters:
- miniature + wineserver -URI +string - - - <optional>
- + + + parameter + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +string + + + - + + + @@ -115805,7 +119920,7 @@
Parameters:
Source:
@@ -115830,6 +119945,28 @@
Parameters:
+
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + @@ -115841,7 +119978,7 @@
Parameters:
-

name(name) → {Resource}

+

withCpuCycles(cpuCycles) → {Dosbox}

@@ -115849,7 +119986,8 @@

name - Sets the resource name + Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D @@ -115885,13 +120023,13 @@
Parameters:

- + + @@ -115942,7 +120080,7 @@
Parameters:
Source:
@@ -115971,7 +120109,7 @@
Returns:
- The Resource object + This
@@ -115982,7 +120120,7 @@
Returns:
-Resource +Dosbox
@@ -116000,7 +120138,7 @@
Returns:
-

name(name) → {WineShortcut}

+

withDimensions(width, height) → {VirtualDesktop}

@@ -116008,7 +120146,7 @@

name - Sets the shortcut name + Specifies the dimensions of the virtual desktop @@ -116044,13 +120182,13 @@
Parameters:

- + + + + + + + + + + + + + + + + + + @@ -116101,7 +120262,7 @@
Parameters:
Source:
@@ -116130,7 +120291,7 @@
Returns:
- The WineShortcut object + This
@@ -116141,7 +120302,7 @@
Returns:
-WineShortcut +VirtualDesktop
@@ -116159,7 +120320,7 @@
Returns:
-

of(shortcut) → {void}

+

withDriver(driver) → {SoundDriver}

@@ -116167,7 +120328,7 @@

of - Sets shortcut + Specifies the used sound driver @@ -116203,7 +120364,7 @@
Parameters:

- + + @@ -116260,7 +120421,7 @@
Parameters:
Source:
@@ -116288,6 +120449,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -116296,7 +120461,7 @@
Returns:
-void +SoundDriver
@@ -116314,7 +120479,7 @@
Returns:
-

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

+

withExtension(extension) → {NativeApplication}

@@ -116322,7 +120487,7 @@

- Specifies if the download shall be executed only if a newer version is available + Specifies the file extension
@@ -116358,13 +120523,13 @@

Parameters:
- + + @@ -116415,7 +120580,7 @@
Parameters:
Source:
@@ -116444,7 +120609,7 @@
Returns:
- The Downloader object + This
@@ -116455,7 +120620,7 @@
Returns:
-Downloader +NativeApplication
@@ -116473,7 +120638,7 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

withHdpi(hdpi) → {HDPI}

@@ -116481,7 +120646,7 @@

prefix - Sets the shortcut prefix + Specifies whether hdpi should be enabled or not @@ -116517,13 +120682,13 @@
Parameters:

- + + @@ -116574,7 +120739,7 @@
Parameters:
Source:
@@ -116603,7 +120768,7 @@
Returns:
- The WineShortcut object + This
@@ -116614,7 +120779,7 @@
Returns:
-WineShortcut +HDPI
@@ -116632,13 +120797,17 @@
Returns:
-

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

+

withManaged(managed) → {Managed}

+
+ Specifies the global managed state +
+ @@ -116660,8 +120829,6 @@
Parameters:
- - @@ -116674,132 +120841,23 @@
Parameters:
- + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -116840,7 +120898,7 @@
Parameters:
Source:
@@ -116868,6 +120926,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -116876,10 +120938,7 @@
Returns:
-string -| - -Wine +Managed
@@ -116897,7 +120956,7 @@
Returns:
-

prefixDirectory() → {string}

+

withManagedApplication(application, managed) → {Managed}

@@ -116905,7 +120964,7 @@

prefix
- returns prefix directory + Specifies the managed state for a given application
@@ -116916,106 +120975,76 @@

prefix - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-
- - - - - - - - - - - - - - - -

Returns:
+
NameTypeDescription
application + +string + + + The application executable
os + - path to the miniature fileThe windows version
namecpuCycles -string +int @@ -115901,7 +120039,7 @@
Parameters:
-
The name of the resource(example: max 95% limit 33000)
namewidth -string +number @@ -116060,7 +120198,30 @@
Parameters:
-
The shortcut namewidth of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
shortcutdriver @@ -116219,7 +120380,7 @@
Parameters:
-
shortcutalsa or pulse
onlyIfUpdateAvailableextension -boolean +string @@ -116374,7 +120539,7 @@
Parameters:
-
true the download shall be executed only if a newer version is availableThe file extension (pdf, txt, rtf)
prefixhdpi -string +boolean @@ -116533,7 +120698,7 @@
Parameters:
-
The shortcut prefixtrue if hdpi shall be enabled
TypeAttributes
prefixmanaged -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string +boolean - - <optional>
- - - - - -
True if it shall be managed
+ + + + + -
-
- Type -
-
-string + -
-
+ + + + + + + + + - - + - -

programFiles() → {string}

- + + + + + + + + + + + - + + +
NameTypeDescription
application + + +string + + The application
managed + + +boolean + + True if the application shall be managed
@@ -117051,7 +121080,7 @@

programFi
Source:
@@ -117080,7 +121109,7 @@

Returns:
- name of "Program Files" + This
@@ -117091,7 +121120,7 @@
Returns:
-string +Managed
@@ -117109,7 +121138,7 @@
Returns:
-

run(userArguments) → {void}

+

withMemSize(memSize) → {Dosbox}

@@ -117117,7 +121146,8 @@

run - Runs a shortcut with the given user arguments + Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D @@ -117153,13 +121183,13 @@
Parameters:
- userArguments + memSize -array +int @@ -117169,7 +121199,7 @@
Parameters:
- The user arguments + The memory size @@ -117210,7 +121240,7 @@
Parameters:
Source:
@@ -117238,6 +121268,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -117246,7 +121280,7 @@
Returns:
-void +Dosbox
@@ -117264,13 +121298,17 @@
Returns:
-

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

+

withMode(mode) → {FontSmoothing}

+
+ Specifies the used font smoothing mode +
+ @@ -117292,12 +121330,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -117308,7 +121342,7 @@
Parameters:
- executable + mode @@ -117321,217 +121355,169 @@
Parameters:
- - - - - - - - - - - - - + "RGB", "BGR" or "Gray Scale" + + - - - args - - - - -array - - - - - - <optional>
- - +
- - - + - - - - [] - - - + - - + - - - workingDirectory - + - - - -string + + - - + - - - - <optional>
- + - + - - - + - - - - working container - - - + - - + +
Source:
+
+ - - - captureOutput - + + + +
+ - - - -boolean - - - - - - <optional>
- - - - - - - - - false - - - - - + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
- - - wait - - - - -boolean - - + - - - <optional>
- - + - - - + +

withMode(mode) → {GLSL}

+ - - - - false - - - + - - + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + - + - - - - - - + @@ -117572,7 +121558,7 @@
Parameters:
Source:
@@ -117601,7 +121587,7 @@
Returns:
- output + This
@@ -117612,7 +121598,7 @@
Returns:
-String +GLSL
@@ -117630,13 +121616,17 @@
Returns:
-

runInsidePrefix(executable, argsopt, waitopt)

+

withMode(mode) → {TakeFocus}

+
+ Specifies the mode +
+ @@ -117658,12 +121648,8 @@
Parameters:
- - - - @@ -117674,7 +121660,7 @@
Parameters:
- + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -117821,7 +121717,7 @@
Parameters:
Source:
@@ -117846,6 +121742,28 @@
Parameters:
+
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + @@ -117857,7 +121775,7 @@
Parameters:
- +

withMode(mode) → {DirectDrawRenderer}

@@ -117865,7 +121783,7 @@ - + + @@ -117958,7 +121876,7 @@
Parameters:
Source:
@@ -117987,7 +121905,7 @@
Returns:
- The WineShortcut object + This
@@ -117998,7 +121916,7 @@
Returns:
-WineShortcut +DirectDrawRenderer
@@ -118016,7 +121934,7 @@
Returns:
-

stop() → {void}

+

withRenderAspect(renderAspect) → {Dosbox}

@@ -118024,7 +121942,8 @@

stop - Stops the running shortcut + Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D @@ -118035,6 +121954,55 @@

stop +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
userDatamode -map +string - - <optional>
- - - - -
- - empty - - enabled or disabled
TypeAttributesDefaultDescription
executablemode @@ -117687,100 +121673,10 @@
Parameters:
- - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - - "Y" or "N"
searchmode @@ -117917,7 +121835,7 @@
Parameters:
-
The executable namegdi or opengl
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + @@ -118068,7 +122036,7 @@

stopSource:
@@ -118096,6 +122064,10 @@

stop + This + +
@@ -118104,7 +122076,7 @@
Returns:
-void +Dosbox
@@ -118122,13 +122094,17 @@
Returns:
-

system32directory() → {string}

+

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
@@ -118138,6 +122114,56 @@

syst +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + @@ -118170,7 +122196,7 @@

syst
Source:
@@ -118199,7 +122225,7 @@

Returns:
- system32 directory + This
@@ -118210,7 +122236,7 @@
Returns:
-string +Dosbox
@@ -118228,13 +122254,17 @@
Returns:
-

system64directory() → {string}

+

withScript(command) → {PlainInstaller}

+
+ Sets the installation script consisting of a lambda function +
+ @@ -118243,6 +122273,55 @@

syst +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
command + + +function + + + + The installation command
+ + @@ -118276,7 +122355,7 @@

syst
Source:
@@ -118305,7 +122384,7 @@

Returns:
- system64 directory + The PlainInstaller object
@@ -118316,7 +122395,7 @@
Returns:
-string +PlainInstaller
@@ -118334,7 +122413,7 @@
Returns:
-

to(localDestination) → {Downloader}

+

withSetting(key, value) → {Dosbox}

@@ -118342,7 +122421,7 @@

to - Sets the download destination + Sets a dosbox setting @@ -118378,7 +122457,7 @@
Parameters:
- localDestination + key @@ -118394,7 +122473,30 @@
Parameters:
- The destination of the download. If it is a directory, the file will be placed inside + The key of the setting (example dosbox_memsize) + + + + + + + value + + + + + +any + + + + + + + + + + The value to be set @@ -118435,7 +122537,7 @@
Parameters:
Source:
@@ -118464,7 +122566,7 @@
Returns:
- The Downloader object + This
@@ -118475,7 +122577,7 @@
Returns:
-Downloader +Dosbox
@@ -118493,7 +122595,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

withVersion(major, minor) → {OpenGL}

@@ -118501,7 +122603,7 @@

trustLevel<
- Sets the trust level + Specifies the major and minor versions
@@ -118537,13 +122639,13 @@

Parameters:
- trustLevel + major -string +number @@ -118553,7 +122655,30 @@
Parameters:
- The trust level + The major version + + + + + + + minor + + + + + +number + + + + + + + + + + The minor version @@ -118594,7 +122719,7 @@
Parameters:
Source:
@@ -118623,7 +122748,7 @@
Returns:
- The WineShortcut object + This
@@ -118634,7 +122759,7 @@
Returns:
-WineShortcut +OpenGL
@@ -118652,7 +122777,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

withWindowsVersion(version, servicePack) → {WindowsVersion}

@@ -118660,7 +122785,7 @@

trustLevel<
- set trust level + Specifies the default windows version
@@ -118696,7 +122821,7 @@

Parameters:
- trustlevel + version @@ -118712,7 +122837,30 @@
Parameters:
- + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31 + + + + + + + servicePack + + + + + +string + + + + + + + + + + e.g. sp3 @@ -118753,7 +122901,7 @@
Parameters:
Source:
@@ -118782,7 +122930,7 @@
Returns:
- QuickScript object + This
@@ -118793,7 +122941,7 @@
Returns:
-QuickScript +WindowsVersion
@@ -118811,7 +122959,7 @@
Returns:
-

type(type) → {WineShortcut}

+

wizard(wizard) → {Resource}

@@ -118819,7 +122967,7 @@

type - Sets the shortcut type + Sets the setup wizard @@ -118855,13 +123003,13 @@
Parameters:
- type + wizard -string +SetupWizard @@ -118871,7 +123019,7 @@
Parameters:
- The shortcut type + The setup wizard @@ -118912,7 +123060,7 @@
Parameters:
Source:
@@ -118941,7 +123089,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -118952,7 +123100,7 @@
Returns:
-WineShortcut +Resource
@@ -118970,17 +123118,13 @@
Returns:
-

uninstall(name) → {bool}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- uninstall application -
- @@ -119002,6 +123146,8 @@
Parameters:
Type + Attributes + @@ -119014,23 +123160,33 @@
Parameters:
- name + wizard -string +SetupWizard + + + <optional>
+ + + + + + + - of the application which shall be uninstalled + @@ -119071,7 +123227,7 @@
Parameters:
Source:
@@ -119099,10 +123255,6 @@
Parameters:
Returns:
-
- true if an application has been uninstalled, false otherwise -
-
@@ -119111,7 +123263,10 @@
Returns:
-bool +SetupWizard +| + +Wine
@@ -119129,7 +123284,7 @@
Returns:
-

uninstall() → {void}

+

wizard(wizard) → {Downloader}

@@ -119137,7 +123292,7 @@

uninstall - Uninstalls the shortcut + Sets the setup wizard @@ -119148,6 +123303,55 @@

uninstallParameters:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wizard + + +SetupWizard + + + + The setup wizard
+ + @@ -119181,7 +123385,7 @@

uninstallSource:
@@ -119209,6 +123413,10 @@

uninstallReturns:

+
+ The Downloader object +
+
@@ -119217,7 +123425,7 @@
Returns:
-void +Downloader
@@ -119230,12 +123438,147 @@
Returns:
+ + + + + +

+ +
+ + + + + + + +
+ +
+ +

default()

+ +
setting to set the DirectDraw renderer
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new default()

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

Methods

+ + -

url(url) → {Downloader}

+

_createShortcut(prefixopt)

@@ -119243,7 +123586,7 @@

url - Sets the URL which shall be used for the download + creates shortcut @@ -119267,6 +123610,8 @@
Parameters:
Type + Attributes + @@ -119279,7 +123624,7 @@
Parameters:
- url + prefix @@ -119292,10 +123637,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The URL + prefix name @@ -119336,7 +123691,7 @@
Parameters:
Source:
@@ -119361,28 +123716,6 @@
Parameters:
-
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - @@ -119394,7 +123727,7 @@
Returns:
-

url(url) → {Resource}

+

_fetchFileNameFromUrl(url) → {string}

@@ -119402,7 +123735,7 @@

url - Sets the resource URL + Fetches the file name from an URL @@ -119495,7 +123828,7 @@
Parameters:
Source:
@@ -119524,7 +123857,7 @@
Returns:
- The Resource object + The file name
@@ -119535,7 +123868,7 @@
Returns:
-Resource +string
@@ -119553,7 +123886,7 @@
Returns:
-

wait() → {Wine}

+

algorithm(algorithm) → {Downloader}

@@ -119561,7 +123894,7 @@

wait - wait until wineserver finishes + Sets the algorithm which shall be used to verify the checksum @@ -119572,6 +123905,55 @@

wait + + + + Name + + + Type + + + + + + Description + + + + + + + + + algorithm + + + + + +string + + + + + + + + + + The checksum algorithm (e.g. "SHA") + + + + + + + @@ -119605,7 +123987,7 @@

waitSource:
@@ -119633,6 +124015,10 @@

wait + The Downloader object + +
@@ -119641,7 +124027,7 @@
Returns:
-Wine +Downloader
@@ -119659,13 +124045,17 @@
Returns:
-

winepath(pathopt) → {String}

+

algorithm(algorithm) → {Resource}

+
+ Sets the checksum algorithm +
+ @@ -119687,8 +124077,6 @@
Parameters:
Type - Attributes - @@ -119701,33 +124089,23 @@
Parameters:
- path + algorithm -String +string - - - <optional>
- - - - - - - - + The algorithm to verify the checksum (e.g. "SHA") @@ -119768,7 +124146,7 @@
Parameters:
Source:
@@ -119796,6 +124174,10 @@
Parameters:
Returns:
+
+ The Resource object +
+
@@ -119804,7 +124186,7 @@
Returns:
-String +Resource
@@ -119822,7 +124204,7 @@
Returns:
-

wineServer(wineserver)

+

application(application) → {AppResource}

@@ -119830,7 +124212,7 @@

wineServer<
- executes wineserver in current prefix + Sets the application containing the resources
@@ -119866,7 +124248,7 @@

Parameters:
- wineserver + application @@ -119882,7 +124264,7 @@
Parameters:
- parameter + The application with the resource @@ -119923,7 +124305,7 @@
Parameters:
Source:
@@ -119948,83 +124330,52 @@
Parameters:
- - - - +
Returns:
- - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function +
+ The AppResource object
+
+
+ Type +
+
+ +AppResource +
+
+ -
Parameters:
- - - - - - - - - + - + - - - + +

architecture() → {string}

+ - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - The installation command
+ @@ -120060,7 +124411,7 @@
Parameters:
Source:
@@ -120089,7 +124440,7 @@
Returns:
- The PlainInstaller object + architecture ("x86" or "amd64")
@@ -120100,7 +124451,7 @@
Returns:
-PlainInstaller +string
@@ -120118,7 +124469,7 @@
Returns:
-

wizard(wizard) → {Resource}

+

arguments(args) → {WineShortcut}

@@ -120126,7 +124477,7 @@

wizard - Sets the setup wizard + Sets the shortcut arguments

@@ -120162,13 +124513,13 @@
Parameters:
- wizard + args -SetupWizard +array @@ -120178,7 +124529,7 @@
Parameters:
- The setup wizard + The shortcut arguments @@ -120219,7 +124570,7 @@
Parameters:
Source:
@@ -120248,7 +124599,7 @@
Returns:
- The Resource object + The WineShortcut object
@@ -120259,7 +124610,7 @@
Returns:
-Resource +WineShortcut
@@ -120277,17 +124628,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

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

-
- Sets the setup wizard -
- @@ -120309,8 +124656,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -120321,23 +124672,39 @@
Parameters:
- wizard + architecture -SetupWizard +string + + + <optional>
+ + + + + + + + + + current architecture + + + - The setup wizard + @@ -120378,7 +124745,7 @@
Parameters:
Source:
@@ -120406,10 +124773,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -120418,7 +124781,7 @@
Returns:
-Downloader +Array.<string>
@@ -120436,7 +124799,7 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

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

@@ -120468,6 +124831,8 @@
Parameters:
+ Default + Description @@ -120478,13 +124843,13 @@
Parameters:
- wizard + distribution name -SetupWizard +string @@ -120503,6 +124868,12 @@
Parameters:
+ + + current distribution + + + @@ -120545,7 +124916,7 @@
Parameters:
Source:
@@ -120581,10 +124952,7 @@
Returns:
-SetupWizard -| - -Wine +Array.<string>
@@ -120597,147 +124965,12 @@
Returns:
- - - - - -

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

default()

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

Constructor

- - - -

new default()

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

Methods

- - -

_createShortcut(prefixopt)

+

binPath(subCategoryopt, versionopt) → {string}

@@ -120745,7 +124978,8 @@

_creat
- creates shortcut + returns the path to the engine binary directory +if no parameters are given, the Wine version of the current prefix is used
@@ -120783,7 +125017,7 @@

Parameters:
- prefix + subCategory @@ -120809,7 +125043,40 @@
Parameters:
- prefix name + Wine sub-category + + + + + + + version + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + Wine version @@ -120850,7 +125117,7 @@
Parameters:
Source:
@@ -120875,6 +125142,28 @@
Parameters:
+
Returns:
+ + +
+ path to "wine" binary +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -120886,7 +125175,7 @@
Parameters:
-

_fetchFileNameFromUrl(url) → {string}

+

category(category) → {WineShortcut}

@@ -120894,7 +125183,7 @@

- Fetches the file name from an URL + Sets the shortcut category
@@ -120930,7 +125219,7 @@

Parameters:
- url + category @@ -120946,7 +125235,7 @@
Parameters:
- The URL + The shortcut category @@ -120987,7 +125276,7 @@
Parameters:
Source:
@@ -121016,7 +125305,7 @@
Returns:
- The file name + The WineShortcut object
@@ -121027,7 +125316,7 @@
Returns:
-string +WineShortcut
@@ -121045,7 +125334,7 @@
Returns:
-

algorithm(algorithm) → {Resource}

+

checksum(checksum) → {Resource}

@@ -121053,7 +125342,7 @@

algorithm - Sets the checksum algorithm + Sets the checksum which shall be used to verify the resource @@ -121089,7 +125378,7 @@
Parameters:
- algorithm + checksum @@ -121105,7 +125394,7 @@
Parameters:
- The algorithm to verify the checksum (e.g. "SHA") + The checksum @@ -121146,7 +125435,7 @@
Parameters:
Source:
@@ -121204,7 +125493,7 @@
Returns:
-

algorithm(algorithm) → {Downloader}

+

checksum(checksum) → {Downloader}

@@ -121212,7 +125501,7 @@

algorithm - Sets the algorithm which shall be used to verify the checksum + Sets the checksum @@ -121248,7 +125537,7 @@
Parameters:
- algorithm + checksum @@ -121264,7 +125553,7 @@
Parameters:
- The checksum algorithm (e.g. "SHA") + The checksum which shall be used to verify the download @@ -121305,7 +125594,7 @@
Parameters:
Source:
@@ -121363,7 +125652,7 @@
Returns:
-

application(application) → {AppResource}

+

create() → {void}

@@ -121371,7 +125660,7 @@

applicatio
- Sets the application containing the resources + Creates a new shortcut
@@ -121382,55 +125671,6 @@

applicatio -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - @@ -121464,7 +125704,7 @@
Parameters:
Source:
@@ -121492,10 +125732,6 @@
Parameters:
Returns:
-
- The AppResource object -
-
@@ -121504,7 +125740,7 @@
Returns:
-AppResource +void
@@ -121522,13 +125758,17 @@
Returns:
-

architecture() → {string}

+

create() → {Wine}

+
+ runs "wineboot" +
+ @@ -121570,7 +125810,7 @@

architect
Source:
@@ -121599,7 +125839,7 @@

Returns:
- architecture ("x86" or "amd64") + The Wine object
@@ -121610,7 +125850,7 @@
Returns:
-string +Wine
@@ -121628,7 +125868,7 @@
Returns:
-

arguments(args) → {WineShortcut}

+

description(description) → {WineShortcut}

@@ -121636,7 +125876,7 @@

arguments - Sets the shortcut arguments + Sets the shortcut description @@ -121672,13 +125912,13 @@
Parameters:
- args + description -array +string @@ -121688,7 +125928,7 @@
Parameters:
- The shortcut arguments + The shortcut description @@ -121729,7 +125969,7 @@
Parameters:
Source:
@@ -121787,13 +126027,17 @@
Returns:
-

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

+

directory(directory) → {Resource}

+
+ Sets the directory inside the resources directory where the Resource is stored +
+ @@ -121815,12 +126059,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -121831,7 +126071,7 @@
Parameters:
- architecture + directory @@ -121844,26 +126084,10 @@
Parameters:
- - - <optional>
- - - - - - - - - - current architecture - - - - + The directory path @@ -121904,7 +126128,7 @@
Parameters:
Source:
@@ -121932,6 +126156,10 @@
Parameters:
Returns:
+
+ The Resource object +
+
@@ -121940,7 +126168,7 @@
Returns:
-Array.<string> +Resource
@@ -121958,88 +126186,23 @@
Returns:
-

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

- - - - - - - - - - - - - - -
Parameters:
+

dosConfigFile() → {string}

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string +
+ Fetch the prefix dosbox configuration file +
- -
- - <optional>
- - - -
- - current distribution - -
@@ -122075,7 +126238,7 @@
Parameters:
Source:
@@ -122103,6 +126266,10 @@
Parameters:
Returns:
+
+ The dosbox configuration file path +
+
@@ -122111,7 +126278,7 @@
Returns:
-Array.<string> +string
@@ -122129,7 +126296,7 @@
Returns:
-

binPath(subCategoryopt, versionopt) → {string}

+

download(setupWizard) → {String}

@@ -122137,8 +126304,7 @@

binPath - returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used + Download the setup resources in the same directory, and returns the path of the .exe @@ -122162,8 +126328,6 @@
Parameters:
Type - Attributes - @@ -122176,66 +126340,23 @@
Parameters:
- subCategory - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - Wine sub-category - - - - - - - version + setupWizard -string +SetupWizard - - - <optional>
- - - - - - - - Wine version + The setup wizard @@ -122276,7 +126397,7 @@
Parameters:
Source:
@@ -122305,7 +126426,7 @@
Returns:
- path to "wine" binary + The .exe file entry that can be used to continue the installation
@@ -122316,7 +126437,7 @@
Returns:
-string +String
@@ -122334,7 +126455,7 @@
Returns:
-

category(category) → {WineShortcut}

+

downloadFinished(wine) → {boolean}

@@ -122342,7 +126463,8 @@

category - Sets the shortcut category + Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first @@ -122378,13 +126500,13 @@
Parameters:
- category + wine -string +Wine @@ -122394,7 +126516,7 @@
Parameters:
- The shortcut category + The wine engine object @@ -122435,7 +126557,7 @@
Parameters:
Source:
@@ -122464,7 +126586,7 @@
Returns:
- The WineShortcut object + True if the download has finished, false otherwise
@@ -122475,7 +126597,7 @@
Returns:
-WineShortcut +boolean
@@ -122493,7 +126615,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

downloadStarted(wine) → {boolean}

@@ -122501,7 +126623,7 @@

checksum - Sets the checksum + Checks whether the software download has started @@ -122537,13 +126659,13 @@
Parameters:
- checksum + wine -string +Wine @@ -122553,7 +126675,7 @@
Parameters:
- The checksum which shall be used to verify the download + The wine engine object @@ -122594,7 +126716,7 @@
Parameters:
Source:
@@ -122623,7 +126745,7 @@
Returns:
- The Downloader object + True if the download has started, false otherwise
@@ -122634,7 +126756,7 @@
Returns:
-Downloader +boolean
@@ -122652,7 +126774,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

environment(environment) → {WineShortcut}

@@ -122660,7 +126782,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the shortcut environment variables @@ -122696,7 +126818,7 @@
Parameters:
- checksum + environment @@ -122712,7 +126834,7 @@
Parameters:
- The checksum + The environment variables @@ -122753,117 +126875,7 @@
Parameters:
Source:
- - - - - - - -

- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
@@ -122892,7 +126904,7 @@
Returns:
- The Wine object + The WineShortcut object
@@ -122903,113 +126915,7 @@
Returns:
-Wine - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void +WineShortcut
@@ -123027,7 +126933,7 @@
Returns:
-

description(description) → {WineShortcut}

+

environment(environment) → {QuickScript}

@@ -123035,7 +126941,7 @@

descriptio
- Sets the shortcut description + set environment
@@ -123071,7 +126977,7 @@

Parameters:
- description + environment @@ -123087,7 +126993,7 @@
Parameters:
- The shortcut description + variables @@ -123128,7 +127034,7 @@
Parameters:
Source:
@@ -123157,7 +127063,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -123168,7 +127074,7 @@
Returns:
-WineShortcut +QuickScript
@@ -123186,7 +127092,7 @@
Returns:
-

directory(directory) → {Resource}

+

executable(executable, args)

@@ -123194,7 +127100,7 @@

directory - Sets the directory inside the resources directory where the Resource is stored + set executable @@ -123230,23 +127136,36 @@
Parameters:
- directory + executable - -string + + + + executable without path (e.g. "Steam.exe") + + + + + + + args + + + + - The directory path + use array (e.g. ["-applaunch", 409160]) @@ -123287,7 +127206,7 @@
Parameters:
Source:
@@ -123312,28 +127231,6 @@
Parameters:
-
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - @@ -123345,16 +127242,13 @@
Returns:
-

download(setupWizard) → {String}

+

fontDirectory() → {string}

-
- Download the setup resources in the same directory, and returns the path of the .exe -
@@ -123364,56 +127258,6 @@

downloadParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - @@ -123446,7 +127290,7 @@
Parameters:
Source:
@@ -123475,7 +127319,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + font directory
@@ -123486,7 +127330,7 @@
Returns:
-String +string
@@ -123504,7 +127348,7 @@
Returns:
-

environment(environment) → {WineShortcut}

+

get(resourceName) → {Resource}

@@ -123512,7 +127356,7 @@

environmen
- Sets the shortcut environment variables + Returns the searched resource
@@ -123548,7 +127392,7 @@

Parameters:
- environment + resourceName @@ -123564,7 +127408,7 @@
Parameters:
- The environment variables + The name of the resource @@ -123605,7 +127449,7 @@
Parameters:
Source:
@@ -123634,7 +127478,7 @@
Returns:
- The WineShortcut object + The found resource
@@ -123645,7 +127489,7 @@
Returns:
-WineShortcut +Resource
@@ -123663,7 +127507,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

get() → {String}

@@ -123671,7 +127515,7 @@

environmen
- set environment + Gets the content of the downloaded file
@@ -123682,55 +127526,6 @@

environmen -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - @@ -123764,7 +127559,7 @@
Parameters:
Source:
@@ -123793,7 +127588,7 @@
Returns:
- QuickScript object + The content of downloaded file
@@ -123804,7 +127599,7 @@
Returns:
-QuickScript +String
@@ -123822,7 +127617,7 @@
Returns:
-

executable(executable, args)

+

get() → {string}

@@ -123830,7 +127625,7 @@

executable<
- set executable + Fetches the Resource and returns the path leading to the downloaded resource
@@ -123841,68 +127636,6 @@

executable< -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - @@ -123936,7 +127669,7 @@
Parameters:
Source:
@@ -123961,6 +127694,28 @@
Parameters:
+
Returns:
+ + +
+ The path leading to the downloaded resource +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -123972,13 +127727,17 @@
Parameters:
-

fontDirectory() → {string}

+

getContainer() → {string}

+
+ Returns the name of the container belonging to a shortcut +
+ @@ -124020,7 +127779,7 @@

fontDire
Source:
@@ -124049,7 +127808,7 @@

Returns:
- font directory + The container name
@@ -124078,7 +127837,7 @@
Returns:
-

get() → {string}

+

getSettings() → {object}

@@ -124086,7 +127845,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Fetch all prefix dosbox sttings @@ -124130,7 +127889,7 @@

getSource:
@@ -124159,7 +127918,7 @@
Returns:
- The path leading to the downloaded resource + All the settings
@@ -124170,9 +127929,168 @@
Returns:
+object + + +
+

+ + + + + + + + + + + + + +

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 + +
@@ -124188,7 +128106,7 @@
Returns:
-

get() → {String}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -124196,7 +128114,7 @@

get - Gets the content of the downloaded file + Sets the setup file(s) name so that the script can fetch it from gog.com @@ -124207,6 +128125,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileNames + + + + + +Array.<string> + + + + + + + + + + The setup file name(s) + + + + + + + @@ -124240,7 +128207,7 @@

getSource:
@@ -124269,7 +128236,7 @@
Returns:
- The content of downloaded file + This
@@ -124280,7 +128247,7 @@
Returns:
-String +GogScript
@@ -124298,7 +128265,7 @@
Returns:
-

get(resourceName) → {Resource}

+

headers(headers) → {Downloader}

@@ -124306,7 +128273,7 @@

get - Returns the searched resource + Sets the http headers @@ -124342,13 +128309,13 @@
Parameters:
- resourceName + headers -string +Object @@ -124358,7 +128325,7 @@
Parameters:
- The name of the resource + The http headers @@ -124399,7 +128366,7 @@
Parameters:
Source:
@@ -124428,7 +128395,7 @@
Returns:
- The found resource + The Downloader object
@@ -124439,7 +128406,7 @@
Returns:
-Resource +Downloader
@@ -124457,7 +128424,7 @@
Returns:
-

getContainer() → {string}

+

isHdpi() → {boolean}

@@ -124465,7 +128432,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Fetches whether hdpi is enabled or not
@@ -124509,7 +128476,7 @@

getContai
Source:
@@ -124538,7 +128505,7 @@

Returns:
- The container name + True if hdpi is enabled, false otherwise
@@ -124549,7 +128516,7 @@
Returns:
-string +boolean
@@ -124567,7 +128534,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

json() → {any}

@@ -124575,7 +128542,7 @@

gogSe
- Sets one setup file 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
@@ -124586,55 +128553,6 @@

gogSe -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - @@ -124668,7 +128586,7 @@
Parameters:
Source:
@@ -124697,7 +128615,7 @@
Returns:
- This + The json value
@@ -124708,7 +128626,7 @@
Returns:
-GogScript +any
@@ -124726,7 +128644,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

kill() → {Wine}

@@ -124734,7 +128652,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + kill wine server
@@ -124745,55 +128663,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -124827,7 +128696,7 @@
Parameters:
Source:
@@ -124855,10 +128724,6 @@
Parameters:
Returns:
-
- This -
-
@@ -124867,7 +128732,7 @@
Returns:
-GogScript +Wine
@@ -124885,7 +128750,7 @@
Returns:
-

headers(headers) → {Downloader}

+

loginToGog(setupWizard) → {GogScript}

@@ -124893,7 +128758,8 @@

headers - Sets the http headers + 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 @@ -124929,13 +128795,13 @@
Parameters:
- headers + setupWizard -Object +SetupWizard @@ -124945,7 +128811,7 @@
Parameters:
- The http headers + The setupWizard to use @@ -124986,7 +128852,7 @@
Parameters:
Source:
@@ -125015,7 +128881,7 @@
Returns:
- The Downloader object + This
@@ -125026,7 +128892,7 @@
Returns:
-Downloader +GogScript
@@ -125044,7 +128910,7 @@
Returns:
-

json() → {any}

+

message(message) → {Downloader}

@@ -125052,7 +128918,7 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Sets the download message text @@ -125063,114 +128929,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
message + + +string + + The download message
@@ -125206,7 +129011,7 @@

killSource:
@@ -125234,6 +129039,10 @@

kill + The Downloader object + +
@@ -125242,7 +129051,7 @@
Returns:
-Wine +Downloader
@@ -125260,7 +129069,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

miniature(miniatureopt)

@@ -125268,8 +129077,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 + get/set miniature (for the installation and the shortcut)
@@ -125293,6 +129101,8 @@

Parameters:
Type + Attributes + @@ -125305,23 +129115,33 @@
Parameters:
- setupWizard + miniature -SetupWizard +URI + + + <optional>
+ + + + + + + - The setupWizard to use + path to the miniature file @@ -125362,7 +129182,147 @@
Parameters:
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:
+
@@ -125391,7 +129351,7 @@
Returns:
- This + The WineShortcut object
@@ -125402,7 +129362,7 @@
Returns:
-GogScript +WineShortcut
@@ -125420,7 +129380,7 @@
Returns:
-

message(message) → {Downloader}

+

name(name) → {Resource}

@@ -125428,7 +129388,7 @@

message - Sets the download message text + Sets the resource name @@ -125464,7 +129424,7 @@
Parameters:
- message + name @@ -125480,7 +129440,7 @@
Parameters:
- The download message + The name of the resource @@ -125521,7 +129481,7 @@
Parameters:
Source:
@@ -125550,7 +129510,7 @@
Returns:
- The Downloader object + The Resource object
@@ -125561,7 +129521,7 @@
Returns:
-Downloader +Resource
@@ -125579,7 +129539,7 @@
Returns:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {WineShortcut}

@@ -125587,7 +129547,7 @@

miniature - Sets the miniature for the shortcut + Sets the shortcut name @@ -125623,16 +129583,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -125642,7 +129599,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The shortcut name @@ -125683,7 +129640,7 @@
Parameters:
Source:
@@ -125741,7 +129698,7 @@
Returns:
-

miniature(miniatureopt)

+

of(shortcut) → {void}

@@ -125749,7 +129706,7 @@

miniature - get/set miniature (for the installation and the shortcut) + Sets shortcut @@ -125773,8 +129730,6 @@
Parameters:
Type - Attributes - @@ -125787,33 +129742,23 @@
Parameters:
- miniature + shortcut -URI +string - - - <optional>
- - - - - - - - path to the miniature file + shortcut @@ -125854,7 +129799,7 @@
Parameters:
Source:
@@ -125879,6 +129824,24 @@
Parameters:
+
Returns:
+ + + + +
+
+ Type +
+
+ +void + + +
+
+ + @@ -125890,7 +129853,7 @@
Parameters:
-

name(name) → {Resource}

+

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

@@ -125898,7 +129861,7 @@

name - Sets the resource name + Specifies if the download shall be executed only if a newer version is available @@ -125934,13 +129897,13 @@
Parameters:
- name + onlyIfUpdateAvailable -string +boolean @@ -125950,7 +129913,7 @@
Parameters:
- The name of the resource + true the download shall be executed only if a newer version is available @@ -125991,7 +129954,7 @@
Parameters:
Source:
@@ -126020,7 +129983,7 @@
Returns:
- The Resource object + The Downloader object
@@ -126031,7 +129994,7 @@
Returns:
-Resource +Downloader
@@ -126049,17 +130012,13 @@
Returns:
-

name(name) → {WineShortcut}

+

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

-
- Sets the shortcut name -
- @@ -126081,6 +130040,8 @@
Parameters:
Type + Attributes + @@ -126093,7 +130054,7 @@
Parameters:
- name + prefix @@ -126106,10 +130067,119 @@
Parameters:
+ + + <optional>
+ + + + + + + - The shortcut name + + + + + + + + distribution + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + + + + + + + + architecture + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + + + + + + + + version + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + @@ -126150,7 +130220,7 @@
Parameters:
Source:
@@ -126178,10 +130248,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -126190,7 +130256,10 @@
Returns:
-WineShortcut +string +| + +Wine
@@ -126208,7 +130277,7 @@
Returns:
-

of(shortcut) → {void}

+

prefix(prefix) → {WineShortcut}

@@ -126216,7 +130285,7 @@

of - Sets shortcut + Sets the shortcut prefix @@ -126252,7 +130321,7 @@
Parameters:
- shortcut + prefix @@ -126268,7 +130337,7 @@
Parameters:
- shortcut + The shortcut prefix @@ -126309,7 +130378,7 @@
Parameters:
Source:
@@ -126337,6 +130406,10 @@
Parameters:
Returns:
+
+ The WineShortcut object +
+
@@ -126345,7 +130418,7 @@
Returns:
-void +WineShortcut
@@ -126363,7 +130436,7 @@
Returns:
-

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

+

prefixDirectory() → {string}

@@ -126371,7 +130444,7 @@

- Specifies if the download shall be executed only if a newer version is available + returns prefix directory
@@ -126382,55 +130455,6 @@

-

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - @@ -126464,7 +130488,7 @@
Parameters:
Source:
@@ -126492,10 +130516,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -126504,7 +130524,7 @@
Returns:
-Downloader +string
@@ -126522,17 +130542,13 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

programFiles() → {string}

-
- Sets the shortcut prefix -
- @@ -126541,60 +130557,11 @@

prefixParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
+
@@ -126623,7 +130590,7 @@
Parameters:
Source:
@@ -126652,7 +130619,7 @@
Returns:
- The WineShortcut object + name of "Program Files"
@@ -126663,7 +130630,7 @@
Returns:
-WineShortcut +string
@@ -126681,7 +130648,7 @@
Returns:
-

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

+

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

@@ -126713,6 +130680,8 @@
Parameters:
+ Default + Description @@ -126723,7 +130692,7 @@
Parameters:
- prefix + executable @@ -126738,8 +130707,6 @@
Parameters:
- <optional>
- @@ -126748,6 +130715,10 @@
Parameters:
+ + + + @@ -126756,13 +130727,13 @@
Parameters:
- distribution + args -string +array @@ -126781,6 +130752,12 @@
Parameters:
+ + + [] + + + @@ -126789,7 +130766,7 @@
Parameters:
- architecture + workingDirectory @@ -126814,6 +130791,12 @@
Parameters:
+ + + working container + + + @@ -126822,13 +130805,13 @@
Parameters:
- version + captureOutput -string +boolean @@ -126847,224 +130830,97 @@
Parameters:
+ + + false + + + - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - + + + wait - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - + + + +boolean - - + + - + + + + <optional>
+ - + - -
Source:
-
- + + + - + + + + false + + + - + + -
- - - - - - - + + + userData + + + + +map + + + + + + <optional>
+ + - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - + + - + + + + empty + + + - -

programFiles() → {string}

- + + - - - - - - - - - + + @@ -127100,7 +130956,7 @@

programFi
Source:
@@ -127129,7 +130985,7 @@

Returns:
- name of "Program Files" + output
@@ -127140,7 +130996,7 @@
Returns:
-string +String
@@ -127313,373 +131169,7 @@
Returns:
-

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 - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

+

runInsidePrefix(executable, argsopt, waitopt)

@@ -129602,7 +133092,7 @@
Returns:
-

wait() → {Wine}

+

wait() → {Wine}

@@ -129690,7 +133180,7 @@
Returns:
-Wine +Wine
@@ -130008,7 +133498,7 @@
Parameters:
-

withScript(command) → {PlainInstaller}

+

withApplicationWindowsVersion(application, os) → {WindowsVersion}

@@ -130016,7 +133506,7 @@

withScript<
- Sets the installation script consisting of a lambda function + Specifies the windows version for a given application
@@ -130052,13 +133542,13 @@

Parameters:
- command + application -function +string @@ -130068,7 +133558,30 @@
Parameters:
- The installation command + The application executable + + + + + + + os + + + + + +string + + + + + + + + + + The windows version @@ -130109,7 +133622,7 @@
Parameters:
Source:
@@ -130138,7 +133651,7 @@
Returns:
- The PlainInstaller object + This
@@ -130149,7 +133662,7 @@
Returns:
-PlainInstaller +WindowsVersion
@@ -130167,7 +133680,7 @@
Returns:
-

wizard(wizard) → {Resource}

+

withCpuCycles(cpuCycles) → {Dosbox}

@@ -130175,7 +133688,8 @@

wizard - Sets the setup wizard + Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D @@ -130211,13 +133725,13 @@
Parameters:
- wizard + cpuCycles -SetupWizard +int @@ -130227,7 +133741,7 @@
Parameters:
- The setup wizard + (example: max 95% limit 33000) @@ -130268,7 +133782,7 @@
Parameters:
Source:
@@ -130297,7 +133811,7 @@
Returns:
- The Resource object + This
@@ -130308,7 +133822,7 @@
Returns:
-Resource +Dosbox
@@ -130326,7 +133840,7 @@
Returns:
-

wizard(wizard) → {Downloader}

+

withDimensions(width, height) → {VirtualDesktop}

@@ -130334,7 +133848,7 @@

wizard - Sets the setup wizard + Specifies the dimensions of the virtual desktop @@ -130370,13 +133884,13 @@
Parameters:
- wizard + width -SetupWizard +number @@ -130386,7 +133900,30 @@
Parameters:
- The setup wizard + width of virtual desktop (in px) + + + + + + + height + + + + + +number + + + + + + + + + + height of virtual desktop (in px) @@ -130427,7 +133964,7 @@
Parameters:
Source:
@@ -130456,7 +133993,7 @@
Returns:
- The Downloader object + This
@@ -130467,7 +134004,7 @@
Returns:
-Downloader +VirtualDesktop
@@ -130485,13 +134022,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

withDriver(driver) → {SoundDriver}

+
+ Specifies the used sound driver +
+ @@ -130513,8 +134054,6 @@
Parameters:
Type - Attributes - @@ -130527,33 +134066,23 @@
Parameters:
- wizard + driver -SetupWizard +string - - - <optional>
- - - - - - - - + alsa or pulse @@ -130594,7 +134123,7 @@
Parameters:
Source:
@@ -130622,6 +134151,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -130630,10 +134163,7 @@
Returns:
-SetupWizard -| - -Wine +SoundDriver
@@ -130646,55 +134176,77 @@
Returns:
+ + +

withExtension(extension) → {NativeApplication}

+ -

-
+
+ Specifies the file extension +
-
-
+ + + +
Parameters:
-

default()

+ + + + -
Wine main prototype
+ - - -
-
- +
+ - -

Constructor

- + - -

new default()

- + + + + + + + + + + + + + - + + +
NameTypeDescription
extension + + +string + + The file extension (pdf, txt, rtf)
@@ -130730,7 +134282,7 @@

new defaultSource:
@@ -130755,30 +134307,32 @@

new defaultReturns:

+ +
+ This +
+
+
+ Type +
+
+ +NativeApplication - - - - - - - +
+
- - - - -

Methods

@@ -130786,7 +134340,7 @@

Methods

-

_createShortcut(prefixopt)

+

withHdpi(hdpi) → {HDPI}

@@ -130794,7 +134348,7 @@

_creat
- creates shortcut + Specifies whether hdpi should be enabled or not
@@ -130818,8 +134372,6 @@

Parameters:
Type - Attributes - @@ -130832,33 +134384,23 @@
Parameters:
- prefix + hdpi -string +boolean - - - <optional>
- - - - - - - - prefix name + true if hdpi shall be enabled @@ -130899,7 +134441,7 @@
Parameters:
Source:
@@ -130924,6 +134466,28 @@
Parameters:
+
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + @@ -130935,7 +134499,7 @@
Parameters:
-

_fetchFileNameFromUrl(url) → {string}

+

withManaged(managed) → {Managed}

@@ -130943,7 +134507,7 @@

- Fetches the file name from an URL + Specifies the global managed state
@@ -130979,13 +134543,13 @@

Parameters:
- url + managed -string +boolean @@ -130995,7 +134559,7 @@
Parameters:
- The URL + True if it shall be managed @@ -131036,7 +134600,7 @@
Parameters:
Source:
@@ -131065,7 +134629,7 @@
Returns:
- The file name + This
@@ -131076,7 +134640,7 @@
Returns:
-string +Managed
@@ -131094,7 +134658,7 @@
Returns:
-

algorithm(algorithm) → {Resource}

+

withManagedApplication(application, managed) → {Managed}

@@ -131102,7 +134666,7 @@

algorithm - Sets the checksum algorithm + Specifies the managed state for a given application @@ -131138,7 +134702,7 @@
Parameters:
- algorithm + application @@ -131154,7 +134718,30 @@
Parameters:
- The algorithm to verify the checksum (e.g. "SHA") + The application + + + + + + + managed + + + + + +boolean + + + + + + + + + + True if the application shall be managed @@ -131195,7 +134782,7 @@
Parameters:
Source:
@@ -131224,7 +134811,7 @@
Returns:
- The Resource object + This
@@ -131235,7 +134822,7 @@
Returns:
-Resource +Managed
@@ -131253,7 +134840,7 @@
Returns:
-

algorithm(algorithm) → {Downloader}

+

withMemSize(memSize) → {Dosbox}

@@ -131261,7 +134848,8 @@

algorithm - Sets the algorithm which shall be used to verify the checksum + Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D @@ -131297,13 +134885,13 @@
Parameters:
- algorithm + memSize -string +int @@ -131313,7 +134901,7 @@
Parameters:
- The checksum algorithm (e.g. "SHA") + The memory size @@ -131354,7 +134942,7 @@
Parameters:
Source:
@@ -131383,7 +134971,7 @@
Returns:
- The Downloader object + This
@@ -131394,7 +134982,7 @@
Returns:
-Downloader +Dosbox
@@ -131412,7 +135000,7 @@
Returns:
-

application(application) → {AppResource}

+

withMode(mode) → {FontSmoothing}

@@ -131420,7 +135008,7 @@

applicatio
- Sets the application containing the resources + Specifies the used font smoothing mode
@@ -131456,7 +135044,7 @@

Parameters:
- application + mode @@ -131472,7 +135060,7 @@
Parameters:
- The application with the resource + "RGB", "BGR" or "Gray Scale" @@ -131513,7 +135101,7 @@
Parameters:
Source:
@@ -131542,113 +135130,7 @@
Returns:
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") + This
@@ -131659,7 +135141,7 @@
Returns:
-string +FontSmoothing
@@ -131677,7 +135159,7 @@
Returns:
-

arguments(args) → {WineShortcut}

+

withMode(mode) → {GLSL}

@@ -131685,7 +135167,7 @@

arguments - Sets the shortcut arguments + Specifies the mode @@ -131721,13 +135203,13 @@
Parameters:
- args + mode -array +string @@ -131737,7 +135219,7 @@
Parameters:
- The shortcut arguments + enabled or disabled @@ -131778,7 +135260,7 @@
Parameters:
Source:
@@ -131807,7 +135289,7 @@
Returns:
- The WineShortcut object + This
@@ -131818,7 +135300,7 @@
Returns:
-WineShortcut +GLSL
@@ -131836,13 +135318,17 @@
Returns:
-

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

+

withMode(mode) → {TakeFocus}

+
+ Specifies the mode +
+ @@ -131864,12 +135350,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -131880,7 +135362,7 @@
Parameters:
- architecture + mode @@ -131893,26 +135375,10 @@
Parameters:
- - - <optional>
- - - - - - - - - - current architecture - - - - + "Y" or "N" @@ -131953,7 +135419,7 @@
Parameters:
Source:
@@ -131981,6 +135447,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -131989,7 +135459,7 @@
Returns:
-Array.<string> +TakeFocus
@@ -132007,13 +135477,17 @@
Returns:
-

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

+

withMode(mode) → {DirectDrawRenderer}

+
+ Selects the used direct draw mode (either gdi or opengl) +
+ @@ -132035,12 +135509,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -132051,7 +135521,7 @@
Parameters:
- distribution name + mode @@ -132064,26 +135534,10 @@
Parameters:
- - - <optional>
- - - - - - - - - - current distribution - - - - + gdi or opengl @@ -132124,7 +135578,7 @@
Parameters:
Source:
@@ -132152,6 +135606,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -132160,7 +135618,7 @@
Returns:
-Array.<string> +DirectDrawRenderer
@@ -132178,7 +135636,7 @@
Returns:
-

binPath(subCategoryopt, versionopt) → {string}

+

withRenderAspect(renderAspect) → {Dosbox}

@@ -132186,8 +135644,8 @@

binPath - returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used + Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D @@ -132211,8 +135669,6 @@
Parameters:
Type - Attributes - @@ -132225,66 +135681,23 @@
Parameters:
- subCategory - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - Wine sub-category - - - - - - - version + renderAspect -string +boolean - - - <optional>
- - - - - - - - Wine version + The render aspect @@ -132325,7 +135738,7 @@
Parameters:
Source:
@@ -132354,7 +135767,7 @@
Returns:
- path to "wine" binary + This
@@ -132365,7 +135778,7 @@
Returns:
-string +Dosbox
@@ -132383,7 +135796,7 @@
Returns:
-

category(category) → {WineShortcut}

+

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

@@ -132391,7 +135804,8 @@

category - Sets the shortcut category + Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D @@ -132427,13 +135841,13 @@
Parameters:
- category + renderFrameSkip -string +int @@ -132443,7 +135857,7 @@
Parameters:
- The shortcut category + The render frameskip @@ -132484,7 +135898,7 @@
Parameters:
Source:
@@ -132513,7 +135927,7 @@
Returns:
- The WineShortcut object + This
@@ -132524,7 +135938,7 @@
Returns:
-WineShortcut +Dosbox
@@ -132542,7 +135956,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

withScript(command) → {PlainInstaller}

@@ -132550,7 +135964,7 @@

checksum - Sets the checksum + Sets the installation script consisting of a lambda function @@ -132586,13 +136000,13 @@
Parameters:
- checksum + command -string +function @@ -132602,7 +136016,7 @@
Parameters:
- The checksum which shall be used to verify the download + The installation command @@ -132643,7 +136057,7 @@
Parameters:
Source:
@@ -132672,7 +136086,7 @@
Returns:
- The Downloader object + The PlainInstaller object
@@ -132683,7 +136097,7 @@
Returns:
-Downloader +PlainInstaller
@@ -132701,7 +136115,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

withSetting(key, value) → {Dosbox}

@@ -132709,7 +136123,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets a dosbox setting @@ -132745,7 +136159,7 @@
Parameters:
- checksum + key @@ -132761,122 +136175,35 @@
Parameters:
- The checksum + The key of the setting (example dosbox_memsize) - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - + + + value + + + + +any + + - - + - -

create() → {Wine}

- + The value to be set + - - - -
- runs "wineboot" -
- - - - - - - + + @@ -132912,7 +136239,7 @@

createSource:
@@ -132941,124 +136268,18 @@
Returns:
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut + This
- - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - -
Type
-void +Dosbox
@@ -133076,7 +136297,7 @@
Returns:
-

description(description) → {WineShortcut}

+

withVersion(major, minor) → {OpenGL}

@@ -133084,7 +136305,7 @@

descriptio
- Sets the shortcut description + Specifies the major and minor versions
@@ -133120,13 +136341,13 @@

Parameters:
- description + major -string +number @@ -133136,7 +136357,30 @@
Parameters:
- The shortcut description + The major version + + + + + + + minor + + + + + +number + + + + + + + + + + The minor version @@ -133177,7 +136421,7 @@
Parameters:
Source:
@@ -133206,7 +136450,7 @@
Returns:
- The WineShortcut object + This
@@ -133217,7 +136461,7 @@
Returns:
-WineShortcut +OpenGL
@@ -133235,7 +136479,7 @@
Returns:
-

directory(directory) → {Resource}

+

withWindowsVersion(version, servicePack) → {WindowsVersion}

@@ -133243,7 +136487,7 @@

directory - Sets the directory inside the resources directory where the Resource is stored + Specifies the default windows version @@ -133279,7 +136523,7 @@
Parameters:
- directory + version @@ -133295,7 +136539,30 @@
Parameters:
- The directory path + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31 + + + + + + + servicePack + + + + + +string + + + + + + + + + + e.g. sp3 @@ -133336,7 +136603,7 @@
Parameters:
Source:
@@ -133365,7 +136632,7 @@
Returns:
- The Resource object + This
@@ -133376,7 +136643,7 @@
Returns:
-Resource +WindowsVersion
@@ -133394,7 +136661,7 @@
Returns:
-

download(setupWizard) → {String}

+

wizard(wizard) → {Resource}

@@ -133402,7 +136669,7 @@

download - Download the setup resources in the same directory, and returns the path of the .exe + Sets the setup wizard @@ -133438,7 +136705,7 @@
Parameters:
- setupWizard + wizard @@ -133495,7 +136762,7 @@
Parameters:
Source:
@@ -133524,7 +136791,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + The Resource object
@@ -133535,7 +136802,7 @@
Returns:
-String +Resource
@@ -133553,17 +136820,13 @@
Returns:
-

environment(environment) → {WineShortcut}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the shortcut environment variables -
- @@ -133585,6 +136848,8 @@
Parameters:
Type + Attributes + @@ -133597,23 +136862,33 @@
Parameters:
- environment + wizard -string +SetupWizard + + + <optional>
+ + + + + + + - The environment variables + @@ -133654,7 +136929,7 @@
Parameters:
Source:
@@ -133682,10 +136957,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -133694,7 +136965,10 @@
Returns:
-WineShortcut +SetupWizard +| + +Wine
@@ -133712,7 +136986,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

wizard(wizard) → {Downloader}

@@ -133720,7 +136994,7 @@

environmen
- set environment + Sets the setup wizard
@@ -133756,13 +137030,13 @@

Parameters:
- environment + wizard -string +SetupWizard @@ -133772,7 +137046,7 @@
Parameters:
- variables + The setup wizard @@ -133813,7 +137087,7 @@
Parameters:
Source:
@@ -133842,7 +137116,7 @@
Returns:
- QuickScript object + The Downloader object
@@ -133853,7 +137127,7 @@
Returns:
-QuickScript +Downloader
@@ -133866,12 +137140,147 @@
Returns:
+ + + + + + + +

+ + + + + + + +
+ +
+ +

default()

+ +
Setting to set the Fonts Smoothing
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new default()

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

Methods

+ + -

executable(executable, args)

+

_createShortcut(prefixopt)

@@ -133879,7 +137288,7 @@

executable<
- set executable + creates shortcut
@@ -133903,6 +137312,8 @@

Parameters:
Type + Attributes + @@ -133915,36 +137326,33 @@
Parameters:
- executable + prefix - + +string - + - executable without path (e.g. "Steam.exe") - - - - - - - args + + + <optional>
+ - - - + + + - use array (e.g. ["-applaunch", 409160]) + prefix name @@ -133985,7 +137393,7 @@
Parameters:
Source:
@@ -134021,13 +137429,16 @@
Parameters:
-

fontDirectory() → {string}

+

_fetchFileNameFromUrl(url) → {string}

+
+ Fetches the file name from an URL +
@@ -134037,6 +137448,56 @@

fontDire +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
url + + +string + + + + The URL
+ + + @@ -134069,7 +137530,7 @@

fontDire
Source:
@@ -134098,7 +137559,7 @@

Returns:
- font directory + The file name
@@ -134127,7 +137588,7 @@
Returns:
-

get() → {string}

+

algorithm(algorithm) → {Downloader}

@@ -134135,7 +137596,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Sets the algorithm which shall be used to verify the checksum @@ -134146,6 +137607,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + algorithm + + + + + +string + + + + + + + + + + The checksum algorithm (e.g. "SHA") + + + + + + + @@ -134179,7 +137689,7 @@

getSource:
@@ -134208,7 +137718,7 @@
Returns:
- The path leading to the downloaded resource + The Downloader object
@@ -134219,7 +137729,7 @@
Returns:
-string +Downloader
@@ -134237,7 +137747,7 @@
Returns:
-

get() → {String}

+

algorithm(algorithm) → {Resource}

@@ -134245,7 +137755,7 @@

get - Gets the content of the downloaded file + Sets the checksum algorithm @@ -134256,6 +137766,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + algorithm + + + + + +string + + + + + + + + + + The algorithm to verify the checksum (e.g. "SHA") + + + + + + + @@ -134289,7 +137848,7 @@

getSource:
@@ -134318,7 +137877,7 @@
Returns:
- The content of downloaded file + The Resource object
@@ -134329,7 +137888,7 @@
Returns:
-String +Resource
@@ -134347,7 +137906,7 @@
Returns:
-

get(resourceName) → {Resource}

+

application(application) → {AppResource}

@@ -134355,7 +137914,7 @@

get - Returns the searched resource + Sets the application containing the resources @@ -134391,7 +137950,7 @@
Parameters:
- resourceName + application @@ -134407,7 +137966,7 @@
Parameters:
- The name of the resource + The application with the resource @@ -134448,7 +138007,7 @@
Parameters:
Source:
@@ -134477,7 +138036,7 @@
Returns:
- The found resource + The AppResource object
@@ -134488,7 +138047,7 @@
Returns:
-Resource +AppResource
@@ -134506,17 +138065,13 @@
Returns:
-

getContainer() → {string}

+

architecture() → {string}

-
- Returns the name of the container belonging to a shortcut -
- @@ -134558,7 +138113,7 @@

getContai
Source:
@@ -134587,7 +138142,7 @@

Returns:
- The container name + architecture ("x86" or "amd64")
@@ -134616,7 +138171,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

arguments(args) → {WineShortcut}

@@ -134624,7 +138179,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the shortcut arguments
@@ -134660,13 +138215,13 @@

Parameters:
- setupFileName + args -string +array @@ -134676,7 +138231,7 @@
Parameters:
- The setup file name + The shortcut arguments @@ -134717,7 +138272,7 @@
Parameters:
Source:
@@ -134746,7 +138301,7 @@
Returns:
- This + The WineShortcut object
@@ -134757,7 +138312,7 @@
Returns:
-GogScript +WineShortcut
@@ -134775,17 +138330,13 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

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

-
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- @@ -134807,8 +138358,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -134819,23 +138374,39 @@
Parameters:
- setupFileNames + architecture -Array.<string> +string + + + <optional>
+ + + + + + + + + + current architecture + + + - The setup file name(s) + @@ -134876,7 +138447,7 @@
Parameters:
Source:
@@ -134904,10 +138475,6 @@
Parameters:
Returns:
-
- This -
-
@@ -134916,7 +138483,7 @@
Returns:
-GogScript +Array.<string>
@@ -134934,17 +138501,13 @@
Returns:
-

headers(headers) → {Downloader}

+

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

-
- Sets the http headers -
- @@ -134966,8 +138529,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -134978,23 +138545,39 @@
Parameters:
- headers + distribution name -Object +string + + + <optional>
+ + + + + - The http headers + + + + current distribution + + + + + @@ -135035,7 +138618,7 @@
Parameters:
Source:
@@ -135063,10 +138646,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -135075,7 +138654,7 @@
Returns:
-Downloader +Array.<string>
@@ -135093,7 +138672,7 @@
Returns:
-

json() → {any}

+

binPath(subCategoryopt, versionopt) → {string}

@@ -135101,7 +138680,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + returns the path to the engine binary directory +if no parameters are given, the Wine version of the current prefix is used @@ -135112,6 +138692,100 @@

json + + + + Name + + + Type + + + Attributes + + + + + Description + + + + + + + + + subCategory + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + Wine sub-category + + + + + + + version + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + Wine version + + + + + + + @@ -135145,7 +138819,7 @@

jsonSource:
@@ -135174,7 +138848,7 @@
Returns:
- The json value + path to "wine" binary
@@ -135185,7 +138859,7 @@
Returns:
-any +string
@@ -135203,7 +138877,7 @@
Returns:
-

kill() → {Wine}

+

category(category) → {WineShortcut}

@@ -135211,7 +138885,7 @@

kill - kill wine server + Sets the shortcut category @@ -135222,6 +138896,55 @@

kill + + + + Name + + + Type + + + + + + Description + + + + + + + + + category + + + + + +string + + + + + + + + + + The shortcut category + + + + + + + @@ -135255,7 +138978,7 @@

killSource:
@@ -135283,6 +139006,10 @@

kill + The WineShortcut object + +
@@ -135291,7 +139018,7 @@
Returns:
-Wine +WineShortcut
@@ -135309,7 +139036,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

checksum(checksum) → {Resource}

@@ -135317,8 +139044,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 checksum which shall be used to verify the resource
@@ -135354,13 +139080,13 @@

Parameters:
- setupWizard + checksum -SetupWizard +string @@ -135370,7 +139096,7 @@
Parameters:
- The setupWizard to use + The checksum @@ -135411,7 +139137,7 @@
Parameters:
Source:
@@ -135440,7 +139166,7 @@
Returns:
- This + The Resource object
@@ -135451,7 +139177,7 @@
Returns:
-GogScript +Resource
@@ -135469,7 +139195,7 @@
Returns:
-

message(message) → {Downloader}

+

checksum(checksum) → {Downloader}

@@ -135477,7 +139203,7 @@

message - Sets the download message text + Sets the checksum @@ -135513,7 +139239,7 @@
Parameters:
- message + checksum @@ -135529,7 +139255,7 @@
Parameters:
- The download message + The checksum which shall be used to verify the download @@ -135570,7 +139296,7 @@
Parameters:
Source:
@@ -135628,7 +139354,7 @@
Returns:
-

miniature(miniature) → {WineShortcut}

+

create() → {void}

@@ -135636,7 +139362,7 @@

miniature - Sets the miniature for the shortcut + Creates a new shortcut @@ -135647,58 +139373,6 @@

miniatureParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - @@ -135732,7 +139406,113 @@
Parameters:
Source:
+ + + + + + + +

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

create() → {Wine}

+ + + + + + +
+ runs "wineboot" +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -135761,7 +139541,7 @@
Returns:
- The WineShortcut object + The Wine object
@@ -135772,7 +139552,7 @@
Returns:
-WineShortcut +Wine
@@ -135790,7 +139570,7 @@
Returns:
-

miniature(miniatureopt)

+

description(description) → {WineShortcut}

@@ -135798,7 +139578,7 @@

miniature - get/set miniature (for the installation and the shortcut) + Sets the shortcut description @@ -135822,8 +139602,6 @@
Parameters:
Type - Attributes - @@ -135836,33 +139614,23 @@
Parameters:
- miniature + description -URI +string - - - <optional>
- - - - - - - - path to the miniature file + The shortcut description @@ -135903,7 +139671,7 @@
Parameters:
Source:
@@ -135928,6 +139696,28 @@
Parameters:
+
Returns:
+ + +
+ The WineShortcut object +
+ + + +
+
+ Type +
+
+ +WineShortcut + + +
+
+ + @@ -135939,7 +139729,7 @@
Parameters:
-

name(name) → {Resource}

+

directory(directory) → {Resource}

@@ -135947,7 +139737,7 @@

name - Sets the resource name + Sets the directory inside the resources directory where the Resource is stored @@ -135983,7 +139773,7 @@
Parameters:
- name + directory @@ -135999,7 +139789,7 @@
Parameters:
- The name of the resource + The directory path @@ -136040,7 +139830,7 @@
Parameters:
Source:
@@ -136098,7 +139888,7 @@
Returns:
-

name(name) → {WineShortcut}

+

dosConfigFile() → {string}

@@ -136106,7 +139896,117 @@

name - Sets the shortcut name + Fetch the prefix dosbox configuration file + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

download(setupWizard) → {String}

+ + + + + + +
+ Download the setup resources in the same directory, and returns the path of the .exe
@@ -136142,13 +140042,13 @@
Parameters:
- name + setupWizard -string +SetupWizard @@ -136158,7 +140058,7 @@
Parameters:
- The shortcut name + The setup wizard @@ -136199,7 +140099,7 @@
Parameters:
Source:
@@ -136228,7 +140128,7 @@
Returns:
- The WineShortcut object + The .exe file entry that can be used to continue the installation
@@ -136239,7 +140139,7 @@
Returns:
-WineShortcut +String
@@ -136257,7 +140157,7 @@
Returns:
-

of(shortcut) → {void}

+

downloadFinished(wine) → {boolean}

@@ -136265,7 +140165,8 @@

of - Sets shortcut + Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first @@ -136301,13 +140202,13 @@
Parameters:
- shortcut + wine -string +Wine @@ -136317,7 +140218,7 @@
Parameters:
- shortcut + The wine engine object @@ -136358,7 +140259,7 @@
Parameters:
Source:
@@ -136386,6 +140287,10 @@
Parameters:
Returns:
+
+ True if the download has finished, false otherwise +
+
@@ -136394,7 +140299,7 @@
Returns:
-void +boolean
@@ -136412,7 +140317,7 @@
Returns:
-

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

+

downloadStarted(wine) → {boolean}

@@ -136420,7 +140325,7 @@

- Specifies if the download shall be executed only if a newer version is available + Checks whether the software download has started
@@ -136456,13 +140361,13 @@

Parameters:
- onlyIfUpdateAvailable + wine -boolean +Wine @@ -136472,7 +140377,7 @@
Parameters:
- true the download shall be executed only if a newer version is available + The wine engine object @@ -136513,7 +140418,7 @@
Parameters:
Source:
@@ -136542,7 +140447,7 @@
Returns:
- The Downloader object + True if the download has started, false otherwise
@@ -136553,7 +140458,7 @@
Returns:
-Downloader +boolean
@@ -136571,7 +140476,7 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

environment(environment) → {WineShortcut}

@@ -136579,7 +140484,7 @@

prefix - Sets the shortcut prefix + Sets the shortcut environment variables @@ -136615,7 +140520,7 @@
Parameters:
- prefix + environment @@ -136631,7 +140536,7 @@
Parameters:
- The shortcut prefix + The environment variables @@ -136672,7 +140577,7 @@
Parameters:
Source:
@@ -136730,13 +140635,17 @@
Returns:
-

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

+

environment(environment) → {QuickScript}

+
+ set environment +
+ @@ -136758,8 +140667,6 @@
Parameters:
Type - Attributes - @@ -136772,106 +140679,7 @@
Parameters:
- prefix - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - distribution - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - architecture - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - version + environment @@ -136884,20 +140692,10 @@
Parameters:
- - - <optional>
- - - - - - - - + variables @@ -136938,7 +140736,7 @@
Parameters:
Source:
@@ -136966,6 +140764,10 @@
Parameters:
Returns:
+
+ QuickScript object +
+
@@ -136974,10 +140776,7 @@
Returns:
-string -| - -Wine +QuickScript
@@ -136995,7 +140794,7 @@
Returns:
-

prefixDirectory() → {string}

+

executable(executable, args)

@@ -137003,7 +140802,7 @@

prefix
- returns prefix directory + set executable
@@ -137014,6 +140813,68 @@

prefix +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
executable + + executable without path (e.g. "Steam.exe")
args + + use array (e.g. ["-applaunch", 409160])
+ + @@ -137047,7 +140908,7 @@

prefix
Source:
@@ -137072,24 +140933,6 @@

prefix -

Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - @@ -137101,7 +140944,7 @@
Returns:
-

programFiles() → {string}

+

fontDirectory() → {string}

@@ -137149,7 +140992,7 @@

programFi
Source:
@@ -137178,7 +141021,7 @@

Returns:
- name of "Program Files" + font directory
@@ -137207,7 +141050,7 @@
Returns:
-

run(userArguments) → {void}

+

get(resourceName) → {Resource}

@@ -137215,7 +141058,7 @@

run - Runs a shortcut with the given user arguments + Returns the searched resource @@ -137251,13 +141094,13 @@
Parameters:
- userArguments + resourceName -array +string @@ -137267,7 +141110,7 @@
Parameters:
- The user arguments + The name of the resource @@ -137308,7 +141151,7 @@
Parameters:
Source:
@@ -137336,6 +141179,10 @@
Parameters:
Returns:
+
+ The found resource +
+
@@ -137344,7 +141191,7 @@
Returns:
-void +Resource
@@ -137362,13 +141209,16 @@
Returns:
-

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

+

get() → {String}

+
+ Gets the content of the downloaded file +
@@ -137377,264 +141227,115 @@

run - - - - Name - - Type - - Attributes - - - Default - - Description - - +
- - - - executable - - - - - -string - - - - - - - - - - + - - - + - - - - - + - - + - - - args - + - - - -array + + - - + - - - - <optional>
- + - + - - - + +
Source:
+
+ - - - - [] - - - + - - + +
- - - workingDirectory - - - - -string - - - - - - <optional>
- - - - - - - - - working container - - - - - - - - - captureOutput - - - - -boolean - - - - - - <optional>
- +
Returns:
- + +
+ The content of downloaded file +
- - - - - - - false - - - - - +
+
+ Type +
+
+ +String - - - - wait - +
+
- - - -boolean + - - - - - - <optional>
- - - - + - - - - false - - - + - - + +

get() → {string}

+ - - - userData - - - - -map +
+ Fetches the Resource and returns the path leading to the downloaded resource +
- - - - - - <optional>
- - - - - - - - - empty - - - - - - - - @@ -137670,7 +141371,7 @@
Parameters:
Source:
@@ -137699,7 +141400,7 @@
Returns:
- output + The path leading to the downloaded resource
@@ -137710,7 +141411,7 @@
Returns:
-String +string
@@ -137728,13 +141429,16 @@
Returns:
-

runInsidePrefix(executable, argsopt, waitopt)

+

getContainer() → {string}

+
+ Returns the name of the container belonging to a shortcut +
@@ -137743,147 +141447,115 @@

runIns -

Parameters:
- - - - - - - - - - - - - - - - - +
-
- - - - + - + - - - + - - - + - - + - - - - + - + - - - - - - - - - - - - - - - - - - - + + +
Returns:
+ + +
+ The container name +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + - - + - -
NameTypeAttributesDefaultDescription
executable - - -string + + - - - + - + - - - -
args - - -array + +
Source:
+
+ + - -
- - <optional>
- + + - - -
- - [] - -
wait - - -boolean - - - - <optional>
- - - -
- - false - -
+

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + @@ -137919,7 +141591,7 @@
Parameters:
Source:
@@ -137944,6 +141616,28 @@
Parameters:
+
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + @@ -137955,7 +141649,7 @@
Parameters:
- +

gogSetupFileName(setupFileName) → {GogScript}

@@ -137963,7 +141657,7 @@

- - -
- Specifies if the download shall be executed only if a newer version is available -
- +
@@ -146479,54 +150857,40 @@

+
-
Parameters:
+
- - - - +

default()

- +
Setting to enable/disable GLSL
+ + - - +
+
+ - + +

Constructor

+ -
- - + +

new default()

+ - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - true the download shall be executed only if a newer version is available
+ @@ -146562,7 +150926,7 @@
Parameters:
Source:
@@ -146587,32 +150951,30 @@
Parameters:
-
Returns:
- -
- The Downloader object -
-
-
- Type -
-
- -Downloader + + + + -
-
+ + + + + + + +

Methods

@@ -146620,7 +150982,7 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

_createShortcut(prefixopt)

@@ -146628,7 +150990,7 @@

prefix - Sets the shortcut prefix + creates shortcut @@ -146652,6 +151014,8 @@
Parameters:
Type + Attributes + @@ -146677,10 +151041,20 @@
Parameters:
+ + + <optional>
+ + + + + - The shortcut prefix + + + prefix name @@ -146721,7 +151095,7 @@
Parameters:
Source:
@@ -146746,28 +151120,6 @@
Parameters:
-
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - @@ -146779,13 +151131,17 @@
Returns:
-

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

+

_fetchFileNameFromUrl(url) → {string}

+
+ Fetches the file name from an URL +
+ @@ -146807,8 +151163,6 @@
Parameters:
Type - Attributes - @@ -146821,106 +151175,7 @@
Parameters:
- prefix - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - distribution - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - architecture - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - version + url @@ -146933,20 +151188,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The URL @@ -146987,7 +151232,7 @@
Parameters:
Source:
@@ -147015,6 +151260,10 @@
Parameters:
Returns:
+
+ The file name +
+
@@ -147024,9 +151273,6 @@
Returns:
string -| - -Wine
@@ -147044,7 +151290,7 @@
Returns:
-

prefixDirectory() → {string}

+

algorithm(algorithm) → {Downloader}

@@ -147052,7 +151298,7 @@

prefix
- returns prefix directory + Sets the algorithm which shall be used to verify the checksum
@@ -147063,6 +151309,55 @@

prefix +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
algorithm + + +string + + + + The checksum algorithm (e.g. "SHA")
+ + @@ -147096,7 +151391,7 @@

prefix
Source:
@@ -147124,6 +151419,10 @@

prefix

Returns:
+
+ The Downloader object +
+
@@ -147132,7 +151431,7 @@
Returns:
-string +Downloader
@@ -147150,19 +151449,72 @@
Returns:
-

programFiles() → {string}

+

algorithm(algorithm) → {Resource}

+
+ Sets the checksum algorithm +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
algorithm + + +string + + The algorithm to verify the checksum (e.g. "SHA")
@@ -147198,7 +151550,7 @@

programFi
Source:
@@ -147227,7 +151579,7 @@

Returns:
- name of "Program Files" + The Resource object
@@ -147238,7 +151590,7 @@
Returns:
-string +Resource
@@ -147256,7 +151608,7 @@
Returns:
-

run(userArguments) → {void}

+

application(application) → {AppResource}

@@ -147264,7 +151616,7 @@

run - Runs a shortcut with the given user arguments + Sets the application containing the resources @@ -147300,13 +151652,13 @@
Parameters:
- userArguments + application -array +string @@ -147316,7 +151668,7 @@
Parameters:
- The user arguments + The application with the resource @@ -147357,7 +151709,7 @@
Parameters:
Source:
@@ -147385,6 +151737,10 @@
Parameters:
Returns:
+
+ The AppResource object +
+
@@ -147393,7 +151749,7 @@
Returns:
-void +AppResource
@@ -147411,7 +151767,7 @@
Returns:
-

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

+

architecture() → {string}

@@ -147426,259 +151782,158 @@

run - - - - Name - - Type - - Attributes - - - Default - +
- Description - - + - - - - executable - + - - - -string + + - - + - - - + - + - - - + - - - - - + - - + - - - args - + +
Source:
+
+ - - - -array + + - - + +
- - - - <optional>
- - - - - - - - - [] - - - - - - - - - workingDirectory - - - - -string - - - - - - <optional>
- - - - - - - - - working container - - - - - +
Returns:
- + +
+ architecture ("x86" or "amd64") +
- - - captureOutput - - - - -boolean +
+
+ Type +
+
+ +string - - - - - - <optional>
- +
+
- + - - - - - - - false - - + + + + - - + +

arguments(args) → {WineShortcut}

+ - - - wait - + - - - -boolean - - +
+ Sets the shortcut arguments +
+ - - - - <optional>
- - - - - - - - - false - - - - - + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + - + - - - - - + @@ -147719,7 +151974,7 @@
Parameters:
Source:
@@ -147748,7 +152003,7 @@
Returns:
- output + The WineShortcut object
@@ -147759,7 +152014,7 @@
Returns:
-String +WineShortcut
@@ -147777,7 +152032,7 @@
Returns:
-

runInsidePrefix(executable, argsopt, waitopt)

+

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

@@ -147821,7 +152076,7 @@
Parameters:
- + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -147922,7 +152103,7 @@
Parameters:
@@ -147968,7 +152149,7 @@
Parameters:
Source:
@@ -147993,6 +152174,24 @@
Parameters:
+
Returns:
+ + + + +
+
+ Type +
+
+ +Array.<string> + + +
+
+ + @@ -148004,17 +152203,13 @@
Parameters:
- +

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

-
- Sets the executable which shall be used -
- @@ -148036,8 +152231,12 @@
Parameters:
+ + + + @@ -148048,7 +152247,7 @@
Parameters:
- + + - + + + + + @@ -148105,7 +152320,7 @@
Parameters:
Source:
@@ -148133,10 +152348,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -148145,7 +152356,7 @@
Returns:
-WineShortcut +Array.<string>
@@ -148163,7 +152374,7 @@
Returns:
-

stop() → {void}

+

binPath(subCategoryopt, versionopt) → {string}

@@ -148171,7 +152382,8 @@

stop - Stops the running shortcut + returns the path to the engine binary directory +if no parameters are given, the Wine version of the current prefix is used @@ -148182,106 +152394,98 @@

stop - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - +
NameTypeDescription
userDataargs -map +array - - <optional>
- - - - - -
- - empty - - The shortcut arguments
executablearchitecture @@ -147831,80 +152086,6 @@
Parameters:
-
- - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - false + current architecture TypeAttributesDefaultDescription
searchdistribution name @@ -148061,10 +152260,26 @@
Parameters:
+ + <optional>
+ + + + +
The executable name + + current distribution + +
+ + + + + + -
Returns:
+ + + + + + -
-
- Type -
-
- -void +
+ + + + + - - + + + + - - + + -

system32directory() → {string}

- - + + + + + + + + + + + + + +
NameTypeAttributesDescription
subCategory + + +string - + + + + <optional>
+ + + +
Wine sub-category
version + + +string + + + + <optional>
+ + + +
Wine version
@@ -148317,7 +152521,7 @@

syst
Source:
@@ -148346,7 +152550,7 @@

Returns:
- system32 directory + path to "wine" binary
@@ -148375,13 +152579,16 @@
Returns:
-

system64directory() → {string}

+

category(category) → {WineShortcut}

+
+ Sets the shortcut category +
@@ -148391,6 +152598,56 @@

syst +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
category + + +string + + + + The shortcut category
+ + + @@ -148423,7 +152680,7 @@

syst
Source:
@@ -148452,7 +152709,7 @@

Returns:
- system64 directory + The WineShortcut object
@@ -148463,7 +152720,7 @@
Returns:
-string +WineShortcut
@@ -148481,7 +152738,7 @@
Returns:
-

to(localDestination) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -148489,7 +152746,7 @@

to - Sets the download destination + Sets the checksum which shall be used to verify the resource @@ -148525,7 +152782,7 @@
Parameters:
- localDestination + checksum @@ -148541,7 +152798,7 @@
Parameters:
- The destination of the download. If it is a directory, the file will be placed inside + The checksum @@ -148582,7 +152839,7 @@
Parameters:
Source:
@@ -148611,7 +152868,7 @@
Returns:
- The Downloader object + The Resource object
@@ -148622,7 +152879,7 @@
Returns:
-Downloader +Resource
@@ -148640,7 +152897,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

checksum(checksum) → {Downloader}

@@ -148648,7 +152905,7 @@

trustLevel<
- Sets the trust level + Sets the checksum
@@ -148684,7 +152941,7 @@

Parameters:
- trustLevel + checksum @@ -148700,7 +152957,7 @@
Parameters:
- The trust level + The checksum which shall be used to verify the download @@ -148741,7 +152998,7 @@
Parameters:
Source:
@@ -148770,7 +153027,7 @@
Returns:
- The WineShortcut object + The Downloader object
@@ -148781,7 +153038,7 @@
Returns:
-WineShortcut +Downloader
@@ -148799,7 +153056,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

create() → {void}

@@ -148807,7 +153064,7 @@

trustLevel<
- set trust level + Creates a new shortcut
@@ -148818,55 +153075,6 @@

trustLevel< -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - @@ -148900,7 +153108,7 @@
Parameters:
Source:
@@ -148928,10 +153136,6 @@
Parameters:
Returns:
-
- QuickScript object -
-
@@ -148940,7 +153144,7 @@
Returns:
-QuickScript +void
@@ -148958,7 +153162,7 @@
Returns:
-

type(type) → {WineShortcut}

+

create() → {Wine}

@@ -148966,7 +153170,7 @@

type - Sets the shortcut type + runs "wineboot" @@ -148977,55 +153181,6 @@

type - - - - Name - - - Type - - - - - - Description - - - - - - - - - type - - - - - -string - - - - - - - - - - The shortcut type - - - - - - - @@ -149059,7 +153214,7 @@
Parameters:
Source:
@@ -149088,7 +153243,7 @@
Returns:
- The WineShortcut object + The Wine object
@@ -149099,7 +153254,7 @@
Returns:
-WineShortcut +Wine
@@ -149117,7 +153272,7 @@
Returns:
-

uninstall(name) → {bool}

+

description(description) → {WineShortcut}

@@ -149125,7 +153280,7 @@

uninstall - uninstall application + Sets the shortcut description @@ -149161,7 +153316,7 @@
Parameters:
- name + description @@ -149177,7 +153332,7 @@
Parameters:
- of the application which shall be uninstalled + The shortcut description @@ -149218,117 +153373,7 @@
Parameters:
Source:
- - - - - - - -

- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
@@ -149356,6 +153401,10 @@

uninstallReturns:

+
+ The WineShortcut object +
+
@@ -149364,7 +153413,7 @@
Returns:
-void +WineShortcut
@@ -149382,7 +153431,7 @@
Returns:
-

url(url) → {Downloader}

+

directory(directory) → {Resource}

@@ -149390,7 +153439,7 @@

url - Sets the URL which shall be used for the download + Sets the directory inside the resources directory where the Resource is stored @@ -149426,7 +153475,7 @@
Parameters:
- url + directory @@ -149442,7 +153491,7 @@
Parameters:
- The URL + The directory path @@ -149483,7 +153532,7 @@
Parameters:
Source:
@@ -149512,7 +153561,7 @@
Returns:
- The Downloader object + The Resource object
@@ -149523,7 +153572,7 @@
Returns:
-Downloader +Resource
@@ -149541,7 +153590,7 @@
Returns:
-

url(url) → {Resource}

+

dosConfigFile() → {string}

@@ -149549,7 +153598,117 @@

url - Sets the resource URL + Fetch the prefix dosbox configuration file + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

download(setupWizard) → {String}

+ + + + + + +
+ Download the setup resources in the same directory, and returns the path of the .exe
@@ -149585,13 +153744,13 @@
Parameters:
- url + setupWizard -string +SetupWizard @@ -149601,7 +153760,7 @@
Parameters:
- The URL + The setup wizard @@ -149642,7 +153801,7 @@
Parameters:
Source:
@@ -149671,7 +153830,7 @@
Returns:
- The Resource object + The .exe file entry that can be used to continue the installation
@@ -149682,7 +153841,7 @@
Returns:
-Resource +String
@@ -149700,7 +153859,7 @@
Returns:
-

wait() → {Wine}

+

downloadFinished(wine) → {boolean}

@@ -149708,7 +153867,8 @@

wait - wait until wineserver finishes + Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first @@ -149719,6 +153879,55 @@

wait + + + + Name + + + Type + + + + + + Description + + + + + + + + + wine + + + + + +Wine + + + + + + + + + + The wine engine object + + + + + + + @@ -149752,7 +153961,7 @@

waitSource:
@@ -149780,6 +153989,10 @@

wait + True if the download has finished, false otherwise + +
@@ -149788,7 +154001,7 @@
Returns:
-Wine +boolean
@@ -149806,13 +154019,17 @@
Returns:
-

winepath(pathopt) → {String}

+

downloadStarted(wine) → {boolean}

+
+ Checks whether the software download has started +
+ @@ -149834,8 +154051,6 @@
Parameters:
Type - Attributes - @@ -149848,33 +154063,23 @@
Parameters:
- path + wine -String +Wine - - - <optional>
- - - - - - - - + The wine engine object @@ -149915,7 +154120,7 @@
Parameters:
Source:
@@ -149943,6 +154148,10 @@
Parameters:
Returns:
+
+ True if the download has started, false otherwise +
+
@@ -149951,7 +154160,7 @@
Returns:
-String +boolean
@@ -149969,7 +154178,7 @@
Returns:
-

wineServer(wineserver)

+

environment(environment) → {WineShortcut}

@@ -149977,7 +154186,7 @@

wineServer<
- executes wineserver in current prefix + Sets the shortcut environment variables
@@ -150013,7 +154222,7 @@

Parameters:
- wineserver + environment @@ -150029,7 +154238,7 @@
Parameters:
- parameter + The environment variables @@ -150070,7 +154279,7 @@
Parameters:
Source:
@@ -150095,6 +154304,28 @@
Parameters:
+
Returns:
+ + +
+ The WineShortcut object +
+ + + +
+
+ Type +
+
+ +WineShortcut + + +
+
+ + @@ -150106,7 +154337,7 @@
Parameters:
-

withScript(command) → {PlainInstaller}

+

environment(environment) → {QuickScript}

@@ -150114,7 +154345,7 @@

withScript<
- Sets the installation script consisting of a lambda function + set environment
@@ -150150,13 +154381,13 @@

Parameters:
- command + environment -function +string @@ -150166,7 +154397,7 @@
Parameters:
- The installation command + variables @@ -150207,7 +154438,7 @@
Parameters:
Source:
@@ -150236,7 +154467,7 @@
Returns:
- The PlainInstaller object + QuickScript object
@@ -150247,7 +154478,7 @@
Returns:
-PlainInstaller +QuickScript
@@ -150265,7 +154496,7 @@
Returns:
-

wizard(wizard) → {Resource}

+

executable(executable, args)

@@ -150273,7 +154504,7 @@

wizard - Sets the setup wizard + set executable @@ -150309,15 +154540,28 @@
Parameters:
- wizard + executable - -SetupWizard + + + + + + executable without path (e.g. "Steam.exe") + + + + + + args + + + @@ -150325,7 +154569,7 @@
Parameters:
- The setup wizard + use array (e.g. ["-applaunch", 409160]) @@ -150366,7 +154610,91 @@
Parameters:
Source:
+ + + + + + + +

+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -150395,7 +154723,7 @@
Returns:
- The Resource object + font directory
@@ -150406,7 +154734,7 @@
Returns:
-Resource +string
@@ -150424,7 +154752,7 @@
Returns:
-

wizard(wizard) → {Downloader}

+

get(resourceName) → {Resource}

@@ -150432,7 +154760,7 @@

wizard - Sets the setup wizard + Returns the searched resource @@ -150468,13 +154796,13 @@
Parameters:
- wizard + resourceName -SetupWizard +string @@ -150484,7 +154812,7 @@
Parameters:
- The setup wizard + The name of the resource @@ -150525,7 +154853,7 @@
Parameters:
Source:
@@ -150554,7 +154882,7 @@
Returns:
- The Downloader object + The found resource
@@ -150565,7 +154893,7 @@
Returns:
-Downloader +Resource
@@ -150583,13 +154911,19 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

get() → {String}

+
+ Gets the content of the downloaded file +
+ + + @@ -150598,65 +154932,112 @@

wizardParameters:

+ + +
+ - - - - - - + - + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + + + + + + + + + + + + + + + + + +
Returns:
- - +
+ The content of downloaded file +
+ + +
+
+ Type +
+
+String -
- - - + + + - - - - - + - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - <optional>
- - + + + +

get() → {string}

+ + + + + + +
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ + + - -
@@ -150692,7 +155073,7 @@
Parameters:
Source:
@@ -150720,6 +155101,10 @@
Parameters:
Returns:
+
+ The path leading to the downloaded resource +
+
@@ -150728,10 +155113,7 @@
Returns:
-SetupWizard -| - -Wine +string
@@ -150744,48 +155126,21 @@
Returns:
- - - - - - - -

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

default()

- -
AppResource class
- - -
+ -
-
- -

Constructor

+

getContainer() → {string}

-

new default()

- - +
+ Returns the name of the container belonging to a shortcut +
@@ -150828,7 +155183,7 @@

new defaultSource:
@@ -150853,30 +155208,32 @@

new defaultReturns:

+ +
+ The container name +
+
+
+ Type +
+
+ +string - -

- - - - - + + - - - - -

Methods

@@ -150884,7 +155241,7 @@

Methods

-

_createShortcut(prefixopt)

+

getSettings() → {object}

@@ -150892,7 +155249,7 @@

_creat
- creates shortcut + Fetch all prefix dosbox sttings
@@ -150903,67 +155260,6 @@

_creat -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - @@ -150997,7 +155293,7 @@
Parameters:
Source:
@@ -151022,6 +155318,28 @@
Parameters:
+
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + @@ -151033,7 +155351,7 @@
Parameters:
-

_fetchFileNameFromUrl(url) → {string}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -151041,7 +155359,7 @@

- Fetches the file name from an URL + Sets one setup file name so that the script can fetch it from gog.com
@@ -151077,7 +155395,7 @@

Parameters:
- url + setupFileName @@ -151093,7 +155411,7 @@
Parameters:
- The URL + The setup file name @@ -151134,7 +155452,7 @@
Parameters:
Source:
@@ -151163,7 +155481,7 @@
Returns:
- The file name + This
@@ -151174,7 +155492,7 @@
Returns:
-string +GogScript
@@ -151192,7 +155510,7 @@
Returns:
-

algorithm(algorithm) → {Resource}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -151200,7 +155518,7 @@

algorithm - Sets the checksum algorithm + Sets the setup file(s) name so that the script can fetch it from gog.com @@ -151236,13 +155554,13 @@
Parameters:
- algorithm + setupFileNames -string +Array.<string> @@ -151252,7 +155570,7 @@
Parameters:
- The algorithm to verify the checksum (e.g. "SHA") + The setup file name(s) @@ -151293,7 +155611,7 @@
Parameters:
Source:
@@ -151322,7 +155640,7 @@
Returns:
- The Resource object + This
@@ -151333,7 +155651,7 @@
Returns:
-Resource +GogScript
@@ -151351,7 +155669,7 @@
Returns:
-

algorithm(algorithm) → {Downloader}

+

headers(headers) → {Downloader}

@@ -151359,7 +155677,7 @@

algorithm - Sets the algorithm which shall be used to verify the checksum + Sets the http headers @@ -151395,13 +155713,13 @@
Parameters:
- algorithm + headers -string +Object @@ -151411,7 +155729,7 @@
Parameters:
- The checksum algorithm (e.g. "SHA") + The http headers @@ -151452,7 +155770,7 @@
Parameters:
Source:
@@ -151510,7 +155828,7 @@
Returns:
-

application(application) → {AppResource}

+

isHdpi() → {boolean}

@@ -151518,7 +155836,7 @@

applicatio
- Sets the application containing the resources + Fetches whether hdpi is enabled or not
@@ -151529,55 +155847,6 @@

applicatio -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - @@ -151611,7 +155880,7 @@
Parameters:
Source:
@@ -151640,7 +155909,7 @@
Returns:
- The AppResource object + True if hdpi is enabled, false otherwise
@@ -151651,7 +155920,7 @@
Returns:
-AppResource +boolean
@@ -151669,13 +155938,17 @@
Returns:
-

architecture() → {string}

+

json() → {any}

+
+ Gets the content of the downloaded file and returns it as a JSON value +
+ @@ -151717,7 +155990,7 @@

architect
Source:
@@ -151746,7 +156019,7 @@

Returns:
- architecture ("x86" or "amd64") + The json value
@@ -151757,7 +156030,7 @@
Returns:
-string +any
@@ -151775,7 +156048,7 @@
Returns:
-

arguments(args) → {WineShortcut}

+

kill() → {Wine}

@@ -151783,7 +156056,114 @@

arguments - Sets the shortcut arguments + 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
@@ -151819,13 +156199,13 @@
Parameters:
- args + setupWizard -array +SetupWizard @@ -151835,7 +156215,7 @@
Parameters:
- The shortcut arguments + The setupWizard to use @@ -151876,7 +156256,7 @@
Parameters:
Source:
@@ -151905,7 +156285,7 @@
Returns:
- The WineShortcut object + This
@@ -151916,7 +156296,7 @@
Returns:
-WineShortcut +GogScript
@@ -151934,13 +156314,17 @@
Returns:
-

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

+

message(message) → {Downloader}

+
+ Sets the download message text +
+ @@ -151962,12 +156346,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -151978,7 +156358,7 @@
Parameters:
- architecture + message @@ -151991,26 +156371,10 @@
Parameters:
- - - <optional>
- - - - - - - - - current architecture - - - - - + The download message @@ -152051,7 +156415,7 @@
Parameters:
Source:
@@ -152079,6 +156443,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -152087,7 +156455,7 @@
Returns:
-Array.<string> +Downloader
@@ -152105,13 +156473,17 @@
Returns:
-

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

+

miniature(miniatureopt)

+
+ get/set miniature (for the installation and the shortcut) +
+ @@ -152137,8 +156509,6 @@
Parameters:
- Default - Description @@ -152149,13 +156519,13 @@
Parameters:
- distribution name + miniature -string +URI @@ -152174,14 +156544,8 @@
Parameters:
- - - current distribution - - - - + path to the miniature file @@ -152222,7 +156586,7 @@
Parameters:
Source:
@@ -152247,24 +156611,6 @@
Parameters:
-
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - @@ -152276,7 +156622,7 @@
Returns:
-

binPath(subCategoryopt, versionopt) → {string}

+

miniature(miniature) → {WineShortcut}

@@ -152284,8 +156630,7 @@

binPath - returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used + Sets the miniature for the shortcut @@ -152309,8 +156654,6 @@
Parameters:
Type - Attributes - @@ -152323,66 +156666,26 @@
Parameters:
- subCategory + miniature -string - - - - - - - - - <optional>
- - - - - - - - - - - Wine sub-category - - - - - - - version - +Array.<string> +| - - - -string +URI - - - <optional>
- - - - - - - - Wine version + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -152423,7 +156726,7 @@
Parameters:
Source:
@@ -152452,7 +156755,7 @@
Returns:
- path to "wine" binary + The WineShortcut object
@@ -152463,7 +156766,7 @@
Returns:
-string +WineShortcut
@@ -152481,7 +156784,7 @@
Returns:
-

category(category) → {WineShortcut}

+

name(name) → {Resource}

@@ -152489,7 +156792,7 @@

category - Sets the shortcut category + Sets the resource name @@ -152525,7 +156828,7 @@
Parameters:
- category + name @@ -152541,7 +156844,7 @@
Parameters:
- The shortcut category + The name of the resource @@ -152582,7 +156885,7 @@
Parameters:
Source:
@@ -152611,7 +156914,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -152622,7 +156925,7 @@
Returns:
-WineShortcut +Resource
@@ -152640,7 +156943,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

name(name) → {WineShortcut}

@@ -152648,7 +156951,7 @@

checksum - Sets the checksum + Sets the shortcut name @@ -152684,7 +156987,7 @@
Parameters:
- checksum + name @@ -152700,7 +157003,7 @@
Parameters:
- The checksum which shall be used to verify the download + The shortcut name @@ -152741,7 +157044,7 @@
Parameters:
Source:
@@ -152770,7 +157073,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -152781,7 +157084,7 @@
Returns:
-Downloader +WineShortcut
@@ -152799,7 +157102,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

of(shortcut) → {void}

@@ -152807,7 +157110,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets shortcut @@ -152843,7 +157146,7 @@
Parameters:
- checksum + shortcut @@ -152859,7 +157162,7 @@
Parameters:
- The checksum + shortcut @@ -152900,7 +157203,7 @@
Parameters:
Source:
@@ -152928,10 +157231,6 @@
Parameters:
Returns:
-
- The Resource object -
-
@@ -152940,7 +157239,7 @@
Returns:
-Resource +void
@@ -152958,7 +157257,7 @@
Returns:
-

create() → {Wine}

+

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

@@ -152966,7 +157265,7 @@

create - runs "wineboot" + Specifies if the download shall be executed only if a newer version is available @@ -152977,6 +157276,55 @@

createParameters:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
onlyIfUpdateAvailable + + +boolean + + + + true the download shall be executed only if a newer version is available
+ + @@ -153010,7 +157358,7 @@

createSource:
@@ -153039,7 +157387,7 @@
Returns:
- The Wine object + The Downloader object
@@ -153050,7 +157398,7 @@
Returns:
-Wine +Downloader
@@ -153068,16 +157416,13 @@
Returns:
-

create() → {void}

+

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

-
- Creates a new shortcut -
@@ -153086,12 +157431,171 @@

createParameters:

+ + + + + + + + + + + + -
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
prefix + + +string + + + + + + <optional>
+ + + + + +
distribution + + +string + + + + + + <optional>
+ + + + + +
architecture + + +string + + + + + + <optional>
+ + + + + +
version + + +string + + + + + + <optional>
+ + + + + +
+ + + + + + +
@@ -153120,7 +157624,7 @@

createSource:
@@ -153156,7 +157660,10 @@
Returns:
-void +string +| + +Wine
@@ -153174,7 +157681,7 @@
Returns:
-

description(description) → {WineShortcut}

+

prefix(prefix) → {WineShortcut}

@@ -153182,7 +157689,7 @@

descriptio
- Sets the shortcut description + Sets the shortcut prefix
@@ -153218,7 +157725,7 @@

Parameters:
- description + prefix @@ -153234,7 +157741,7 @@
Parameters:
- The shortcut description + The shortcut prefix @@ -153275,7 +157782,7 @@
Parameters:
Source:
@@ -153333,7 +157840,7 @@
Returns:
-

directory(directory) → {Resource}

+

prefixDirectory() → {string}

@@ -153341,7 +157848,7 @@

directory - Sets the directory inside the resources directory where the Resource is stored + returns prefix directory @@ -153352,55 +157859,6 @@

directoryParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - @@ -153434,7 +157892,7 @@
Parameters:
Source:
@@ -153462,10 +157920,6 @@
Parameters:
Returns:
-
- The Resource object -
-
@@ -153474,7 +157928,7 @@
Returns:
-Resource +string
@@ -153492,16 +157946,13 @@
Returns:
-

download(setupWizard) → {String}

+

programFiles() → {string}

-
- Download the setup resources in the same directory, and returns the path of the .exe -
@@ -153511,56 +157962,6 @@

downloadParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - @@ -153593,7 +157994,7 @@
Parameters:
Source:
@@ -153622,7 +158023,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + name of "Program Files"
@@ -153633,7 +158034,7 @@
Returns:
-String +string
@@ -153651,17 +158052,13 @@
Returns:
-

environment(environment) → {WineShortcut}

+

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

-
- Sets the shortcut environment variables -
- @@ -153683,8 +158080,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -153695,7 +158096,7 @@
Parameters:
- environment + executable @@ -153708,10 +158109,217 @@
Parameters:
+ + + + + + - The environment variables + + + + + + + + + + + + + + args + + + + + +array + + + + + + + + + <optional>
+ + + + + + + + + + + + [] + + + + + + + + + + + + workingDirectory + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + + working container + + + + + + + + + + + + captureOutput + + + + + +boolean + + + + + + + + + <optional>
+ + + + + + + + + + + + false + + + + + + + + + + + + wait + + + + + +boolean + + + + + + + + + <optional>
+ + + + + + + + + + + + false + + + + + + + + + + + + userData + + + + + +map + + + + + + + + + <optional>
+ + + + + + + + + + + + empty + + + + + @@ -153752,7 +158360,7 @@
Parameters:
Source:
@@ -153781,7 +158389,7 @@
Returns:
- The WineShortcut object + output
@@ -153792,7 +158400,7 @@
Returns:
-WineShortcut +String
@@ -153810,7 +158418,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

run(userArguments) → {void}

@@ -153818,7 +158426,7 @@

environmen
- set environment + Runs a shortcut with the given user arguments
@@ -153854,13 +158462,13 @@

Parameters:
- environment + userArguments -string +array @@ -153870,7 +158478,7 @@
Parameters:
- variables + The user arguments @@ -153911,7 +158519,7 @@
Parameters:
Source:
@@ -153939,10 +158547,6 @@
Parameters:
Returns:
-
- QuickScript object -
-
@@ -153951,7 +158555,7 @@
Returns:
-QuickScript +void
@@ -153969,17 +158573,13 @@
Returns:
-

executable(executable, args)

+

runInsidePrefix(executable, argsopt, waitopt)

-
- set executable -
- @@ -154001,8 +158601,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -154018,13 +158622,30 @@
Parameters:
+ +string + + + + + + + + + + + + + + + - executable without path (e.g. "Steam.exe") + @@ -154036,13 +158657,73 @@
Parameters:
+ +array + + + + + + <optional>
+ + + + + - use array (e.g. ["-applaunch", 409160]) + + + + [] + + + + + + + + + + + + wait + + + + + +boolean + + + + + + + + + <optional>
+ + + + + + + + + + + + false + + + + + @@ -154083,7 +158764,7 @@
Parameters:
Source:
@@ -154119,19 +158800,72 @@
Parameters:
-

fontDirectory() → {string}

+ +
+ Sets the executable which shall be used +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
search + + +string + + The executable name
@@ -154167,7 +158901,7 @@

fontDire
Source:
@@ -154196,7 +158930,7 @@

Returns:
- font directory + The WineShortcut object
@@ -154207,7 +158941,7 @@
Returns:
-string +WineShortcut
@@ -154225,7 +158959,7 @@
Returns:
-

get() → {string}

+

stop() → {void}

@@ -154233,7 +158967,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Stops the running shortcut @@ -154277,7 +159011,109 @@

getSource:
+ + + + + + + +

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

system32directory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -154306,7 +159142,7 @@
Returns:
- The path leading to the downloaded resource + system32 directory
@@ -154335,17 +159171,13 @@
Returns:
-

get() → {String}

+

system64directory() → {string}

-
- Gets the content of the downloaded file -
- @@ -154387,7 +159219,7 @@

getSource:
@@ -154416,7 +159248,7 @@
Returns:
- The content of downloaded file + system64 directory
@@ -154427,7 +159259,7 @@
Returns:
-String +string
@@ -154445,7 +159277,7 @@
Returns:
-

get(resourceName) → {Resource}

+

to(localDestination) → {Downloader}

@@ -154453,7 +159285,7 @@

get - Returns the searched resource + Sets the download destination @@ -154489,7 +159321,7 @@
Parameters:
- resourceName + localDestination @@ -154505,7 +159337,7 @@
Parameters:
- The name of the resource + The destination of the download. If it is a directory, the file will be placed inside @@ -154546,7 +159378,7 @@
Parameters:
Source:
@@ -154575,7 +159407,7 @@
Returns:
- The found resource + The Downloader object
@@ -154586,7 +159418,7 @@
Returns:
-Resource +Downloader
@@ -154604,7 +159436,7 @@
Returns:
-

getContainer() → {string}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -154612,7 +159444,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the trust level
@@ -154623,6 +159455,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
trustLevel + + +string + + + + The trust level
+ + @@ -154656,7 +159537,7 @@

getContai
Source:
@@ -154685,7 +159566,7 @@

Returns:
- The container name + The WineShortcut object
@@ -154696,7 +159577,7 @@
Returns:
-string +WineShortcut
@@ -154714,7 +159595,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

trustLevel(trustlevel) → {QuickScript}

@@ -154722,7 +159603,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + set trust level
@@ -154758,7 +159639,7 @@

Parameters:
- setupFileName + trustlevel @@ -154774,7 +159655,7 @@
Parameters:
- The setup file name + @@ -154815,7 +159696,7 @@
Parameters:
Source:
@@ -154844,7 +159725,7 @@
Returns:
- This + QuickScript object
@@ -154855,7 +159736,7 @@
Returns:
-GogScript +QuickScript
@@ -154873,7 +159754,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

type(type) → {WineShortcut}

@@ -154881,7 +159762,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Sets the shortcut type
@@ -154917,13 +159798,13 @@

Parameters:
- setupFileNames + type -Array.<string> +string @@ -154933,7 +159814,7 @@
Parameters:
- The setup file name(s) + The shortcut type @@ -154974,7 +159855,7 @@
Parameters:
Source:
@@ -155003,7 +159884,7 @@
Returns:
- This + The WineShortcut object
@@ -155014,7 +159895,7 @@
Returns:
-GogScript +WineShortcut
@@ -155032,7 +159913,7 @@
Returns:
-

headers(headers) → {Downloader}

+

uninstall(name) → {bool}

@@ -155040,7 +159921,7 @@

headers - Sets the http headers + uninstall application @@ -155076,13 +159957,13 @@
Parameters:
- headers + name -Object +string @@ -155092,7 +159973,7 @@
Parameters:
- The http headers + of the application which shall be uninstalled @@ -155133,7 +160014,7 @@
Parameters:
Source:
@@ -155162,7 +160043,7 @@
Returns:
- The Downloader object + true if an application has been uninstalled, false otherwise
@@ -155173,7 +160054,7 @@
Returns:
-Downloader +bool
@@ -155191,7 +160072,7 @@
Returns:
-

json() → {any}

+

uninstall() → {void}

@@ -155199,7 +160080,7 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Uninstalls the shortcut @@ -155243,7 +160124,7 @@

jsonSource:
@@ -155271,10 +160152,6 @@

json - The json value - -
@@ -155283,7 +160160,7 @@
Returns:
-any +void
@@ -155301,7 +160178,7 @@
Returns:
-

kill() → {Wine}

+

url(url) → {Downloader}

@@ -155309,7 +160186,7 @@

kill - kill wine server + Sets the URL which shall be used for the download @@ -155320,6 +160197,55 @@

kill + + + + Name + + + Type + + + + + + Description + + + + + + + + + url + + + + + +string + + + + + + + + + + The URL + + + + + + + @@ -155353,7 +160279,7 @@

killSource:
@@ -155381,6 +160307,10 @@

kill + The Downloader object + +
@@ -155389,7 +160319,7 @@
Returns:
-Wine +Downloader
@@ -155407,7 +160337,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

url(url) → {Resource}

@@ -155415,8 +160345,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 resource URL
@@ -155452,13 +160381,13 @@

Parameters:
- setupWizard + url -SetupWizard +string @@ -155468,7 +160397,7 @@
Parameters:
- The setupWizard to use + The URL @@ -155509,7 +160438,7 @@
Parameters:
Source:
@@ -155538,7 +160467,7 @@
Returns:
- This + The Resource object
@@ -155549,7 +160478,7 @@
Returns:
-GogScript +Resource
@@ -155567,7 +160496,7 @@
Returns:
-

message(message) → {Downloader}

+

wait() → {Wine}

@@ -155575,7 +160504,7 @@

message - Sets the download message text + wait until wineserver finishes @@ -155586,55 +160515,6 @@

messageParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - @@ -155668,7 +160548,7 @@
Parameters:
Source:
@@ -155696,10 +160576,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -155708,7 +160584,7 @@
Returns:
-Downloader +Wine
@@ -155726,17 +160602,13 @@
Returns:
-

miniature(miniature) → {WineShortcut}

+

winepath(pathopt) → {String}

-
- Sets the miniature for the shortcut -
- @@ -155758,6 +160630,8 @@
Parameters:
Type + Attributes + @@ -155770,26 +160644,33 @@
Parameters:
- miniature + path -Array.<string> -| - -URI +String + + + <optional>
+ + + + + + + - An array which specifies the application of which the miniature shall be used or URI of the miniature + @@ -155830,7 +160711,7 @@
Parameters:
Source:
@@ -155858,10 +160739,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -155870,7 +160747,7 @@
Returns:
-WineShortcut +String
@@ -155888,7 +160765,7 @@
Returns:
-

miniature(miniatureopt)

+

wineServer(wineserver)

@@ -155896,7 +160773,7 @@

miniature - get/set miniature (for the installation and the shortcut) + executes wineserver in current prefix @@ -155920,8 +160797,6 @@
Parameters:
Type - Attributes - @@ -155934,33 +160809,183 @@
Parameters:
- miniature + wineserver -URI +string - - - <optional>
- + + + parameter + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +string + + + - + + + @@ -156001,7 +161026,7 @@
Parameters:
Source:
@@ -156026,6 +161051,28 @@
Parameters:
+
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + @@ -156037,7 +161084,7 @@
Parameters:
-

name(name) → {Resource}

+

withCpuCycles(cpuCycles) → {Dosbox}

@@ -156045,7 +161092,8 @@

name - Sets the resource name + Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D @@ -156081,13 +161129,13 @@
Parameters:

- + + @@ -156138,7 +161186,7 @@
Parameters:
Source:
@@ -156167,7 +161215,7 @@
Returns:
- The Resource object + This
@@ -156178,7 +161226,7 @@
Returns:
-Resource +Dosbox
@@ -156196,7 +161244,7 @@
Returns:
-

name(name) → {WineShortcut}

+

withDimensions(width, height) → {VirtualDesktop}

@@ -156204,7 +161252,7 @@

name - Sets the shortcut name + Specifies the dimensions of the virtual desktop @@ -156240,13 +161288,13 @@
Parameters:

- + + + + + + + + + + + + + + + + + + @@ -156297,7 +161368,7 @@
Parameters:
Source:
@@ -156326,7 +161397,7 @@
Returns:
- The WineShortcut object + This
@@ -156337,7 +161408,7 @@
Returns:
-WineShortcut +VirtualDesktop
@@ -156355,7 +161426,7 @@
Returns:
-

of(shortcut) → {void}

+

withDriver(driver) → {SoundDriver}

@@ -156363,7 +161434,7 @@

of - Sets shortcut + Specifies the used sound driver @@ -156399,7 +161470,7 @@
Parameters:

- + + @@ -156456,7 +161527,7 @@
Parameters:
Source:
@@ -156484,6 +161555,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -156492,7 +161567,7 @@
Returns:
-void +SoundDriver
@@ -156510,7 +161585,7 @@
Returns:
-

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

+

withExtension(extension) → {NativeApplication}

@@ -156518,7 +161593,7 @@

- Specifies if the download shall be executed only if a newer version is available + Specifies the file extension
@@ -156554,13 +161629,13 @@

Parameters:
- + + @@ -156611,7 +161686,7 @@
Parameters:
Source:
@@ -156640,7 +161715,7 @@
Returns:
- The Downloader object + This
@@ -156651,7 +161726,7 @@
Returns:
-Downloader +NativeApplication
@@ -156669,7 +161744,7 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

withHdpi(hdpi) → {HDPI}

@@ -156677,7 +161752,7 @@

prefix - Sets the shortcut prefix + Specifies whether hdpi should be enabled or not @@ -156713,13 +161788,13 @@
Parameters:

- + + @@ -156770,7 +161845,7 @@
Parameters:
Source:
@@ -156799,7 +161874,7 @@
Returns:
- The WineShortcut object + This
@@ -156810,7 +161885,7 @@
Returns:
-WineShortcut +HDPI
@@ -156828,13 +161903,17 @@
Returns:
-

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

+

withManaged(managed) → {Managed}

+
+ Specifies the global managed state +
+ @@ -156856,8 +161935,6 @@
Parameters:
- - @@ -156870,132 +161947,23 @@
Parameters:
- + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -157036,7 +162004,7 @@
Parameters:
Source:
@@ -157064,6 +162032,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -157072,10 +162044,7 @@
Returns:
-string -| - -Wine +Managed
@@ -157093,7 +162062,7 @@
Returns:
-

prefixDirectory() → {string}

+

withManagedApplication(application, managed) → {Managed}

@@ -157101,7 +162070,7 @@

prefix
- returns prefix directory + Specifies the managed state for a given application
@@ -157112,106 +162081,76 @@

prefix - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-
- - - - - - - - - - - - - - - -

Returns:
+
NameTypeDescription
application + +string + + + The application executable
os + - path to the miniature fileThe windows version
namecpuCycles -string +int @@ -156097,7 +161145,7 @@
Parameters:
-
The name of the resource(example: max 95% limit 33000)
namewidth -string +number @@ -156256,7 +161304,30 @@
Parameters:
-
The shortcut namewidth of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
shortcutdriver @@ -156415,7 +161486,7 @@
Parameters:
-
shortcutalsa or pulse
onlyIfUpdateAvailableextension -boolean +string @@ -156570,7 +161645,7 @@
Parameters:
-
true the download shall be executed only if a newer version is availableThe file extension (pdf, txt, rtf)
prefixhdpi -string +boolean @@ -156729,7 +161804,7 @@
Parameters:
-
The shortcut prefixtrue if hdpi shall be enabled
TypeAttributes
prefixmanaged -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string +boolean - - <optional>
- - - - - -
True if it shall be managed
+ + + + + -
-
- Type -
-
-string + -
-
+ + + + + + + + + - - + - -

programFiles() → {string}

- + + + + + + + + + + + - + + +
NameTypeDescription
application + + +string + + The application
managed + + +boolean + + True if the application shall be managed
@@ -157247,7 +162186,7 @@

programFi
Source:
@@ -157276,7 +162215,7 @@

Returns:
- name of "Program Files" + This
@@ -157287,7 +162226,7 @@
Returns:
-string +Managed
@@ -157305,7 +162244,7 @@
Returns:
-

run(userArguments) → {void}

+

withMemSize(memSize) → {Dosbox}

@@ -157313,7 +162252,8 @@

run - Runs a shortcut with the given user arguments + Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D @@ -157349,13 +162289,13 @@
Parameters:
- userArguments + memSize -array +int @@ -157365,7 +162305,7 @@
Parameters:
- The user arguments + The memory size @@ -157406,7 +162346,7 @@
Parameters:
Source:
@@ -157434,6 +162374,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -157442,7 +162386,7 @@
Returns:
-void +Dosbox
@@ -157460,13 +162404,17 @@
Returns:
-

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

+

withMode(mode) → {FontSmoothing}

+
+ Specifies the used font smoothing mode +
+ @@ -157488,12 +162436,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -157504,7 +162448,7 @@
Parameters:
- executable + mode @@ -157517,217 +162461,169 @@
Parameters:
- - - - - - - - - - - - - + "RGB", "BGR" or "Gray Scale" + + - - - args - - - - -array - - - - - - <optional>
- - +
- - - + - - - - [] - - - + - - + - - - workingDirectory - + - - - -string + + - - + - - - - <optional>
- + - + - - - + - - - - working container - - - + - - + +
Source:
+
+ - - - captureOutput - + + + +
+ - - - -boolean - - - - - - <optional>
- - - - - - - - - false - - - - - + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
- - - wait - - - - -boolean - - + - - - <optional>
- - + - - - + +

withMode(mode) → {GLSL}

+ - - - - false - - - + - - + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + - + - - - - - - + @@ -157768,7 +162664,7 @@
Parameters:
Source:
@@ -157797,7 +162693,7 @@
Returns:
- output + This
@@ -157808,7 +162704,7 @@
Returns:
-String +GLSL
@@ -157826,13 +162722,17 @@
Returns:
-

runInsidePrefix(executable, argsopt, waitopt)

+

withMode(mode) → {TakeFocus}

+
+ Specifies the mode +
+ @@ -157854,12 +162754,8 @@
Parameters:
- - - - @@ -157870,7 +162766,7 @@
Parameters:
- + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -158017,7 +162823,7 @@
Parameters:
Source:
@@ -158042,6 +162848,28 @@
Parameters:
+
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + @@ -158053,7 +162881,7 @@
Parameters:
- +

withMode(mode) → {DirectDrawRenderer}

@@ -158061,7 +162889,7 @@ - + + @@ -158154,7 +162982,7 @@
Parameters:
Source:
@@ -158183,7 +163011,7 @@
Returns:
- The WineShortcut object + This
@@ -158194,7 +163022,7 @@
Returns:
-WineShortcut +DirectDrawRenderer
@@ -158212,7 +163040,7 @@
Returns:
-

stop() → {void}

+

withRenderAspect(renderAspect) → {Dosbox}

@@ -158220,7 +163048,8 @@

stop - Stops the running shortcut + Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D @@ -158231,6 +163060,55 @@

stop +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
userDatamode -map +string - - <optional>
- - - - -
- - empty - - enabled or disabled
TypeAttributesDefaultDescription
executablemode @@ -157883,100 +162779,10 @@
Parameters:
- - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - - "Y" or "N"
searchmode @@ -158113,7 +162941,7 @@
Parameters:
-
The executable namegdi or opengl
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + @@ -158264,7 +163142,7 @@

stopSource:
@@ -158292,6 +163170,10 @@

stop + This + +
@@ -158300,7 +163182,7 @@
Returns:
-void +Dosbox
@@ -158318,13 +163200,17 @@
Returns:
-

system32directory() → {string}

+

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
@@ -158334,6 +163220,56 @@

syst +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + @@ -158366,7 +163302,7 @@

syst
Source:
@@ -158395,7 +163331,7 @@

Returns:
- system32 directory + This
@@ -158406,7 +163342,7 @@
Returns:
-string +Dosbox
@@ -158424,13 +163360,17 @@
Returns:
-

system64directory() → {string}

+

withScript(command) → {PlainInstaller}

+
+ Sets the installation script consisting of a lambda function +
+ @@ -158439,6 +163379,55 @@

syst +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
command + + +function + + + + The installation command
+ + @@ -158472,7 +163461,7 @@

syst
Source:
@@ -158501,7 +163490,7 @@

Returns:
- system64 directory + The PlainInstaller object
@@ -158512,7 +163501,7 @@
Returns:
-string +PlainInstaller
@@ -158530,7 +163519,7 @@
Returns:
-

to(localDestination) → {Downloader}

+

withSetting(key, value) → {Dosbox}

@@ -158538,7 +163527,7 @@

to - Sets the download destination + Sets a dosbox setting @@ -158574,7 +163563,7 @@
Parameters:
- localDestination + key @@ -158590,7 +163579,30 @@
Parameters:
- The destination of the download. If it is a directory, the file will be placed inside + The key of the setting (example dosbox_memsize) + + + + + + + value + + + + + +any + + + + + + + + + + The value to be set @@ -158631,7 +163643,7 @@
Parameters:
Source:
@@ -158660,7 +163672,7 @@
Returns:
- The Downloader object + This
@@ -158671,7 +163683,7 @@
Returns:
-Downloader +Dosbox
@@ -158689,7 +163701,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

withVersion(major, minor) → {OpenGL}

@@ -158697,7 +163709,7 @@

trustLevel<
- Sets the trust level + Specifies the major and minor versions
@@ -158733,13 +163745,13 @@

Parameters:
- trustLevel + major -string +number @@ -158749,7 +163761,30 @@
Parameters:
- The trust level + The major version + + + + + + + minor + + + + + +number + + + + + + + + + + The minor version @@ -158790,7 +163825,7 @@
Parameters:
Source:
@@ -158819,7 +163854,7 @@
Returns:
- The WineShortcut object + This
@@ -158830,7 +163865,7 @@
Returns:
-WineShortcut +OpenGL
@@ -158848,7 +163883,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

withWindowsVersion(version, servicePack) → {WindowsVersion}

@@ -158856,7 +163891,7 @@

trustLevel<
- set trust level + Specifies the default windows version
@@ -158892,7 +163927,7 @@

Parameters:
- trustlevel + version @@ -158908,7 +163943,30 @@
Parameters:
- + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31 + + + + + + + servicePack + + + + + +string + + + + + + + + + + e.g. sp3 @@ -158949,7 +164007,7 @@
Parameters:
Source:
@@ -158978,7 +164036,7 @@
Returns:
- QuickScript object + This
@@ -158989,7 +164047,7 @@
Returns:
-QuickScript +WindowsVersion
@@ -159007,7 +164065,7 @@
Returns:
-

type(type) → {WineShortcut}

+

wizard(wizard) → {Resource}

@@ -159015,7 +164073,7 @@

type - Sets the shortcut type + Sets the setup wizard @@ -159051,13 +164109,13 @@
Parameters:
- type + wizard -string +SetupWizard @@ -159067,7 +164125,7 @@
Parameters:
- The shortcut type + The setup wizard @@ -159108,7 +164166,7 @@
Parameters:
Source:
@@ -159137,7 +164195,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -159148,7 +164206,7 @@
Returns:
-WineShortcut +Resource
@@ -159166,17 +164224,13 @@
Returns:
-

uninstall(name) → {bool}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- uninstall application -
- @@ -159198,6 +164252,8 @@
Parameters:
Type + Attributes + @@ -159210,23 +164266,33 @@
Parameters:
- name + wizard -string +SetupWizard + + + <optional>
+ + + + + + + - of the application which shall be uninstalled + @@ -159267,7 +164333,7 @@
Parameters:
Source:
@@ -159295,10 +164361,6 @@
Parameters:
Returns:
-
- true if an application has been uninstalled, false otherwise -
-
@@ -159307,7 +164369,10 @@
Returns:
-bool +SetupWizard +| + +Wine
@@ -159325,7 +164390,7 @@
Returns:
-

uninstall() → {void}

+

wizard(wizard) → {Downloader}

@@ -159333,7 +164398,7 @@

uninstall - Uninstalls the shortcut + Sets the setup wizard @@ -159344,6 +164409,55 @@

uninstallParameters:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wizard + + +SetupWizard + + + + The setup wizard
+ + @@ -159377,7 +164491,7 @@

uninstallSource:
@@ -159405,6 +164519,10 @@

uninstallReturns:

+
+ The Downloader object +
+
@@ -159413,7 +164531,7 @@
Returns:
-void +Downloader
@@ -159426,12 +164544,147 @@
Returns:
+ + + + + +

+ +
+ + + + + + + +
+ +
+ +

default()

+ +
Setting to enable/disable UseTakeFocus
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new default()

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

Methods

+ + -

url(url) → {Downloader}

+

_createShortcut(prefixopt)

@@ -159439,7 +164692,7 @@

url - Sets the URL which shall be used for the download + creates shortcut @@ -159463,6 +164716,8 @@
Parameters:
Type + Attributes + @@ -159475,7 +164730,7 @@
Parameters:
- url + prefix @@ -159488,10 +164743,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The URL + prefix name @@ -159532,7 +164797,7 @@
Parameters:
Source:
@@ -159557,28 +164822,6 @@
Parameters:
-
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - @@ -159590,7 +164833,7 @@
Returns:
-

url(url) → {Resource}

+

_fetchFileNameFromUrl(url) → {string}

@@ -159598,7 +164841,7 @@

url - Sets the resource URL + Fetches the file name from an URL @@ -159691,7 +164934,7 @@
Parameters:
Source:
@@ -159720,7 +164963,7 @@
Returns:
- The Resource object + The file name
@@ -159731,7 +164974,7 @@
Returns:
-Resource +string
@@ -159749,7 +164992,7 @@
Returns:
-

wait() → {Wine}

+

algorithm(algorithm) → {Downloader}

@@ -159757,7 +165000,7 @@

wait - wait until wineserver finishes + Sets the algorithm which shall be used to verify the checksum @@ -159768,6 +165011,55 @@

wait + + + + Name + + + Type + + + + + + Description + + + + + + + + + algorithm + + + + + +string + + + + + + + + + + The checksum algorithm (e.g. "SHA") + + + + + + + @@ -159801,7 +165093,7 @@

waitSource:
@@ -159829,6 +165121,10 @@

wait + The Downloader object + +
@@ -159837,7 +165133,7 @@
Returns:
-Wine +Downloader
@@ -159855,13 +165151,17 @@
Returns:
-

winepath(pathopt) → {String}

+

algorithm(algorithm) → {Resource}

+
+ Sets the checksum algorithm +
+ @@ -159883,8 +165183,6 @@
Parameters:
Type - Attributes - @@ -159897,33 +165195,23 @@
Parameters:
- path + algorithm -String +string - - - <optional>
- - - - - - - - + The algorithm to verify the checksum (e.g. "SHA") @@ -159964,7 +165252,7 @@
Parameters:
Source:
@@ -159992,6 +165280,10 @@
Parameters:
Returns:
+
+ The Resource object +
+
@@ -160000,7 +165292,7 @@
Returns:
-String +Resource
@@ -160018,7 +165310,7 @@
Returns:
-

wineServer(wineserver)

+

application(application) → {AppResource}

@@ -160026,7 +165318,7 @@

wineServer<
- executes wineserver in current prefix + Sets the application containing the resources
@@ -160062,7 +165354,7 @@

Parameters:
- wineserver + application @@ -160078,7 +165370,7 @@
Parameters:
- parameter + The application with the resource @@ -160119,7 +165411,7 @@
Parameters:
Source:
@@ -160144,83 +165436,52 @@
Parameters:
- - - - +
Returns:
- - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function +
+ The AppResource object
+
+
+ Type +
+
+ +AppResource +
+
+ -
Parameters:
- - - - - - - - - + - + - - - + +

architecture() → {string}

+ - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - The installation command
+ @@ -160256,7 +165517,7 @@
Parameters:
Source:
@@ -160285,7 +165546,7 @@
Returns:
- The PlainInstaller object + architecture ("x86" or "amd64")
@@ -160296,7 +165557,7 @@
Returns:
-PlainInstaller +string
@@ -160314,7 +165575,7 @@
Returns:
-

wizard(wizard) → {Resource}

+

arguments(args) → {WineShortcut}

@@ -160322,7 +165583,7 @@

wizard - Sets the setup wizard + Sets the shortcut arguments

@@ -160358,13 +165619,13 @@
Parameters:
- wizard + args -SetupWizard +array @@ -160374,7 +165635,7 @@
Parameters:
- The setup wizard + The shortcut arguments @@ -160415,7 +165676,7 @@
Parameters:
Source:
@@ -160444,7 +165705,7 @@
Returns:
- The Resource object + The WineShortcut object
@@ -160455,7 +165716,7 @@
Returns:
-Resource +WineShortcut
@@ -160473,17 +165734,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

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

-
- Sets the setup wizard -
- @@ -160505,8 +165762,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -160517,23 +165778,39 @@
Parameters:
- wizard + architecture -SetupWizard +string + + + <optional>
+ + + + + + + + + + current architecture + + + - The setup wizard + @@ -160574,7 +165851,7 @@
Parameters:
Source:
@@ -160602,10 +165879,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -160614,7 +165887,7 @@
Returns:
-Downloader +Array.<string>
@@ -160632,7 +165905,7 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

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

@@ -160664,6 +165937,8 @@
Parameters:
+ Default + Description @@ -160674,13 +165949,13 @@
Parameters:
- wizard + distribution name -SetupWizard +string @@ -160699,6 +165974,12 @@
Parameters:
+ + + current distribution + + + @@ -160741,7 +166022,7 @@
Parameters:
Source:
@@ -160777,10 +166058,7 @@
Returns:
-SetupWizard -| - -Wine +Array.<string>
@@ -160793,147 +166071,12 @@
Returns:
- - - - - -

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

default()

- -
WineShortcut prototype
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

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

Methods

- - -

_createShortcut(prefixopt)

+

binPath(subCategoryopt, versionopt) → {string}

@@ -160941,7 +166084,8 @@

_creat
- creates shortcut + returns the path to the engine binary directory +if no parameters are given, the Wine version of the current prefix is used
@@ -160979,7 +166123,7 @@

Parameters:
- prefix + subCategory @@ -161005,7 +166149,40 @@
Parameters:
- prefix name + Wine sub-category + + + + + + + version + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + Wine version @@ -161046,7 +166223,7 @@
Parameters:
Source:
@@ -161071,6 +166248,28 @@
Parameters:
+
Returns:
+ + +
+ path to "wine" binary +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -161082,7 +166281,7 @@
Parameters:
-

_fetchFileNameFromUrl(url) → {string}

+

category(category) → {WineShortcut}

@@ -161090,7 +166289,7 @@

- Fetches the file name from an URL + Sets the shortcut category
@@ -161126,7 +166325,7 @@

Parameters:
- url + category @@ -161142,7 +166341,7 @@
Parameters:
- The URL + The shortcut category @@ -161183,7 +166382,7 @@
Parameters:
Source:
@@ -161212,7 +166411,7 @@
Returns:
- The file name + The WineShortcut object
@@ -161223,7 +166422,7 @@
Returns:
-string +WineShortcut
@@ -161241,7 +166440,7 @@
Returns:
-

algorithm(algorithm) → {Resource}

+

checksum(checksum) → {Resource}

@@ -161249,7 +166448,7 @@

algorithm - Sets the checksum algorithm + Sets the checksum which shall be used to verify the resource @@ -161285,7 +166484,7 @@
Parameters:
- algorithm + checksum @@ -161301,7 +166500,7 @@
Parameters:
- The algorithm to verify the checksum (e.g. "SHA") + The checksum @@ -161342,7 +166541,7 @@
Parameters:
Source:
@@ -161400,7 +166599,7 @@
Returns:
-

algorithm(algorithm) → {Downloader}

+

checksum(checksum) → {Downloader}

@@ -161408,7 +166607,7 @@

algorithm - Sets the algorithm which shall be used to verify the checksum + Sets the checksum @@ -161444,7 +166643,7 @@
Parameters:
- algorithm + checksum @@ -161460,7 +166659,7 @@
Parameters:
- The checksum algorithm (e.g. "SHA") + The checksum which shall be used to verify the download @@ -161501,7 +166700,7 @@
Parameters:
Source:
@@ -161559,7 +166758,7 @@
Returns:
-

application(application) → {AppResource}

+

create() → {void}

@@ -161567,7 +166766,7 @@

applicatio
- Sets the application containing the resources + Creates a new shortcut
@@ -161578,55 +166777,6 @@

applicatio -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - @@ -161660,7 +166810,7 @@
Parameters:
Source:
@@ -161688,10 +166838,6 @@
Parameters:
Returns:
-
- The AppResource object -
-
@@ -161700,7 +166846,7 @@
Returns:
-AppResource +void
@@ -161718,13 +166864,17 @@
Returns:
-

architecture() → {string}

+

create() → {Wine}

+
+ runs "wineboot" +
+ @@ -161766,7 +166916,7 @@

architect
Source:
@@ -161795,7 +166945,7 @@

Returns:
- architecture ("x86" or "amd64") + The Wine object
@@ -161806,7 +166956,7 @@
Returns:
-string +Wine
@@ -161824,7 +166974,7 @@
Returns:
-

arguments(args) → {WineShortcut}

+

description(description) → {WineShortcut}

@@ -161832,7 +166982,7 @@

arguments - Sets the shortcut arguments + Sets the shortcut description @@ -161868,13 +167018,13 @@
Parameters:
- args + description -array +string @@ -161884,7 +167034,7 @@
Parameters:
- The shortcut arguments + The shortcut description @@ -161925,7 +167075,7 @@
Parameters:
Source:
@@ -161983,13 +167133,17 @@
Returns:
-

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

+

directory(directory) → {Resource}

+
+ Sets the directory inside the resources directory where the Resource is stored +
+ @@ -162011,12 +167165,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -162027,7 +167177,7 @@
Parameters:
- architecture + directory @@ -162040,26 +167190,10 @@
Parameters:
- - - <optional>
- - - - - - - - - - current architecture - - - - + The directory path @@ -162100,7 +167234,7 @@
Parameters:
Source:
@@ -162128,6 +167262,10 @@
Parameters:
Returns:
+
+ The Resource object +
+
@@ -162136,7 +167274,7 @@
Returns:
-Array.<string> +Resource
@@ -162154,88 +167292,23 @@
Returns:
-

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

- - - - - - - - - - - - - - -
Parameters:
+

dosConfigFile() → {string}

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string +
+ Fetch the prefix dosbox configuration file +
- -
- - <optional>
- - - -
- - current distribution - -
@@ -162271,7 +167344,7 @@
Parameters:
Source:
@@ -162299,6 +167372,10 @@
Parameters:
Returns:
+
+ The dosbox configuration file path +
+
@@ -162307,7 +167384,7 @@
Returns:
-Array.<string> +string
@@ -162325,7 +167402,7 @@
Returns:
-

binPath(subCategoryopt, versionopt) → {string}

+

download(setupWizard) → {String}

@@ -162333,8 +167410,7 @@

binPath - returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used + Download the setup resources in the same directory, and returns the path of the .exe @@ -162358,8 +167434,6 @@
Parameters:
Type - Attributes - @@ -162372,66 +167446,23 @@
Parameters:
- subCategory - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - Wine sub-category - - - - - - - version + setupWizard -string +SetupWizard - - - <optional>
- - - - - - - - Wine version + The setup wizard @@ -162472,7 +167503,7 @@
Parameters:
Source:
@@ -162501,7 +167532,7 @@
Returns:
- path to "wine" binary + The .exe file entry that can be used to continue the installation
@@ -162512,7 +167543,7 @@
Returns:
-string +String
@@ -162530,7 +167561,7 @@
Returns:
-

category(category) → {WineShortcut}

+

downloadFinished(wine) → {boolean}

@@ -162538,7 +167569,8 @@

category - Sets the shortcut category + Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first @@ -162574,13 +167606,13 @@
Parameters:
- category + wine -string +Wine @@ -162590,7 +167622,7 @@
Parameters:
- The shortcut category + The wine engine object @@ -162631,7 +167663,7 @@
Parameters:
Source:
@@ -162660,7 +167692,7 @@
Returns:
- The WineShortcut object + True if the download has finished, false otherwise
@@ -162671,7 +167703,7 @@
Returns:
-WineShortcut +boolean
@@ -162689,7 +167721,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

downloadStarted(wine) → {boolean}

@@ -162697,7 +167729,7 @@

checksum - Sets the checksum + Checks whether the software download has started @@ -162733,13 +167765,13 @@
Parameters:
- checksum + wine -string +Wine @@ -162749,7 +167781,7 @@
Parameters:
- The checksum which shall be used to verify the download + The wine engine object @@ -162790,7 +167822,7 @@
Parameters:
Source:
@@ -162819,7 +167851,7 @@
Returns:
- The Downloader object + True if the download has started, false otherwise
@@ -162830,7 +167862,7 @@
Returns:
-Downloader +boolean
@@ -162848,7 +167880,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

environment(environment) → {WineShortcut}

@@ -162856,7 +167888,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the shortcut environment variables @@ -162892,7 +167924,7 @@
Parameters:
- checksum + environment @@ -162908,7 +167940,7 @@
Parameters:
- The checksum + The environment variables @@ -162949,117 +167981,7 @@
Parameters:
Source:
- - - - - - - -

- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
@@ -163088,7 +168010,7 @@
Returns:
- The Wine object + The WineShortcut object
@@ -163099,113 +168021,7 @@
Returns:
-Wine - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void +WineShortcut
@@ -163223,7 +168039,7 @@
Returns:
-

description(description) → {WineShortcut}

+

environment(environment) → {QuickScript}

@@ -163231,7 +168047,7 @@

descriptio
- Sets the shortcut description + set environment
@@ -163267,7 +168083,7 @@

Parameters:
- description + environment @@ -163283,7 +168099,7 @@
Parameters:
- The shortcut description + variables @@ -163324,7 +168140,7 @@
Parameters:
Source:
@@ -163353,7 +168169,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -163364,7 +168180,7 @@
Returns:
-WineShortcut +QuickScript
@@ -163382,7 +168198,7 @@
Returns:
-

directory(directory) → {Resource}

+

executable(executable, args)

@@ -163390,7 +168206,7 @@

directory - Sets the directory inside the resources directory where the Resource is stored + set executable @@ -163426,23 +168242,36 @@
Parameters:
- directory + executable - -string + + + + executable without path (e.g. "Steam.exe") + + + + + + + args + + + + - The directory path + use array (e.g. ["-applaunch", 409160]) @@ -163483,7 +168312,7 @@
Parameters:
Source:
@@ -163508,28 +168337,6 @@
Parameters:
-
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - @@ -163541,16 +168348,13 @@
Returns:
-

download(setupWizard) → {String}

+

fontDirectory() → {string}

-
- Download the setup resources in the same directory, and returns the path of the .exe -
@@ -163560,56 +168364,6 @@

downloadParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - @@ -163642,7 +168396,7 @@
Parameters:
Source:
@@ -163671,7 +168425,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + font directory
@@ -163682,7 +168436,7 @@
Returns:
-String +string
@@ -163700,7 +168454,7 @@
Returns:
-

environment(environment) → {WineShortcut}

+

get(resourceName) → {Resource}

@@ -163708,7 +168462,7 @@

environmen
- Sets the shortcut environment variables + Returns the searched resource
@@ -163744,7 +168498,7 @@

Parameters:
- environment + resourceName @@ -163760,7 +168514,7 @@
Parameters:
- The environment variables + The name of the resource @@ -163801,7 +168555,7 @@
Parameters:
Source:
@@ -163830,7 +168584,7 @@
Returns:
- The WineShortcut object + The found resource
@@ -163841,7 +168595,7 @@
Returns:
-WineShortcut +Resource
@@ -163859,7 +168613,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

get() → {String}

@@ -163867,7 +168621,7 @@

environmen
- set environment + Gets the content of the downloaded file
@@ -163878,55 +168632,6 @@

environmen -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - @@ -163960,7 +168665,7 @@
Parameters:
Source:
@@ -163989,7 +168694,7 @@
Returns:
- QuickScript object + The content of downloaded file
@@ -164000,7 +168705,7 @@
Returns:
-QuickScript +String
@@ -164018,7 +168723,7 @@
Returns:
-

executable(executable, args)

+

get() → {string}

@@ -164026,7 +168731,7 @@

executable<
- set executable + Fetches the Resource and returns the path leading to the downloaded resource
@@ -164037,68 +168742,6 @@

executable< -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - @@ -164132,7 +168775,7 @@
Parameters:
Source:
@@ -164157,6 +168800,28 @@
Parameters:
+
Returns:
+ + +
+ The path leading to the downloaded resource +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -164168,13 +168833,17 @@
Parameters:
-

fontDirectory() → {string}

+

getContainer() → {string}

+
+ Returns the name of the container belonging to a shortcut +
+ @@ -164216,7 +168885,7 @@

fontDire
Source:
@@ -164245,7 +168914,7 @@

Returns:
- font directory + The container name
@@ -164274,7 +168943,7 @@
Returns:
-

get() → {string}

+

getSettings() → {object}

@@ -164282,7 +168951,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Fetch all prefix dosbox sttings @@ -164326,7 +168995,7 @@

getSource:
@@ -164355,7 +169024,7 @@
Returns:
- The path leading to the downloaded resource + All the settings
@@ -164366,9 +169035,168 @@
Returns:
+object + + +
+

+ + + + + + + + + + + + + +

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 + +
@@ -164384,7 +169212,7 @@
Returns:
-

get() → {String}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -164392,7 +169220,7 @@

get - Gets the content of the downloaded file + Sets the setup file(s) name so that the script can fetch it from gog.com @@ -164403,6 +169231,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileNames + + + + + +Array.<string> + + + + + + + + + + The setup file name(s) + + + + + + + @@ -164436,7 +169313,7 @@

getSource:
@@ -164465,7 +169342,7 @@
Returns:
- The content of downloaded file + This
@@ -164476,7 +169353,7 @@
Returns:
-String +GogScript
@@ -164494,7 +169371,7 @@
Returns:
-

get(resourceName) → {Resource}

+

headers(headers) → {Downloader}

@@ -164502,7 +169379,7 @@

get - Returns the searched resource + Sets the http headers @@ -164538,13 +169415,13 @@
Parameters:
- resourceName + headers -string +Object @@ -164554,7 +169431,7 @@
Parameters:
- The name of the resource + The http headers @@ -164595,7 +169472,7 @@
Parameters:
Source:
@@ -164624,7 +169501,7 @@
Returns:
- The found resource + The Downloader object
@@ -164635,7 +169512,7 @@
Returns:
-Resource +Downloader
@@ -164653,7 +169530,7 @@
Returns:
-

getContainer() → {string}

+

isHdpi() → {boolean}

@@ -164661,7 +169538,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Fetches whether hdpi is enabled or not
@@ -164705,7 +169582,7 @@

getContai
Source:
@@ -164734,7 +169611,7 @@

Returns:
- The container name + True if hdpi is enabled, false otherwise
@@ -164745,7 +169622,7 @@
Returns:
-string +boolean
@@ -164763,7 +169640,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

json() → {any}

@@ -164771,7 +169648,7 @@

gogSe
- Sets one setup file 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
@@ -164782,55 +169659,6 @@

gogSe -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - @@ -164864,7 +169692,7 @@
Parameters:
Source:
@@ -164893,7 +169721,7 @@
Returns:
- This + The json value
@@ -164904,7 +169732,7 @@
Returns:
-GogScript +any
@@ -164922,7 +169750,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

kill() → {Wine}

@@ -164930,7 +169758,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + kill wine server
@@ -164941,55 +169769,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -165023,7 +169802,7 @@
Parameters:
Source:
@@ -165051,10 +169830,6 @@
Parameters:
Returns:
-
- This -
-
@@ -165063,7 +169838,7 @@
Returns:
-GogScript +Wine
@@ -165081,7 +169856,7 @@
Returns:
-

headers(headers) → {Downloader}

+

loginToGog(setupWizard) → {GogScript}

@@ -165089,7 +169864,8 @@

headers - Sets the http headers + 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 @@ -165125,13 +169901,13 @@
Parameters:
- headers + setupWizard -Object +SetupWizard @@ -165141,7 +169917,7 @@
Parameters:
- The http headers + The setupWizard to use @@ -165182,7 +169958,7 @@
Parameters:
Source:
@@ -165211,7 +169987,7 @@
Returns:
- The Downloader object + This
@@ -165222,7 +169998,7 @@
Returns:
-Downloader +GogScript
@@ -165240,7 +170016,7 @@
Returns:
-

json() → {any}

+

message(message) → {Downloader}

@@ -165248,7 +170024,7 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Sets the download message text @@ -165259,114 +170035,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
message + + +string + + The download message
@@ -165402,7 +170117,7 @@

killSource:
@@ -165430,6 +170145,10 @@

kill + The Downloader object + +
@@ -165438,7 +170157,7 @@
Returns:
-Wine +Downloader
@@ -165456,7 +170175,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

miniature(miniatureopt)

@@ -165464,8 +170183,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 + get/set miniature (for the installation and the shortcut)
@@ -165489,6 +170207,8 @@

Parameters:
Type + Attributes + @@ -165501,23 +170221,33 @@
Parameters:
- setupWizard + miniature -SetupWizard +URI + + + <optional>
+ + + + + + + - The setupWizard to use + path to the miniature file @@ -165558,7 +170288,147 @@
Parameters:
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:
+
@@ -165587,7 +170457,7 @@
Returns:
- This + The WineShortcut object
@@ -165598,7 +170468,7 @@
Returns:
-GogScript +WineShortcut
@@ -165616,7 +170486,7 @@
Returns:
-

message(message) → {Downloader}

+

name(name) → {Resource}

@@ -165624,7 +170494,7 @@

message - Sets the download message text + Sets the resource name @@ -165660,7 +170530,7 @@
Parameters:
- message + name @@ -165676,7 +170546,7 @@
Parameters:
- The download message + The name of the resource @@ -165717,7 +170587,7 @@
Parameters:
Source:
@@ -165746,7 +170616,7 @@
Returns:
- The Downloader object + The Resource object
@@ -165757,7 +170627,7 @@
Returns:
-Downloader +Resource
@@ -165775,7 +170645,7 @@
Returns:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {WineShortcut}

@@ -165783,7 +170653,7 @@

miniature - Sets the miniature for the shortcut + Sets the shortcut name @@ -165819,16 +170689,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -165838,7 +170705,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The shortcut name @@ -165879,7 +170746,7 @@
Parameters:
Source:
@@ -165937,7 +170804,7 @@
Returns:
-

miniature(miniatureopt)

+

of(shortcut) → {void}

@@ -165945,7 +170812,7 @@

miniature - get/set miniature (for the installation and the shortcut) + Sets shortcut @@ -165969,8 +170836,6 @@
Parameters:
Type - Attributes - @@ -165983,33 +170848,23 @@
Parameters:
- miniature + shortcut -URI +string - - - <optional>
- - - - - - - - path to the miniature file + shortcut @@ -166050,7 +170905,7 @@
Parameters:
Source:
@@ -166075,6 +170930,24 @@
Parameters:
+
Returns:
+ + + + +
+
+ Type +
+
+ +void + + +
+
+ + @@ -166086,7 +170959,7 @@
Parameters:
-

name(name) → {Resource}

+

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

@@ -166094,7 +170967,7 @@

name - Sets the resource name + Specifies if the download shall be executed only if a newer version is available @@ -166130,13 +171003,13 @@
Parameters:
- name + onlyIfUpdateAvailable -string +boolean @@ -166146,7 +171019,7 @@
Parameters:
- The name of the resource + true the download shall be executed only if a newer version is available @@ -166187,7 +171060,7 @@
Parameters:
Source:
@@ -166216,7 +171089,7 @@
Returns:
- The Resource object + The Downloader object
@@ -166227,7 +171100,7 @@
Returns:
-Resource +Downloader
@@ -166245,17 +171118,13 @@
Returns:
-

name(name) → {WineShortcut}

+

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

-
- Sets the shortcut name -
- @@ -166277,6 +171146,8 @@
Parameters:
Type + Attributes + @@ -166289,7 +171160,7 @@
Parameters:
- name + prefix @@ -166302,10 +171173,119 @@
Parameters:
+ + + <optional>
+ + + + + + + - The shortcut name + + + + + + + + distribution + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + + + + + + + + architecture + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + + + + + + + + version + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + @@ -166346,7 +171326,7 @@
Parameters:
Source:
@@ -166374,10 +171354,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -166386,7 +171362,10 @@
Returns:
-WineShortcut +string +| + +Wine
@@ -166404,7 +171383,7 @@
Returns:
-

of(shortcut) → {void}

+

prefix(prefix) → {WineShortcut}

@@ -166412,7 +171391,7 @@

of - Sets shortcut + Sets the shortcut prefix @@ -166448,7 +171427,7 @@
Parameters:
- shortcut + prefix @@ -166464,7 +171443,7 @@
Parameters:
- shortcut + The shortcut prefix @@ -166505,7 +171484,7 @@
Parameters:
Source:
@@ -166533,6 +171512,10 @@
Parameters:
Returns:
+
+ The WineShortcut object +
+
@@ -166541,7 +171524,7 @@
Returns:
-void +WineShortcut
@@ -166559,7 +171542,7 @@
Returns:
-

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

+

prefixDirectory() → {string}

@@ -166567,7 +171550,7 @@

- Specifies if the download shall be executed only if a newer version is available + returns prefix directory
@@ -166578,55 +171561,6 @@

-

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - @@ -166660,7 +171594,7 @@
Parameters:
Source:
@@ -166688,10 +171622,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -166700,7 +171630,7 @@
Returns:
-Downloader +string
@@ -166718,17 +171648,13 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

programFiles() → {string}

-
- Sets the shortcut prefix -
- @@ -166737,60 +171663,11 @@

prefixParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
+
@@ -166819,7 +171696,7 @@
Parameters:
Source:
@@ -166848,7 +171725,7 @@
Returns:
- The WineShortcut object + name of "Program Files"
@@ -166859,7 +171736,7 @@
Returns:
-WineShortcut +string
@@ -166877,7 +171754,7 @@
Returns:
-

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

+

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

@@ -166909,6 +171786,8 @@
Parameters:
+ Default + Description @@ -166919,7 +171798,7 @@
Parameters:
- prefix + executable @@ -166934,8 +171813,6 @@
Parameters:
- <optional>
- @@ -166944,6 +171821,10 @@
Parameters:
+ + + + @@ -166952,13 +171833,13 @@
Parameters:
- distribution + args -string +array @@ -166977,6 +171858,12 @@
Parameters:
+ + + [] + + + @@ -166985,7 +171872,7 @@
Parameters:
- architecture + workingDirectory @@ -167010,6 +171897,12 @@
Parameters:
+ + + working container + + + @@ -167018,13 +171911,13 @@
Parameters:
- version + captureOutput -string +boolean @@ -167043,224 +171936,97 @@
Parameters:
+ + + false + + + - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - + + + wait - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - + + + +boolean - - + + - + + + + <optional>
+ - + - -
Source:
-
- + + + - + + + + false + + + - + + -
- - - - - - - + + + userData + + + + +map + + + + + + <optional>
+ + - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - + + - + + + + empty + + + - -

programFiles() → {string}

- + + - - - - - - - - - + + @@ -167296,7 +172062,7 @@

programFi
Source:
@@ -167325,7 +172091,7 @@

Returns:
- name of "Program Files" + output
@@ -167336,7 +172102,7 @@
Returns:
-string +String
@@ -167509,373 +172275,7 @@
Returns:
-

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 - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

+

runInsidePrefix(executable, argsopt, waitopt)

@@ -169798,7 +174198,7 @@
Returns:
-

wait() → {Wine}

+

wait() → {Wine}

@@ -169886,7 +174286,7 @@
Returns:
-Wine +Wine
@@ -170204,7 +174604,7 @@
Parameters:
-

withScript(command) → {PlainInstaller}

+

withApplicationWindowsVersion(application, os) → {WindowsVersion}

@@ -170212,7 +174612,7 @@

withScript<
- Sets the installation script consisting of a lambda function + Specifies the windows version for a given application
@@ -170248,13 +174648,13 @@

Parameters:
- command + application -function +string @@ -170264,7 +174664,30 @@
Parameters:
- The installation command + The application executable + + + + + + + os + + + + + +string + + + + + + + + + + The windows version @@ -170305,7 +174728,7 @@
Parameters:
Source:
@@ -170334,7 +174757,7 @@
Returns:
- The PlainInstaller object + This
@@ -170345,7 +174768,7 @@
Returns:
-PlainInstaller +WindowsVersion
@@ -170363,7 +174786,7 @@
Returns:
-

wizard(wizard) → {Resource}

+

withCpuCycles(cpuCycles) → {Dosbox}

@@ -170371,7 +174794,8 @@

wizard - Sets the setup wizard + Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D @@ -170407,13 +174831,13 @@
Parameters:
- wizard + cpuCycles -SetupWizard +int @@ -170423,7 +174847,7 @@
Parameters:
- The setup wizard + (example: max 95% limit 33000) @@ -170464,7 +174888,7 @@
Parameters:
Source:
@@ -170493,7 +174917,7 @@
Returns:
- The Resource object + This
@@ -170504,7 +174928,7 @@
Returns:
-Resource +Dosbox
@@ -170522,7 +174946,7 @@
Returns:
-

wizard(wizard) → {Downloader}

+

withDimensions(width, height) → {VirtualDesktop}

@@ -170530,7 +174954,7 @@

wizard - Sets the setup wizard + Specifies the dimensions of the virtual desktop @@ -170566,13 +174990,13 @@
Parameters:
- wizard + width -SetupWizard +number @@ -170582,7 +175006,30 @@
Parameters:
- The setup wizard + width of virtual desktop (in px) + + + + + + + height + + + + + +number + + + + + + + + + + height of virtual desktop (in px) @@ -170623,7 +175070,7 @@
Parameters:
Source:
@@ -170652,7 +175099,7 @@
Returns:
- The Downloader object + This
@@ -170663,7 +175110,7 @@
Returns:
-Downloader +VirtualDesktop
@@ -170681,13 +175128,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

withDriver(driver) → {SoundDriver}

+
+ Specifies the used sound driver +
+ @@ -170709,8 +175160,6 @@
Parameters:
Type - Attributes - @@ -170723,33 +175172,23 @@
Parameters:
- wizard + driver -SetupWizard +string - - - <optional>
- - - - - - - - + alsa or pulse @@ -170790,7 +175229,7 @@
Parameters:
Source:
@@ -170818,6 +175257,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -170826,10 +175269,7 @@
Returns:
-SetupWizard -| - -Wine +SoundDriver
@@ -170842,55 +175282,77 @@
Returns:
+ + +

withExtension(extension) → {NativeApplication}

+ -

-
+
+ Specifies the file extension +
-
-
+ + + +
Parameters:
-

default()

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

Constructor

- + - -

new default()

- + + + + + + + + + + + + + - + + +
NameTypeDescription
extension + + +string + + The file extension (pdf, txt, rtf)
@@ -170926,7 +175388,7 @@

new defaultSource:
@@ -170951,30 +175413,32 @@

new defaultReturns:

+ +
+ This +
+
+
+ Type +
+
+ +NativeApplication - - - - - - - +
+
- - - - -

Methods

@@ -170982,7 +175446,7 @@

Methods

-

_createShortcut(prefixopt)

+

withHdpi(hdpi) → {HDPI}

@@ -170990,7 +175454,7 @@

_creat
- creates shortcut + Specifies whether hdpi should be enabled or not
@@ -171014,8 +175478,6 @@

Parameters:
Type - Attributes - @@ -171028,33 +175490,23 @@
Parameters:
- prefix + hdpi -string +boolean - - - <optional>
- - - - - - - - prefix name + true if hdpi shall be enabled @@ -171095,7 +175547,7 @@
Parameters:
Source:
@@ -171120,6 +175572,28 @@
Parameters:
+
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + @@ -171131,7 +175605,7 @@
Parameters:
-

_fetchFileNameFromUrl(url) → {string}

+

withManaged(managed) → {Managed}

@@ -171139,7 +175613,7 @@

- Fetches the file name from an URL + Specifies the global managed state
@@ -171175,13 +175649,13 @@

Parameters:
- url + managed -string +boolean @@ -171191,7 +175665,7 @@
Parameters:
- The URL + True if it shall be managed @@ -171232,7 +175706,7 @@
Parameters:
Source:
@@ -171261,7 +175735,7 @@
Returns:
- The file name + This
@@ -171272,7 +175746,7 @@
Returns:
-string +Managed
@@ -171290,7 +175764,7 @@
Returns:
-

algorithm(algorithm) → {Resource}

+

withManagedApplication(application, managed) → {Managed}

@@ -171298,7 +175772,7 @@

algorithm - Sets the checksum algorithm + Specifies the managed state for a given application @@ -171334,7 +175808,7 @@
Parameters:
- algorithm + application @@ -171350,7 +175824,30 @@
Parameters:
- The algorithm to verify the checksum (e.g. "SHA") + The application + + + + + + + managed + + + + + +boolean + + + + + + + + + + True if the application shall be managed @@ -171391,7 +175888,7 @@
Parameters:
Source:
@@ -171420,7 +175917,7 @@
Returns:
- The Resource object + This
@@ -171431,7 +175928,7 @@
Returns:
-Resource +Managed
@@ -171449,7 +175946,7 @@
Returns:
-

algorithm(algorithm) → {Downloader}

+

withMemSize(memSize) → {Dosbox}

@@ -171457,7 +175954,8 @@

algorithm - Sets the algorithm which shall be used to verify the checksum + Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D @@ -171493,13 +175991,13 @@
Parameters:
- algorithm + memSize -string +int @@ -171509,7 +176007,7 @@
Parameters:
- The checksum algorithm (e.g. "SHA") + The memory size @@ -171550,7 +176048,7 @@
Parameters:
Source:
@@ -171579,7 +176077,7 @@
Returns:
- The Downloader object + This
@@ -171590,7 +176088,7 @@
Returns:
-Downloader +Dosbox
@@ -171608,7 +176106,7 @@
Returns:
-

application(application) → {AppResource}

+

withMode(mode) → {FontSmoothing}

@@ -171616,7 +176114,7 @@

applicatio
- Sets the application containing the resources + Specifies the used font smoothing mode
@@ -171652,7 +176150,7 @@

Parameters:
- application + mode @@ -171668,7 +176166,7 @@
Parameters:
- The application with the resource + "RGB", "BGR" or "Gray Scale" @@ -171709,7 +176207,7 @@
Parameters:
Source:
@@ -171738,113 +176236,7 @@
Returns:
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") + This
@@ -171855,7 +176247,7 @@
Returns:
-string +FontSmoothing
@@ -171873,7 +176265,7 @@
Returns:
-

arguments(args) → {WineShortcut}

+

withMode(mode) → {GLSL}

@@ -171881,7 +176273,7 @@

arguments - Sets the shortcut arguments + Specifies the mode @@ -171917,13 +176309,13 @@
Parameters:
- args + mode -array +string @@ -171933,7 +176325,7 @@
Parameters:
- The shortcut arguments + enabled or disabled @@ -171974,7 +176366,7 @@
Parameters:
Source:
@@ -172003,7 +176395,7 @@
Returns:
- The WineShortcut object + This
@@ -172014,7 +176406,7 @@
Returns:
-WineShortcut +GLSL
@@ -172032,13 +176424,17 @@
Returns:
-

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

+

withMode(mode) → {TakeFocus}

+
+ Specifies the mode +
+ @@ -172060,12 +176456,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -172076,7 +176468,7 @@
Parameters:
- architecture + mode @@ -172089,26 +176481,10 @@
Parameters:
- - - <optional>
- - - - - - - - - - current architecture - - - - + "Y" or "N" @@ -172149,7 +176525,7 @@
Parameters:
Source:
@@ -172177,6 +176553,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -172185,7 +176565,7 @@
Returns:
-Array.<string> +TakeFocus
@@ -172203,13 +176583,17 @@
Returns:
-

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

+

withMode(mode) → {DirectDrawRenderer}

+
+ Selects the used direct draw mode (either gdi or opengl) +
+ @@ -172231,12 +176615,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -172247,7 +176627,7 @@
Parameters:
- distribution name + mode @@ -172260,26 +176640,10 @@
Parameters:
- - - <optional>
- - - - - - - - - - current distribution - - - - + gdi or opengl @@ -172320,7 +176684,7 @@
Parameters:
Source:
@@ -172348,6 +176712,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -172356,7 +176724,7 @@
Returns:
-Array.<string> +DirectDrawRenderer
@@ -172374,7 +176742,7 @@
Returns:
-

binPath(subCategoryopt, versionopt) → {string}

+

withRenderAspect(renderAspect) → {Dosbox}

@@ -172382,8 +176750,8 @@

binPath - returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used + Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D @@ -172407,8 +176775,6 @@
Parameters:
Type - Attributes - @@ -172421,66 +176787,23 @@
Parameters:
- subCategory - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - Wine sub-category - - - - - - - version + renderAspect -string +boolean - - - <optional>
- - - - - - - - Wine version + The render aspect @@ -172521,7 +176844,7 @@
Parameters:
Source:
@@ -172550,7 +176873,7 @@
Returns:
- path to "wine" binary + This
@@ -172561,7 +176884,7 @@
Returns:
-string +Dosbox
@@ -172579,7 +176902,7 @@
Returns:
-

category(category) → {WineShortcut}

+

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

@@ -172587,7 +176910,8 @@

category - Sets the shortcut category + Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D @@ -172623,13 +176947,13 @@
Parameters:
- category + renderFrameSkip -string +int @@ -172639,7 +176963,7 @@
Parameters:
- The shortcut category + The render frameskip @@ -172680,7 +177004,7 @@
Parameters:
Source:
@@ -172709,7 +177033,7 @@
Returns:
- The WineShortcut object + This
@@ -172720,7 +177044,7 @@
Returns:
-WineShortcut +Dosbox
@@ -172738,7 +177062,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

withScript(command) → {PlainInstaller}

@@ -172746,7 +177070,7 @@

checksum - Sets the checksum + Sets the installation script consisting of a lambda function @@ -172782,13 +177106,13 @@
Parameters:
- checksum + command -string +function @@ -172798,7 +177122,7 @@
Parameters:
- The checksum which shall be used to verify the download + The installation command @@ -172839,7 +177163,7 @@
Parameters:
Source:
@@ -172868,7 +177192,7 @@
Returns:
- The Downloader object + The PlainInstaller object
@@ -172879,7 +177203,7 @@
Returns:
-Downloader +PlainInstaller
@@ -172897,7 +177221,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

withSetting(key, value) → {Dosbox}

@@ -172905,7 +177229,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets a dosbox setting @@ -172941,7 +177265,7 @@
Parameters:
- checksum + key @@ -172957,122 +177281,35 @@
Parameters:
- The checksum + The key of the setting (example dosbox_memsize) - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - + + + value + + + + +any + + - - + - -

create() → {Wine}

- + The value to be set + - - - -
- runs "wineboot" -
- - - - - - - + + @@ -173108,7 +177345,7 @@

createSource:
@@ -173137,124 +177374,18 @@
Returns:
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut + This
- - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - -
Type
-void +Dosbox
@@ -173272,7 +177403,7 @@
Returns:
-

description(description) → {WineShortcut}

+

withVersion(major, minor) → {OpenGL}

@@ -173280,7 +177411,7 @@

descriptio
- Sets the shortcut description + Specifies the major and minor versions
@@ -173316,13 +177447,13 @@

Parameters:
- description + major -string +number @@ -173332,7 +177463,30 @@
Parameters:
- The shortcut description + The major version + + + + + + + minor + + + + + +number + + + + + + + + + + The minor version @@ -173373,7 +177527,7 @@
Parameters:
Source:
@@ -173402,7 +177556,7 @@
Returns:
- The WineShortcut object + This
@@ -173413,7 +177567,7 @@
Returns:
-WineShortcut +OpenGL
@@ -173431,7 +177585,7 @@
Returns:
-

directory(directory) → {Resource}

+

withWindowsVersion(version, servicePack) → {WindowsVersion}

@@ -173439,7 +177593,7 @@

directory - Sets the directory inside the resources directory where the Resource is stored + Specifies the default windows version @@ -173475,7 +177629,7 @@
Parameters:
- directory + version @@ -173491,7 +177645,30 @@
Parameters:
- The directory path + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31 + + + + + + + servicePack + + + + + +string + + + + + + + + + + e.g. sp3 @@ -173532,7 +177709,7 @@
Parameters:
Source:
@@ -173561,7 +177738,7 @@
Returns:
- The Resource object + This
@@ -173572,7 +177749,7 @@
Returns:
-Resource +WindowsVersion
@@ -173590,7 +177767,7 @@
Returns:
-

download(setupWizard) → {String}

+

wizard(wizard) → {Resource}

@@ -173598,7 +177775,7 @@

download - Download the setup resources in the same directory, and returns the path of the .exe + Sets the setup wizard @@ -173634,7 +177811,7 @@
Parameters:
- setupWizard + wizard @@ -173691,7 +177868,7 @@
Parameters:
Source:
@@ -173720,7 +177897,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + The Resource object
@@ -173731,7 +177908,7 @@
Returns:
-String +Resource
@@ -173749,17 +177926,13 @@
Returns:
-

environment(environment) → {WineShortcut}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the shortcut environment variables -
- @@ -173781,6 +177954,8 @@
Parameters:
Type + Attributes + @@ -173793,23 +177968,33 @@
Parameters:
- environment + wizard -string +SetupWizard + + + <optional>
+ + + + + + + - The environment variables + @@ -173850,7 +178035,7 @@
Parameters:
Source:
@@ -173878,10 +178063,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -173890,7 +178071,10 @@
Returns:
-WineShortcut +SetupWizard +| + +Wine
@@ -173908,7 +178092,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

wizard(wizard) → {Downloader}

@@ -173916,7 +178100,7 @@

environmen
- set environment + Sets the setup wizard
@@ -173952,13 +178136,13 @@

Parameters:
- environment + wizard -string +SetupWizard @@ -173968,7 +178152,7 @@
Parameters:
- variables + The setup wizard @@ -174009,7 +178193,7 @@
Parameters:
Source:
@@ -174038,7 +178222,7 @@
Returns:
- QuickScript object + The Downloader object
@@ -174049,7 +178233,7 @@
Returns:
-QuickScript +Downloader
@@ -174062,12 +178246,147 @@
Returns:
+ + + + + + + +

+ + + + + + + +
+ +
+ +

default()

+ +
setting to set always offscreen
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new default()

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

Methods

+ + -

executable(executable, args)

+

_createShortcut(prefixopt)

@@ -174075,7 +178394,7 @@

executable<
- set executable + creates shortcut
@@ -174099,6 +178418,8 @@

Parameters:
Type + Attributes + @@ -174111,36 +178432,33 @@
Parameters:
- executable + prefix - + +string - + - executable without path (e.g. "Steam.exe") - - - - - - - args + + + <optional>
+ - - - + + + - use array (e.g. ["-applaunch", 409160]) + prefix name @@ -174181,7 +178499,7 @@
Parameters:
Source:
@@ -174217,13 +178535,16 @@
Parameters:
-

fontDirectory() → {string}

+

_fetchFileNameFromUrl(url) → {string}

+
+ Fetches the file name from an URL +
@@ -174233,6 +178554,56 @@

fontDire +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
url + + +string + + + + The URL
+ + + @@ -174265,7 +178636,7 @@

fontDire
Source:
@@ -174294,7 +178665,7 @@

Returns:
- font directory + The file name
@@ -174323,7 +178694,7 @@
Returns:
-

get() → {string}

+

algorithm(algorithm) → {Downloader}

@@ -174331,7 +178702,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Sets the algorithm which shall be used to verify the checksum @@ -174342,6 +178713,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + algorithm + + + + + +string + + + + + + + + + + The checksum algorithm (e.g. "SHA") + + + + + + + @@ -174375,7 +178795,7 @@

getSource:
@@ -174404,7 +178824,7 @@
Returns:
- The path leading to the downloaded resource + The Downloader object
@@ -174415,7 +178835,7 @@
Returns:
-string +Downloader
@@ -174433,7 +178853,7 @@
Returns:
-

get() → {String}

+

algorithm(algorithm) → {Resource}

@@ -174441,7 +178861,7 @@

get - Gets the content of the downloaded file + Sets the checksum algorithm @@ -174452,6 +178872,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + algorithm + + + + + +string + + + + + + + + + + The algorithm to verify the checksum (e.g. "SHA") + + + + + + + @@ -174485,7 +178954,7 @@

getSource:
@@ -174514,7 +178983,7 @@
Returns:
- The content of downloaded file + The Resource object
@@ -174525,7 +178994,7 @@
Returns:
-String +Resource
@@ -174543,7 +179012,7 @@
Returns:
-

get(resourceName) → {Resource}

+

application(application) → {AppResource}

@@ -174551,7 +179020,7 @@

get - Returns the searched resource + Sets the application containing the resources @@ -174587,7 +179056,7 @@
Parameters:
- resourceName + application @@ -174603,7 +179072,7 @@
Parameters:
- The name of the resource + The application with the resource @@ -174644,7 +179113,7 @@
Parameters:
Source:
@@ -174673,7 +179142,7 @@
Returns:
- The found resource + The AppResource object
@@ -174684,7 +179153,7 @@
Returns:
-Resource +AppResource
@@ -174702,17 +179171,13 @@
Returns:
-

getContainer() → {string}

+

architecture() → {string}

-
- Returns the name of the container belonging to a shortcut -
- @@ -174754,7 +179219,7 @@

getContai
Source:
@@ -174783,7 +179248,7 @@

Returns:
- The container name + architecture ("x86" or "amd64")
@@ -174812,7 +179277,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

arguments(args) → {WineShortcut}

@@ -174820,7 +179285,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the shortcut arguments
@@ -174856,13 +179321,13 @@

Parameters:
- setupFileName + args -string +array @@ -174872,7 +179337,7 @@
Parameters:
- The setup file name + The shortcut arguments @@ -174913,7 +179378,7 @@
Parameters:
Source:
@@ -174942,7 +179407,7 @@
Returns:
- This + The WineShortcut object
@@ -174953,7 +179418,7 @@
Returns:
-GogScript +WineShortcut
@@ -174971,17 +179436,13 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

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

-
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- @@ -175003,8 +179464,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -175015,23 +179480,39 @@
Parameters:
- setupFileNames + architecture -Array.<string> +string + + + <optional>
+ + + + + + + + + + current architecture + + + - The setup file name(s) + @@ -175072,7 +179553,7 @@
Parameters:
Source:
@@ -175100,10 +179581,6 @@
Parameters:
Returns:
-
- This -
-
@@ -175112,7 +179589,7 @@
Returns:
-GogScript +Array.<string>
@@ -175130,17 +179607,13 @@
Returns:
-

headers(headers) → {Downloader}

+

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

-
- Sets the http headers -
- @@ -175162,8 +179635,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -175174,23 +179651,39 @@
Parameters:
- headers + distribution name -Object +string + + + <optional>
+ + + + + - The http headers + + + + current distribution + + + + + @@ -175231,7 +179724,7 @@
Parameters:
Source:
@@ -175259,10 +179752,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -175271,7 +179760,7 @@
Returns:
-Downloader +Array.<string>
@@ -175289,7 +179778,7 @@
Returns:
-

json() → {any}

+

binPath(subCategoryopt, versionopt) → {string}

@@ -175297,7 +179786,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + returns the path to the engine binary directory +if no parameters are given, the Wine version of the current prefix is used @@ -175308,6 +179798,100 @@

json + + + + Name + + + Type + + + Attributes + + + + + Description + + + + + + + + + subCategory + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + Wine sub-category + + + + + + + version + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + Wine version + + + + + + + @@ -175341,7 +179925,7 @@

jsonSource:
@@ -175370,7 +179954,7 @@
Returns:
- The json value + path to "wine" binary
@@ -175381,7 +179965,7 @@
Returns:
-any +string
@@ -175399,7 +179983,7 @@
Returns:
-

kill() → {Wine}

+

category(category) → {WineShortcut}

@@ -175407,7 +179991,7 @@

kill - kill wine server + Sets the shortcut category @@ -175418,6 +180002,55 @@

kill + + + + Name + + + Type + + + + + + Description + + + + + + + + + category + + + + + +string + + + + + + + + + + The shortcut category + + + + + + + @@ -175451,7 +180084,7 @@

killSource:
@@ -175479,6 +180112,10 @@

kill + The WineShortcut object + +
@@ -175487,7 +180124,7 @@
Returns:
-Wine +WineShortcut
@@ -175505,7 +180142,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

checksum(checksum) → {Resource}

@@ -175513,8 +180150,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 checksum which shall be used to verify the resource
@@ -175550,13 +180186,13 @@

Parameters:
- setupWizard + checksum -SetupWizard +string @@ -175566,7 +180202,7 @@
Parameters:
- The setupWizard to use + The checksum @@ -175607,7 +180243,7 @@
Parameters:
Source:
@@ -175636,7 +180272,7 @@
Returns:
- This + The Resource object
@@ -175647,7 +180283,7 @@
Returns:
-GogScript +Resource
@@ -175665,7 +180301,7 @@
Returns:
-

message(message) → {Downloader}

+

checksum(checksum) → {Downloader}

@@ -175673,7 +180309,7 @@

message - Sets the download message text + Sets the checksum @@ -175709,7 +180345,7 @@
Parameters:
- message + checksum @@ -175725,7 +180361,7 @@
Parameters:
- The download message + The checksum which shall be used to verify the download @@ -175766,7 +180402,7 @@
Parameters:
Source:
@@ -175824,7 +180460,7 @@
Returns:
-

miniature(miniature) → {WineShortcut}

+

create() → {void}

@@ -175832,7 +180468,7 @@

miniature - Sets the miniature for the shortcut + Creates a new shortcut @@ -175843,58 +180479,6 @@

miniatureParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - @@ -175928,7 +180512,113 @@
Parameters:
Source:
+ + + + + + + +

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

create() → {Wine}

+ + + + + + +
+ runs "wineboot" +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -175957,7 +180647,7 @@
Returns:
- The WineShortcut object + The Wine object
@@ -175968,7 +180658,7 @@
Returns:
-WineShortcut +Wine
@@ -175986,7 +180676,7 @@
Returns:
-

miniature(miniatureopt)

+

description(description) → {WineShortcut}

@@ -175994,7 +180684,7 @@

miniature - get/set miniature (for the installation and the shortcut) + Sets the shortcut description @@ -176018,8 +180708,6 @@
Parameters:
Type - Attributes - @@ -176032,33 +180720,23 @@
Parameters:
- miniature + description -URI +string - - - <optional>
- - - - - - - - path to the miniature file + The shortcut description @@ -176099,7 +180777,7 @@
Parameters:
Source:
@@ -176124,6 +180802,28 @@
Parameters:
+
Returns:
+ + +
+ The WineShortcut object +
+ + + +
+
+ Type +
+
+ +WineShortcut + + +
+
+ + @@ -176135,7 +180835,7 @@
Parameters:
-

name(name) → {Resource}

+

directory(directory) → {Resource}

@@ -176143,7 +180843,7 @@

name - Sets the resource name + Sets the directory inside the resources directory where the Resource is stored @@ -176179,7 +180879,7 @@
Parameters:
- name + directory @@ -176195,7 +180895,7 @@
Parameters:
- The name of the resource + The directory path @@ -176236,7 +180936,7 @@
Parameters:
Source:
@@ -176294,7 +180994,7 @@
Returns:
-

name(name) → {WineShortcut}

+

dosConfigFile() → {string}

@@ -176302,7 +181002,117 @@

name - Sets the shortcut name + Fetch the prefix dosbox configuration file + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

download(setupWizard) → {String}

+ + + + + + +
+ Download the setup resources in the same directory, and returns the path of the .exe
@@ -176338,13 +181148,13 @@
Parameters:
- name + setupWizard -string +SetupWizard @@ -176354,7 +181164,7 @@
Parameters:
- The shortcut name + The setup wizard @@ -176395,7 +181205,7 @@
Parameters:
Source:
@@ -176424,7 +181234,7 @@
Returns:
- The WineShortcut object + The .exe file entry that can be used to continue the installation
@@ -176435,7 +181245,7 @@
Returns:
-WineShortcut +String
@@ -176453,7 +181263,7 @@
Returns:
-

of(shortcut) → {void}

+

downloadFinished(wine) → {boolean}

@@ -176461,7 +181271,8 @@

of - Sets shortcut + Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first @@ -176497,13 +181308,13 @@
Parameters:
- shortcut + wine -string +Wine @@ -176513,7 +181324,7 @@
Parameters:
- shortcut + The wine engine object @@ -176554,7 +181365,7 @@
Parameters:
Source:
@@ -176582,6 +181393,10 @@
Parameters:
Returns:
+
+ True if the download has finished, false otherwise +
+
@@ -176590,7 +181405,7 @@
Returns:
-void +boolean
@@ -176608,7 +181423,7 @@
Returns:
-

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

+

downloadStarted(wine) → {boolean}

@@ -176616,7 +181431,7 @@

- Specifies if the download shall be executed only if a newer version is available + Checks whether the software download has started
@@ -176652,13 +181467,13 @@

Parameters:
- onlyIfUpdateAvailable + wine -boolean +Wine @@ -176668,7 +181483,7 @@
Parameters:
- true the download shall be executed only if a newer version is available + The wine engine object @@ -176709,7 +181524,7 @@
Parameters:
Source:
@@ -176738,7 +181553,7 @@
Returns:
- The Downloader object + True if the download has started, false otherwise
@@ -176749,7 +181564,7 @@
Returns:
-Downloader +boolean
@@ -176767,7 +181582,7 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

environment(environment) → {WineShortcut}

@@ -176775,7 +181590,7 @@

prefix - Sets the shortcut prefix + Sets the shortcut environment variables @@ -176811,7 +181626,7 @@
Parameters:
- prefix + environment @@ -176827,7 +181642,7 @@
Parameters:
- The shortcut prefix + The environment variables @@ -176868,7 +181683,7 @@
Parameters:
Source:
@@ -176926,13 +181741,17 @@
Returns:
-

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

+

environment(environment) → {QuickScript}

+
+ set environment +
+ @@ -176954,8 +181773,6 @@
Parameters:
Type - Attributes - @@ -176968,106 +181785,7 @@
Parameters:
- prefix - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - distribution - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - architecture - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - version + environment @@ -177080,20 +181798,10 @@
Parameters:
- - - <optional>
- - - - - - - - + variables @@ -177134,7 +181842,7 @@
Parameters:
Source:
@@ -177162,6 +181870,10 @@
Parameters:
Returns:
+
+ QuickScript object +
+
@@ -177170,10 +181882,7 @@
Returns:
-string -| - -Wine +QuickScript
@@ -177191,7 +181900,7 @@
Returns:
-

prefixDirectory() → {string}

+

executable(executable, args)

@@ -177199,7 +181908,7 @@

prefix
- returns prefix directory + set executable
@@ -177210,6 +181919,68 @@

prefix +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
executable + + executable without path (e.g. "Steam.exe")
args + + use array (e.g. ["-applaunch", 409160])
+ + @@ -177243,7 +182014,7 @@

prefix
Source:
@@ -177268,24 +182039,6 @@

prefix -

Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - @@ -177297,7 +182050,7 @@
Returns:
-

programFiles() → {string}

+

fontDirectory() → {string}

@@ -177345,7 +182098,7 @@

programFi
Source:
@@ -177374,7 +182127,7 @@

Returns:
- name of "Program Files" + font directory
@@ -177403,7 +182156,7 @@
Returns:
-

run(userArguments) → {void}

+

get(resourceName) → {Resource}

@@ -177411,7 +182164,7 @@

run - Runs a shortcut with the given user arguments + Returns the searched resource @@ -177447,13 +182200,13 @@
Parameters:
- userArguments + resourceName -array +string @@ -177463,7 +182216,7 @@
Parameters:
- The user arguments + The name of the resource @@ -177504,7 +182257,7 @@
Parameters:
Source:
@@ -177532,6 +182285,10 @@
Parameters:
Returns:
+
+ The found resource +
+
@@ -177540,7 +182297,7 @@
Returns:
-void +Resource
@@ -177558,13 +182315,16 @@
Returns:
-

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

+

get() → {String}

+
+ Gets the content of the downloaded file +
@@ -177573,264 +182333,115 @@

run - - - - Name - - Type - - Attributes - - - Default - - Description - - +
- - - - executable - - - - - -string - - - - - - - - - - + - - - + - - - - - + - - + - - - args - + - - - -array + + - - + - - - - <optional>
- + - + - - - + +
Source:
+
+ - - - - [] - - - + - - + +
- - - workingDirectory - - - - -string - - - - - - <optional>
- - - - - - - - - working container - - - - - - - - - captureOutput - - - - -boolean - - - - - - <optional>
- +
Returns:
- + +
+ The content of downloaded file +
- - - - - - - false - - - - - +
+
+ Type +
+
+ +String - - - - wait - +
+
- - - -boolean + - - - - - - <optional>
- - - - + - - - - false - - - + - - + +

get() → {string}

+ - - - userData - - - - -map +
+ Fetches the Resource and returns the path leading to the downloaded resource +
- - - - - - <optional>
- - - - - - - - - empty - - - - - - - - @@ -177866,7 +182477,7 @@
Parameters:
Source:
@@ -177895,7 +182506,7 @@
Returns:
- output + The path leading to the downloaded resource
@@ -177906,7 +182517,7 @@
Returns:
-String +string
@@ -177924,13 +182535,16 @@
Returns:
-

runInsidePrefix(executable, argsopt, waitopt)

+

getContainer() → {string}

+
+ Returns the name of the container belonging to a shortcut +
@@ -177939,147 +182553,115 @@

runIns -

Parameters:
- - - - - - - - - - - - - - - - - +
-
- - - - + - + - - - + - - - + - - + - - - - + - + - - - - - - - - - - - - - - - - - - - + + +
Returns:
+ + +
+ The container name +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + - - + - -
NameTypeAttributesDefaultDescription
executable - - -string + + - - - + - + - - - -
args - - -array + +
Source:
+
+ + - -
- - <optional>
- + + - - -
- - [] - -
wait - - -boolean - - - - <optional>
- - - -
- - false - -
+

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + @@ -178115,7 +182697,7 @@
Parameters:
Source:
@@ -178140,6 +182722,28 @@
Parameters:
+
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + @@ -178151,7 +182755,7 @@
Parameters:
- +

gogSetupFileName(setupFileName) → {GogScript}

@@ -178159,7 +182763,7 @@

- - -
- Specifies if the download shall be executed only if a newer version is available -
- +
@@ -186675,54 +191963,40 @@

+
-
Parameters:
+
- - - - +

default()

- +
Setting to enable/disable Retina
+ + - - +
+
+ - + +

Constructor

+ -
- - + +

new default()

+ - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - true the download shall be executed only if a newer version is available
+ @@ -186758,7 +192032,7 @@
Parameters:
Source:
@@ -186783,32 +192057,30 @@
Parameters:
-
Returns:
- -
- The Downloader object -
-
-
- Type -
-
- -Downloader + + -
-
+ + + + + + + + + +

Methods

@@ -186816,7 +192088,7 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

_createShortcut(prefixopt)

@@ -186824,7 +192096,7 @@

prefix - Sets the shortcut prefix + creates shortcut @@ -186848,6 +192120,8 @@
Parameters:
Type + Attributes + @@ -186873,10 +192147,20 @@
Parameters:
+ + + <optional>
+ + + + + - The shortcut prefix + + + prefix name @@ -186917,7 +192201,7 @@
Parameters:
Source:
@@ -186942,28 +192226,6 @@
Parameters:
-
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - @@ -186975,13 +192237,17 @@
Returns:
-

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

+

_fetchFileNameFromUrl(url) → {string}

+
+ Fetches the file name from an URL +
+ @@ -187003,8 +192269,6 @@
Parameters:
Type - Attributes - @@ -187017,106 +192281,7 @@
Parameters:
- prefix - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - distribution - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - architecture - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - version + url @@ -187129,20 +192294,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The URL @@ -187183,7 +192338,7 @@
Parameters:
Source:
@@ -187211,6 +192366,10 @@
Parameters:
Returns:
+
+ The file name +
+
@@ -187220,9 +192379,6 @@
Returns:
string -| - -Wine
@@ -187240,7 +192396,7 @@
Returns:
-

prefixDirectory() → {string}

+

algorithm(algorithm) → {Downloader}

@@ -187248,7 +192404,7 @@

prefix
- returns prefix directory + Sets the algorithm which shall be used to verify the checksum
@@ -187259,6 +192415,55 @@

prefix +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
algorithm + + +string + + + + The checksum algorithm (e.g. "SHA")
+ + @@ -187292,7 +192497,7 @@

prefix
Source:
@@ -187320,6 +192525,10 @@

prefix

Returns:
+
+ The Downloader object +
+
@@ -187328,7 +192537,7 @@
Returns:
-string +Downloader
@@ -187346,19 +192555,72 @@
Returns:
-

programFiles() → {string}

+

algorithm(algorithm) → {Resource}

+
+ Sets the checksum algorithm +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
algorithm + + +string + + The algorithm to verify the checksum (e.g. "SHA")
@@ -187394,7 +192656,7 @@

programFi
Source:
@@ -187423,7 +192685,7 @@

Returns:
- name of "Program Files" + The Resource object
@@ -187434,7 +192696,7 @@
Returns:
-string +Resource
@@ -187452,7 +192714,7 @@
Returns:
-

run(userArguments) → {void}

+

application(application) → {AppResource}

@@ -187460,7 +192722,7 @@

run - Runs a shortcut with the given user arguments + Sets the application containing the resources @@ -187496,13 +192758,13 @@
Parameters:
- userArguments + application -array +string @@ -187512,7 +192774,7 @@
Parameters:
- The user arguments + The application with the resource @@ -187553,7 +192815,7 @@
Parameters:
Source:
@@ -187581,6 +192843,10 @@
Parameters:
Returns:
+
+ The AppResource object +
+
@@ -187589,7 +192855,7 @@
Returns:
-void +AppResource
@@ -187607,7 +192873,7 @@
Returns:
-

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

+

architecture() → {string}

@@ -187622,259 +192888,158 @@

run - - - - Name - - Type - - Attributes - - - Default - +
- Description - - + - - - - executable - + - - - -string + + - - + - - - + - + - - - + - - - - - + - - + - - - args - + +
Source:
+
+ - - - -array + + - - + +
- - - - <optional>
- - - - - - - - - [] - - - - - - - - - workingDirectory - - - - -string - - - - - - <optional>
- - - - - - - - - working container - - - - - +
Returns:
- + +
+ architecture ("x86" or "amd64") +
- - - captureOutput - - - - -boolean +
+
+ Type +
+
+ +string - - - - - - <optional>
- +
+
- + - - - - - - - false - - + + + + - - + +

arguments(args) → {WineShortcut}

+ - - - wait - + - - - -boolean - - +
+ Sets the shortcut arguments +
+ - - - - <optional>
- - - - - - - - - false - - - - - + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + - + - - - - - + @@ -187915,7 +193080,7 @@
Parameters:
Source:
@@ -187944,7 +193109,7 @@
Returns:
- output + The WineShortcut object
@@ -187955,7 +193120,7 @@
Returns:
-String +WineShortcut
@@ -187973,7 +193138,7 @@
Returns:
-

runInsidePrefix(executable, argsopt, waitopt)

+

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

@@ -188017,7 +193182,7 @@
Parameters:
- + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -188118,7 +193209,7 @@
Parameters:
@@ -188164,7 +193255,7 @@
Parameters:
Source:
@@ -188189,6 +193280,24 @@
Parameters:
+
Returns:
+ + + + +
+
+ Type +
+
+ +Array.<string> + + +
+
+ + @@ -188200,17 +193309,13 @@
Parameters:
- +

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

-
- Sets the executable which shall be used -
- @@ -188232,8 +193337,12 @@
Parameters:
+ + + + @@ -188244,7 +193353,7 @@
Parameters:
- + + - + + + + + @@ -188301,7 +193426,7 @@
Parameters:
Source:
@@ -188329,10 +193454,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -188341,7 +193462,7 @@
Returns:
-WineShortcut +Array.<string>
@@ -188359,7 +193480,7 @@
Returns:
-

stop() → {void}

+

binPath(subCategoryopt, versionopt) → {string}

@@ -188367,7 +193488,8 @@

stop - Stops the running shortcut + returns the path to the engine binary directory +if no parameters are given, the Wine version of the current prefix is used @@ -188378,106 +193500,98 @@

stop - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - +
NameTypeDescription
userDataargs -map +array - - <optional>
- - - - - -
- - empty - - The shortcut arguments
executablearchitecture @@ -188027,80 +193192,6 @@
Parameters:
-
- - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - false + current architecture TypeAttributesDefaultDescription
searchdistribution name @@ -188257,10 +193366,26 @@
Parameters:
+ + <optional>
+ + + + +
The executable name + + current distribution + +
+ + + + + + -
Returns:
+ + + + + + -
-
- Type -
-
- -void +
+ + + + + - - + + + + - - + + -

system32directory() → {string}

- - + + + + + + + + + + + + + +
NameTypeAttributesDescription
subCategory + + +string - + + + + <optional>
+ + + +
Wine sub-category
version + + +string + + + + <optional>
+ + + +
Wine version
@@ -188513,7 +193627,7 @@

syst
Source:
@@ -188542,7 +193656,7 @@

Returns:
- system32 directory + path to "wine" binary
@@ -188571,13 +193685,16 @@
Returns:
-

system64directory() → {string}

+

category(category) → {WineShortcut}

+
+ Sets the shortcut category +
@@ -188587,6 +193704,56 @@

syst +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
category + + +string + + + + The shortcut category
+ + + @@ -188619,7 +193786,7 @@

syst
Source:
@@ -188648,7 +193815,7 @@

Returns:
- system64 directory + The WineShortcut object
@@ -188659,7 +193826,7 @@
Returns:
-string +WineShortcut
@@ -188677,7 +193844,7 @@
Returns:
-

to(localDestination) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -188685,7 +193852,7 @@

to - Sets the download destination + Sets the checksum which shall be used to verify the resource @@ -188721,7 +193888,7 @@
Parameters:
- localDestination + checksum @@ -188737,7 +193904,7 @@
Parameters:
- The destination of the download. If it is a directory, the file will be placed inside + The checksum @@ -188778,7 +193945,7 @@
Parameters:
Source:
@@ -188807,7 +193974,7 @@
Returns:
- The Downloader object + The Resource object
@@ -188818,7 +193985,7 @@
Returns:
-Downloader +Resource
@@ -188836,7 +194003,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

checksum(checksum) → {Downloader}

@@ -188844,7 +194011,7 @@

trustLevel<
- Sets the trust level + Sets the checksum
@@ -188880,7 +194047,7 @@

Parameters:
- trustLevel + checksum @@ -188896,7 +194063,7 @@
Parameters:
- The trust level + The checksum which shall be used to verify the download @@ -188937,7 +194104,7 @@
Parameters:
Source:
@@ -188966,7 +194133,7 @@
Returns:
- The WineShortcut object + The Downloader object
@@ -188977,7 +194144,7 @@
Returns:
-WineShortcut +Downloader
@@ -188995,7 +194162,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

create() → {void}

@@ -189003,7 +194170,7 @@

trustLevel<
- set trust level + Creates a new shortcut
@@ -189014,55 +194181,6 @@

trustLevel< -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - @@ -189096,7 +194214,7 @@
Parameters:
Source:
@@ -189124,10 +194242,6 @@
Parameters:
Returns:
-
- QuickScript object -
-
@@ -189136,7 +194250,7 @@
Returns:
-QuickScript +void
@@ -189154,7 +194268,7 @@
Returns:
-

type(type) → {WineShortcut}

+

create() → {Wine}

@@ -189162,7 +194276,7 @@

type - Sets the shortcut type + runs "wineboot" @@ -189173,55 +194287,6 @@

type - - - - Name - - - Type - - - - - - Description - - - - - - - - - type - - - - - -string - - - - - - - - - - The shortcut type - - - - - - - @@ -189255,7 +194320,7 @@
Parameters:
Source:
@@ -189284,7 +194349,7 @@
Returns:
- The WineShortcut object + The Wine object
@@ -189295,7 +194360,7 @@
Returns:
-WineShortcut +Wine
@@ -189313,7 +194378,7 @@
Returns:
-

uninstall(name) → {bool}

+

description(description) → {WineShortcut}

@@ -189321,7 +194386,7 @@

uninstall - uninstall application + Sets the shortcut description @@ -189357,7 +194422,7 @@
Parameters:
- name + description @@ -189373,7 +194438,7 @@
Parameters:
- of the application which shall be uninstalled + The shortcut description @@ -189414,117 +194479,7 @@
Parameters:
Source:
- - - - - - - -

- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
@@ -189552,6 +194507,10 @@

uninstallReturns:

+
+ The WineShortcut object +
+
@@ -189560,7 +194519,7 @@
Returns:
-void +WineShortcut
@@ -189578,7 +194537,7 @@
Returns:
-

url(url) → {Downloader}

+

directory(directory) → {Resource}

@@ -189586,7 +194545,7 @@

url - Sets the URL which shall be used for the download + Sets the directory inside the resources directory where the Resource is stored @@ -189622,7 +194581,7 @@
Parameters:
- url + directory @@ -189638,7 +194597,7 @@
Parameters:
- The URL + The directory path @@ -189679,7 +194638,7 @@
Parameters:
Source:
@@ -189708,7 +194667,7 @@
Returns:
- The Downloader object + The Resource object
@@ -189719,7 +194678,7 @@
Returns:
-Downloader +Resource
@@ -189737,7 +194696,7 @@
Returns:
-

url(url) → {Resource}

+

dosConfigFile() → {string}

@@ -189745,7 +194704,117 @@

url - Sets the resource URL + Fetch the prefix dosbox configuration file + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

download(setupWizard) → {String}

+ + + + + + +
+ Download the setup resources in the same directory, and returns the path of the .exe
@@ -189781,13 +194850,13 @@
Parameters:
- url + setupWizard -string +SetupWizard @@ -189797,7 +194866,7 @@
Parameters:
- The URL + The setup wizard @@ -189838,7 +194907,7 @@
Parameters:
Source:
@@ -189867,7 +194936,7 @@
Returns:
- The Resource object + The .exe file entry that can be used to continue the installation
@@ -189878,7 +194947,7 @@
Returns:
-Resource +String
@@ -189896,7 +194965,7 @@
Returns:
-

wait() → {Wine}

+

downloadFinished(wine) → {boolean}

@@ -189904,7 +194973,8 @@

wait - wait until wineserver finishes + Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first @@ -189915,6 +194985,55 @@

wait + + + + Name + + + Type + + + + + + Description + + + + + + + + + wine + + + + + +Wine + + + + + + + + + + The wine engine object + + + + + + + @@ -189948,7 +195067,7 @@

waitSource:
@@ -189976,6 +195095,10 @@

wait + True if the download has finished, false otherwise + +
@@ -189984,7 +195107,7 @@
Returns:
-Wine +boolean
@@ -190002,13 +195125,17 @@
Returns:
-

winepath(pathopt) → {String}

+

downloadStarted(wine) → {boolean}

+
+ Checks whether the software download has started +
+ @@ -190030,8 +195157,6 @@
Parameters:
Type - Attributes - @@ -190044,33 +195169,23 @@
Parameters:
- path + wine -String +Wine - - - <optional>
- - - - - - - - + The wine engine object @@ -190111,7 +195226,7 @@
Parameters:
Source:
@@ -190139,6 +195254,10 @@
Parameters:
Returns:
+
+ True if the download has started, false otherwise +
+
@@ -190147,7 +195266,7 @@
Returns:
-String +boolean
@@ -190165,7 +195284,7 @@
Returns:
-

wineServer(wineserver)

+

environment(environment) → {WineShortcut}

@@ -190173,7 +195292,7 @@

wineServer<
- executes wineserver in current prefix + Sets the shortcut environment variables
@@ -190209,7 +195328,7 @@

Parameters:
- wineserver + environment @@ -190225,7 +195344,7 @@
Parameters:
- parameter + The environment variables @@ -190266,7 +195385,7 @@
Parameters:
Source:
@@ -190291,6 +195410,28 @@
Parameters:
+
Returns:
+ + +
+ The WineShortcut object +
+ + + +
+
+ Type +
+
+ +WineShortcut + + +
+
+ + @@ -190302,7 +195443,7 @@
Parameters:
-

withScript(command) → {PlainInstaller}

+

environment(environment) → {QuickScript}

@@ -190310,7 +195451,7 @@

withScript<
- Sets the installation script consisting of a lambda function + set environment
@@ -190346,13 +195487,13 @@

Parameters:
- command + environment -function +string @@ -190362,7 +195503,7 @@
Parameters:
- The installation command + variables @@ -190403,7 +195544,7 @@
Parameters:
Source:
@@ -190432,7 +195573,7 @@
Returns:
- The PlainInstaller object + QuickScript object
@@ -190443,7 +195584,7 @@
Returns:
-PlainInstaller +QuickScript
@@ -190461,7 +195602,7 @@
Returns:
-

wizard(wizard) → {Resource}

+

executable(executable, args)

@@ -190469,7 +195610,7 @@

wizard - Sets the setup wizard + set executable @@ -190505,15 +195646,28 @@
Parameters:
- wizard + executable - -SetupWizard + + + + + + executable without path (e.g. "Steam.exe") + + + + + + args + + + @@ -190521,7 +195675,7 @@
Parameters:
- The setup wizard + use array (e.g. ["-applaunch", 409160]) @@ -190562,7 +195716,91 @@
Parameters:
Source:
+ + + + + + + +

+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -190591,7 +195829,7 @@
Returns:
- The Resource object + font directory
@@ -190602,7 +195840,7 @@
Returns:
-Resource +string
@@ -190620,7 +195858,7 @@
Returns:
-

wizard(wizard) → {Downloader}

+

get(resourceName) → {Resource}

@@ -190628,7 +195866,7 @@

wizard - Sets the setup wizard + Returns the searched resource @@ -190664,13 +195902,13 @@
Parameters:
- wizard + resourceName -SetupWizard +string @@ -190680,7 +195918,7 @@
Parameters:
- The setup wizard + The name of the resource @@ -190721,7 +195959,7 @@
Parameters:
Source:
@@ -190750,7 +195988,7 @@
Returns:
- The Downloader object + The found resource
@@ -190761,7 +195999,7 @@
Returns:
-Downloader +Resource
@@ -190779,13 +196017,19 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

get() → {String}

+
+ Gets the content of the downloaded file +
+ + + @@ -190794,65 +196038,112 @@

wizardParameters:

+ + +
+ - - - - - - + - + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + + + + + + + + + + + + + + + + + +
Returns:
- - +
+ The content of downloaded file +
+ + +
+
+ Type +
+
+String -
- - - + + + - - - - - + - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - <optional>
- - + + + +

get() → {string}

+ + + + + + +
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ + + - -
@@ -190888,7 +196179,7 @@
Parameters:
Source:
@@ -190916,6 +196207,10 @@
Parameters:
Returns:
+
+ The path leading to the downloaded resource +
+
@@ -190924,10 +196219,7 @@
Returns:
-SetupWizard -| - -Wine +string
@@ -190940,48 +196232,21 @@
Returns:
- - - - - - - -

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

default()

- -
Tool to open a Wine console
- - -
+ -
-
- -

Constructor

+

getContainer() → {string}

-

new default()

- - +
+ Returns the name of the container belonging to a shortcut +
@@ -191024,7 +196289,7 @@

new defaultSource:
@@ -191049,30 +196314,32 @@

new defaultReturns:

+ +
+ The container name +
+
+
+ Type +
+
+ +string - -

- - - - - + + - - - - -

Methods

@@ -191080,7 +196347,7 @@

Methods

-

_createShortcut(prefixopt)

+

getSettings() → {object}

@@ -191088,7 +196355,7 @@

_creat
- creates shortcut + Fetch all prefix dosbox sttings
@@ -191099,67 +196366,6 @@

_creat -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - @@ -191193,7 +196399,7 @@
Parameters:
Source:
@@ -191218,6 +196424,28 @@
Parameters:
+
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + @@ -191229,7 +196457,7 @@
Parameters:
-

_fetchFileNameFromUrl(url) → {string}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -191237,7 +196465,7 @@

- Fetches the file name from an URL + Sets one setup file name so that the script can fetch it from gog.com
@@ -191273,7 +196501,7 @@

Parameters:
- url + setupFileName @@ -191289,7 +196517,7 @@
Parameters:
- The URL + The setup file name @@ -191330,7 +196558,7 @@
Parameters:
Source:
@@ -191359,7 +196587,7 @@
Returns:
- The file name + This
@@ -191370,7 +196598,7 @@
Returns:
-string +GogScript
@@ -191388,7 +196616,7 @@
Returns:
-

algorithm(algorithm) → {Resource}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -191396,7 +196624,7 @@

algorithm - Sets the checksum algorithm + Sets the setup file(s) name so that the script can fetch it from gog.com @@ -191432,13 +196660,13 @@
Parameters:
- algorithm + setupFileNames -string +Array.<string> @@ -191448,7 +196676,7 @@
Parameters:
- The algorithm to verify the checksum (e.g. "SHA") + The setup file name(s) @@ -191489,7 +196717,7 @@
Parameters:
Source:
@@ -191518,7 +196746,7 @@
Returns:
- The Resource object + This
@@ -191529,7 +196757,7 @@
Returns:
-Resource +GogScript
@@ -191547,7 +196775,7 @@
Returns:
-

algorithm(algorithm) → {Downloader}

+

headers(headers) → {Downloader}

@@ -191555,7 +196783,7 @@

algorithm - Sets the algorithm which shall be used to verify the checksum + Sets the http headers @@ -191591,13 +196819,13 @@
Parameters:
- algorithm + headers -string +Object @@ -191607,7 +196835,7 @@
Parameters:
- The checksum algorithm (e.g. "SHA") + The http headers @@ -191648,7 +196876,7 @@
Parameters:
Source:
@@ -191706,7 +196934,7 @@
Returns:
-

application(application) → {AppResource}

+

isHdpi() → {boolean}

@@ -191714,7 +196942,7 @@

applicatio
- Sets the application containing the resources + Fetches whether hdpi is enabled or not
@@ -191725,55 +196953,6 @@

applicatio -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - @@ -191807,7 +196986,7 @@
Parameters:
Source:
@@ -191836,7 +197015,7 @@
Returns:
- The AppResource object + True if hdpi is enabled, false otherwise
@@ -191847,7 +197026,7 @@
Returns:
-AppResource +boolean
@@ -191865,13 +197044,17 @@
Returns:
-

architecture() → {string}

+

json() → {any}

+
+ Gets the content of the downloaded file and returns it as a JSON value +
+ @@ -191913,7 +197096,7 @@

architect
Source:
@@ -191942,7 +197125,7 @@

Returns:
- architecture ("x86" or "amd64") + The json value
@@ -191953,7 +197136,7 @@
Returns:
-string +any
@@ -191971,7 +197154,7 @@
Returns:
-

arguments(args) → {WineShortcut}

+

kill() → {Wine}

@@ -191979,7 +197162,114 @@

arguments - Sets the shortcut arguments + 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
@@ -192015,13 +197305,13 @@
Parameters:
- args + setupWizard -array +SetupWizard @@ -192031,7 +197321,7 @@
Parameters:
- The shortcut arguments + The setupWizard to use @@ -192072,7 +197362,7 @@
Parameters:
Source:
@@ -192101,7 +197391,7 @@
Returns:
- The WineShortcut object + This
@@ -192112,7 +197402,7 @@
Returns:
-WineShortcut +GogScript
@@ -192130,13 +197420,17 @@
Returns:
-

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

+

message(message) → {Downloader}

+
+ Sets the download message text +
+ @@ -192158,12 +197452,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -192174,7 +197464,7 @@
Parameters:
- architecture + message @@ -192187,26 +197477,10 @@
Parameters:
- - - <optional>
- - - - - - - - - current architecture - - - - - + The download message @@ -192247,7 +197521,7 @@
Parameters:
Source:
@@ -192275,6 +197549,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -192283,7 +197561,7 @@
Returns:
-Array.<string> +Downloader
@@ -192301,13 +197579,17 @@
Returns:
-

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

+

miniature(miniatureopt)

+
+ get/set miniature (for the installation and the shortcut) +
+ @@ -192333,8 +197615,6 @@
Parameters:
- Default - Description @@ -192345,13 +197625,13 @@
Parameters:
- distribution name + miniature -string +URI @@ -192370,14 +197650,8 @@
Parameters:
- - - current distribution - - - - + path to the miniature file @@ -192418,7 +197692,7 @@
Parameters:
Source:
@@ -192443,24 +197717,6 @@
Parameters:
-
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - @@ -192472,7 +197728,7 @@
Returns:
-

binPath(subCategoryopt, versionopt) → {string}

+

miniature(miniature) → {WineShortcut}

@@ -192480,8 +197736,7 @@

binPath - returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used + Sets the miniature for the shortcut @@ -192505,8 +197760,6 @@
Parameters:
Type - Attributes - @@ -192519,66 +197772,26 @@
Parameters:
- subCategory + miniature -string - - - - - - - - - <optional>
- - - - - - - - - - - Wine sub-category - - - - - - - version - +Array.<string> +| - - - -string +URI - - - <optional>
- - - - - - - - Wine version + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -192619,7 +197832,7 @@
Parameters:
Source:
@@ -192648,7 +197861,7 @@
Returns:
- path to "wine" binary + The WineShortcut object
@@ -192659,7 +197872,7 @@
Returns:
-string +WineShortcut
@@ -192677,7 +197890,7 @@
Returns:
-

category(category) → {WineShortcut}

+

name(name) → {Resource}

@@ -192685,7 +197898,7 @@

category - Sets the shortcut category + Sets the resource name @@ -192721,7 +197934,7 @@
Parameters:
- category + name @@ -192737,7 +197950,7 @@
Parameters:
- The shortcut category + The name of the resource @@ -192778,7 +197991,7 @@
Parameters:
Source:
@@ -192807,7 +198020,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -192818,7 +198031,7 @@
Returns:
-WineShortcut +Resource
@@ -192836,7 +198049,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

name(name) → {WineShortcut}

@@ -192844,7 +198057,7 @@

checksum - Sets the checksum + Sets the shortcut name @@ -192880,7 +198093,7 @@
Parameters:
- checksum + name @@ -192896,7 +198109,7 @@
Parameters:
- The checksum which shall be used to verify the download + The shortcut name @@ -192937,7 +198150,7 @@
Parameters:
Source:
@@ -192966,7 +198179,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -192977,7 +198190,7 @@
Returns:
-Downloader +WineShortcut
@@ -192995,7 +198208,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

of(shortcut) → {void}

@@ -193003,7 +198216,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets shortcut @@ -193039,7 +198252,7 @@
Parameters:
- checksum + shortcut @@ -193055,7 +198268,7 @@
Parameters:
- The checksum + shortcut @@ -193096,7 +198309,7 @@
Parameters:
Source:
@@ -193124,10 +198337,6 @@
Parameters:
Returns:
-
- The Resource object -
-
@@ -193136,7 +198345,7 @@
Returns:
-Resource +void
@@ -193154,7 +198363,7 @@
Returns:
-

create() → {Wine}

+

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

@@ -193162,7 +198371,7 @@

create - runs "wineboot" + Specifies if the download shall be executed only if a newer version is available @@ -193173,6 +198382,55 @@

createParameters:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
onlyIfUpdateAvailable + + +boolean + + + + true the download shall be executed only if a newer version is available
+ + @@ -193206,7 +198464,7 @@

createSource:
@@ -193235,7 +198493,7 @@
Returns:
- The Wine object + The Downloader object
@@ -193246,7 +198504,7 @@
Returns:
-Wine +Downloader
@@ -193264,16 +198522,13 @@
Returns:
-

create() → {void}

+

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

-
- Creates a new shortcut -
@@ -193282,12 +198537,171 @@

createParameters:

+ + + + + + + + + + + + -
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
prefix + + +string + + + + + + <optional>
+ + + + + +
distribution + + +string + + + + + + <optional>
+ + + + + +
architecture + + +string + + + + + + <optional>
+ + + + + +
version + + +string + + + + + + <optional>
+ + + + + +
+ + + + + + +
@@ -193316,7 +198730,7 @@

createSource:
@@ -193352,7 +198766,10 @@
Returns:
-void +string +| + +Wine
@@ -193370,7 +198787,7 @@
Returns:
-

description(description) → {WineShortcut}

+

prefix(prefix) → {WineShortcut}

@@ -193378,7 +198795,7 @@

descriptio
- Sets the shortcut description + Sets the shortcut prefix
@@ -193414,7 +198831,7 @@

Parameters:
- description + prefix @@ -193430,7 +198847,7 @@
Parameters:
- The shortcut description + The shortcut prefix @@ -193471,7 +198888,7 @@
Parameters:
Source:
@@ -193529,7 +198946,7 @@
Returns:
-

directory(directory) → {Resource}

+

prefixDirectory() → {string}

@@ -193537,7 +198954,7 @@

directory - Sets the directory inside the resources directory where the Resource is stored + returns prefix directory @@ -193548,55 +198965,6 @@

directoryParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - @@ -193630,7 +198998,7 @@
Parameters:
Source:
@@ -193658,10 +199026,6 @@
Parameters:
Returns:
-
- The Resource object -
-
@@ -193670,7 +199034,7 @@
Returns:
-Resource +string
@@ -193688,16 +199052,13 @@
Returns:
-

download(setupWizard) → {String}

+

programFiles() → {string}

-
- Download the setup resources in the same directory, and returns the path of the .exe -
@@ -193707,56 +199068,6 @@

downloadParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - @@ -193789,7 +199100,7 @@
Parameters:
Source:
@@ -193818,7 +199129,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + name of "Program Files"
@@ -193829,7 +199140,7 @@
Returns:
-String +string
@@ -193847,17 +199158,13 @@
Returns:
-

environment(environment) → {WineShortcut}

+

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

-
- Sets the shortcut environment variables -
- @@ -193879,8 +199186,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -193891,7 +199202,7 @@
Parameters:
- environment + executable @@ -193904,10 +199215,217 @@
Parameters:
+ + + + + + - The environment variables + + + + + + + + + + + + + + args + + + + + +array + + + + + + + + + <optional>
+ + + + + + + + + + + + [] + + + + + + + + + + + + workingDirectory + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + + working container + + + + + + + + + + + + captureOutput + + + + + +boolean + + + + + + + + + <optional>
+ + + + + + + + + + + + false + + + + + + + + + + + + wait + + + + + +boolean + + + + + + + + + <optional>
+ + + + + + + + + + + + false + + + + + + + + + + + + userData + + + + + +map + + + + + + + + + <optional>
+ + + + + + + + + + + + empty + + + + + @@ -193948,7 +199466,7 @@
Parameters:
Source:
@@ -193977,7 +199495,7 @@
Returns:
- The WineShortcut object + output
@@ -193988,7 +199506,7 @@
Returns:
-WineShortcut +String
@@ -194006,7 +199524,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

run(userArguments) → {void}

@@ -194014,7 +199532,7 @@

environmen
- set environment + Runs a shortcut with the given user arguments
@@ -194050,13 +199568,13 @@

Parameters:
- environment + userArguments -string +array @@ -194066,7 +199584,7 @@
Parameters:
- variables + The user arguments @@ -194107,7 +199625,7 @@
Parameters:
Source:
@@ -194135,10 +199653,6 @@
Parameters:
Returns:
-
- QuickScript object -
-
@@ -194147,7 +199661,7 @@
Returns:
-QuickScript +void
@@ -194165,17 +199679,13 @@
Returns:
-

executable(executable, args)

+

runInsidePrefix(executable, argsopt, waitopt)

-
- set executable -
- @@ -194197,8 +199707,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -194214,13 +199728,30 @@
Parameters:
+ +string + + + + + + + + + + + + + + + - executable without path (e.g. "Steam.exe") + @@ -194232,13 +199763,73 @@
Parameters:
+ +array + + + + + + <optional>
+ + + + + - use array (e.g. ["-applaunch", 409160]) + + + + [] + + + + + + + + + + + + wait + + + + + +boolean + + + + + + + + + <optional>
+ + + + + + + + + + + + false + + + + + @@ -194279,7 +199870,7 @@
Parameters:
Source:
@@ -194315,19 +199906,72 @@
Parameters:
-

fontDirectory() → {string}

+ +
+ Sets the executable which shall be used +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
search + + +string + + The executable name
@@ -194363,7 +200007,7 @@

fontDire
Source:
@@ -194392,7 +200036,7 @@

Returns:
- font directory + The WineShortcut object
@@ -194403,7 +200047,7 @@
Returns:
-string +WineShortcut
@@ -194421,7 +200065,7 @@
Returns:
-

get() → {string}

+

stop() → {void}

@@ -194429,7 +200073,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Stops the running shortcut @@ -194473,7 +200117,109 @@

getSource:
+ + + + + + + +

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

system32directory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -194502,7 +200248,7 @@
Returns:
- The path leading to the downloaded resource + system32 directory
@@ -194531,17 +200277,13 @@
Returns:
-

get() → {String}

+

system64directory() → {string}

-
- Gets the content of the downloaded file -
- @@ -194583,7 +200325,7 @@

getSource:
@@ -194612,7 +200354,7 @@
Returns:
- The content of downloaded file + system64 directory
@@ -194623,7 +200365,7 @@
Returns:
-String +string
@@ -194641,7 +200383,7 @@
Returns:
-

get(resourceName) → {Resource}

+

to(localDestination) → {Downloader}

@@ -194649,7 +200391,7 @@

get - Returns the searched resource + Sets the download destination @@ -194685,7 +200427,7 @@
Parameters:
- resourceName + localDestination @@ -194701,7 +200443,7 @@
Parameters:
- The name of the resource + The destination of the download. If it is a directory, the file will be placed inside @@ -194742,7 +200484,7 @@
Parameters:
Source:
@@ -194771,7 +200513,7 @@
Returns:
- The found resource + The Downloader object
@@ -194782,7 +200524,7 @@
Returns:
-Resource +Downloader
@@ -194800,7 +200542,7 @@
Returns:
-

getContainer() → {string}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -194808,7 +200550,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the trust level
@@ -194819,6 +200561,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
trustLevel + + +string + + + + The trust level
+ + @@ -194852,7 +200643,7 @@

getContai
Source:
@@ -194881,7 +200672,7 @@

Returns:
- The container name + The WineShortcut object
@@ -194892,7 +200683,7 @@
Returns:
-string +WineShortcut
@@ -194910,7 +200701,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

trustLevel(trustlevel) → {QuickScript}

@@ -194918,7 +200709,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + set trust level
@@ -194954,7 +200745,7 @@

Parameters:
- setupFileName + trustlevel @@ -194970,7 +200761,7 @@
Parameters:
- The setup file name + @@ -195011,7 +200802,7 @@
Parameters:
Source:
@@ -195040,7 +200831,7 @@
Returns:
- This + QuickScript object
@@ -195051,7 +200842,7 @@
Returns:
-GogScript +QuickScript
@@ -195069,7 +200860,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

type(type) → {WineShortcut}

@@ -195077,7 +200868,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Sets the shortcut type
@@ -195113,13 +200904,13 @@

Parameters:
- setupFileNames + type -Array.<string> +string @@ -195129,7 +200920,7 @@
Parameters:
- The setup file name(s) + The shortcut type @@ -195170,7 +200961,7 @@
Parameters:
Source:
@@ -195199,7 +200990,7 @@
Returns:
- This + The WineShortcut object
@@ -195210,7 +201001,7 @@
Returns:
-GogScript +WineShortcut
@@ -195228,7 +201019,7 @@
Returns:
-

headers(headers) → {Downloader}

+

uninstall(name) → {bool}

@@ -195236,7 +201027,7 @@

headers - Sets the http headers + uninstall application @@ -195272,13 +201063,13 @@
Parameters:
- headers + name -Object +string @@ -195288,7 +201079,7 @@
Parameters:
- The http headers + of the application which shall be uninstalled @@ -195329,7 +201120,7 @@
Parameters:
Source:
@@ -195358,7 +201149,7 @@
Returns:
- The Downloader object + true if an application has been uninstalled, false otherwise
@@ -195369,7 +201160,7 @@
Returns:
-Downloader +bool
@@ -195387,7 +201178,7 @@
Returns:
-

json() → {any}

+

uninstall() → {void}

@@ -195395,7 +201186,7 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Uninstalls the shortcut @@ -195439,7 +201230,7 @@

jsonSource:
@@ -195467,10 +201258,6 @@

json - The json value - -
@@ -195479,7 +201266,7 @@
Returns:
-any +void
@@ -195497,7 +201284,7 @@
Returns:
-

kill() → {Wine}

+

url(url) → {Downloader}

@@ -195505,7 +201292,7 @@

kill - kill wine server + Sets the URL which shall be used for the download @@ -195516,6 +201303,55 @@

kill + + + + Name + + + Type + + + + + + Description + + + + + + + + + url + + + + + +string + + + + + + + + + + The URL + + + + + + + @@ -195549,7 +201385,7 @@

killSource:
@@ -195577,6 +201413,10 @@

kill + The Downloader object + +
@@ -195585,7 +201425,7 @@
Returns:
-Wine +Downloader
@@ -195603,7 +201443,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

url(url) → {Resource}

@@ -195611,8 +201451,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 resource URL
@@ -195648,13 +201487,13 @@

Parameters:
- setupWizard + url -SetupWizard +string @@ -195664,7 +201503,7 @@
Parameters:
- The setupWizard to use + The URL @@ -195705,7 +201544,7 @@
Parameters:
Source:
@@ -195734,7 +201573,7 @@
Returns:
- This + The Resource object
@@ -195745,7 +201584,7 @@
Returns:
-GogScript +Resource
@@ -195763,7 +201602,7 @@
Returns:
-

message(message) → {Downloader}

+

wait() → {Wine}

@@ -195771,7 +201610,7 @@

message - Sets the download message text + wait until wineserver finishes @@ -195782,55 +201621,6 @@

messageParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - @@ -195864,7 +201654,7 @@
Parameters:
Source:
@@ -195892,10 +201682,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -195904,7 +201690,7 @@
Returns:
-Downloader +Wine
@@ -195922,17 +201708,13 @@
Returns:
-

miniature(miniature) → {WineShortcut}

+

winepath(pathopt) → {String}

-
- Sets the miniature for the shortcut -
- @@ -195954,6 +201736,8 @@
Parameters:
Type + Attributes + @@ -195966,26 +201750,33 @@
Parameters:
- miniature + path -Array.<string> -| - -URI +String + + + <optional>
+ + + + + + + - An array which specifies the application of which the miniature shall be used or URI of the miniature + @@ -196026,7 +201817,7 @@
Parameters:
Source:
@@ -196054,10 +201845,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -196066,7 +201853,7 @@
Returns:
-WineShortcut +String
@@ -196084,7 +201871,7 @@
Returns:
-

miniature(miniatureopt)

+

wineServer(wineserver)

@@ -196092,7 +201879,7 @@

miniature - get/set miniature (for the installation and the shortcut) + executes wineserver in current prefix @@ -196116,8 +201903,6 @@
Parameters:
Type - Attributes - @@ -196130,33 +201915,183 @@
Parameters:
- miniature + wineserver -URI +string - - - <optional>
- + + + parameter + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +string + + + - + + + @@ -196197,7 +202132,7 @@
Parameters:
Source:
@@ -196222,6 +202157,28 @@
Parameters:
+
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + @@ -196233,7 +202190,7 @@
Parameters:
-

name(name) → {Resource}

+

withCpuCycles(cpuCycles) → {Dosbox}

@@ -196241,7 +202198,8 @@

name - Sets the resource name + Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D @@ -196277,13 +202235,13 @@
Parameters:

- + + @@ -196334,7 +202292,7 @@
Parameters:
Source:
@@ -196363,7 +202321,7 @@
Returns:
- The Resource object + This
@@ -196374,7 +202332,7 @@
Returns:
-Resource +Dosbox
@@ -196392,7 +202350,7 @@
Returns:
-

name(name) → {WineShortcut}

+

withDimensions(width, height) → {VirtualDesktop}

@@ -196400,7 +202358,7 @@

name - Sets the shortcut name + Specifies the dimensions of the virtual desktop @@ -196436,13 +202394,13 @@
Parameters:

- + + + + + + + + + + + + + + + + + + @@ -196493,7 +202474,7 @@
Parameters:
Source:
@@ -196522,7 +202503,7 @@
Returns:
- The WineShortcut object + This
@@ -196533,7 +202514,7 @@
Returns:
-WineShortcut +VirtualDesktop
@@ -196551,7 +202532,7 @@
Returns:
-

of(shortcut) → {void}

+

withDriver(driver) → {SoundDriver}

@@ -196559,7 +202540,7 @@

of - Sets shortcut + Specifies the used sound driver @@ -196595,7 +202576,7 @@
Parameters:

- + + @@ -196652,7 +202633,7 @@
Parameters:
Source:
@@ -196680,6 +202661,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -196688,7 +202673,7 @@
Returns:
-void +SoundDriver
@@ -196706,7 +202691,7 @@
Returns:
-

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

+

withExtension(extension) → {NativeApplication}

@@ -196714,7 +202699,7 @@

- Specifies if the download shall be executed only if a newer version is available + Specifies the file extension
@@ -196750,13 +202735,13 @@

Parameters:
- + + @@ -196807,7 +202792,7 @@
Parameters:
Source:
@@ -196836,7 +202821,7 @@
Returns:
- The Downloader object + This
@@ -196847,7 +202832,7 @@
Returns:
-Downloader +NativeApplication
@@ -196865,7 +202850,7 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

withHdpi(hdpi) → {HDPI}

@@ -196873,7 +202858,7 @@

prefix - Sets the shortcut prefix + Specifies whether hdpi should be enabled or not @@ -196909,13 +202894,13 @@
Parameters:

- + + @@ -196966,7 +202951,7 @@
Parameters:
Source:
@@ -196995,7 +202980,7 @@
Returns:
- The WineShortcut object + This
@@ -197006,7 +202991,7 @@
Returns:
-WineShortcut +HDPI
@@ -197024,13 +203009,17 @@
Returns:
-

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

+

withManaged(managed) → {Managed}

+
+ Specifies the global managed state +
+ @@ -197052,8 +203041,6 @@
Parameters:
- - @@ -197066,132 +203053,23 @@
Parameters:
- + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -197232,7 +203110,7 @@
Parameters:
Source:
@@ -197260,6 +203138,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -197268,10 +203150,7 @@
Returns:
-string -| - -Wine +Managed
@@ -197289,7 +203168,7 @@
Returns:
-

prefixDirectory() → {string}

+

withManagedApplication(application, managed) → {Managed}

@@ -197297,7 +203176,7 @@

prefix
- returns prefix directory + Specifies the managed state for a given application
@@ -197308,106 +203187,76 @@

prefix - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-
- - - - - - - - - - - - - - - -

Returns:
+
NameTypeDescription
application + +string + + + The application executable
os + - path to the miniature fileThe windows version
namecpuCycles -string +int @@ -196293,7 +202251,7 @@
Parameters:
-
The name of the resource(example: max 95% limit 33000)
namewidth -string +number @@ -196452,7 +202410,30 @@
Parameters:
-
The shortcut namewidth of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
shortcutdriver @@ -196611,7 +202592,7 @@
Parameters:
-
shortcutalsa or pulse
onlyIfUpdateAvailableextension -boolean +string @@ -196766,7 +202751,7 @@
Parameters:
-
true the download shall be executed only if a newer version is availableThe file extension (pdf, txt, rtf)
prefixhdpi -string +boolean @@ -196925,7 +202910,7 @@
Parameters:
-
The shortcut prefixtrue if hdpi shall be enabled
TypeAttributes
prefixmanaged -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string +boolean - - <optional>
- - - - - -
True if it shall be managed
+ + + + + -
-
- Type -
-
-string + -
-
+ + + + + + + + + - - + - -

programFiles() → {string}

- + + + + + + + + + + + - + + +
NameTypeDescription
application + + +string + + The application
managed + + +boolean + + True if the application shall be managed
@@ -197443,7 +203292,7 @@

programFi
Source:
@@ -197472,7 +203321,7 @@

Returns:
- name of "Program Files" + This
@@ -197483,7 +203332,7 @@
Returns:
-string +Managed
@@ -197501,7 +203350,7 @@
Returns:
-

run(userArguments) → {void}

+

withMemSize(memSize) → {Dosbox}

@@ -197509,7 +203358,8 @@

run - Runs a shortcut with the given user arguments + Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D @@ -197545,13 +203395,13 @@
Parameters:
- userArguments + memSize -array +int @@ -197561,7 +203411,7 @@
Parameters:
- The user arguments + The memory size @@ -197602,7 +203452,7 @@
Parameters:
Source:
@@ -197630,6 +203480,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -197638,7 +203492,7 @@
Returns:
-void +Dosbox
@@ -197656,13 +203510,17 @@
Returns:
-

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

+

withMode(mode) → {FontSmoothing}

+
+ Specifies the used font smoothing mode +
+ @@ -197684,12 +203542,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -197700,7 +203554,7 @@
Parameters:
- executable + mode @@ -197713,217 +203567,169 @@
Parameters:
- - - - - - - - - - - - - + "RGB", "BGR" or "Gray Scale" + + - - - args - - - - -array - - - - - - <optional>
- - +
- - - + - - - - [] - - - + - - + - - - workingDirectory - + - - - -string + + - - + - - - - <optional>
- + - + - - - + - - - - working container - - - + - - + +
Source:
+
+ - - - captureOutput - + + + +
+ - - - -boolean - - - - - - <optional>
- - - - - - - - - false - - - - - + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
- - - wait - - - - -boolean - - + - - - <optional>
- - + - - - + +

withMode(mode) → {GLSL}

+ - - - - false - - - + - - + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + - + - - - - - - + @@ -197964,7 +203770,7 @@
Parameters:
Source:
@@ -197993,7 +203799,7 @@
Returns:
- output + This
@@ -198004,7 +203810,7 @@
Returns:
-String +GLSL
@@ -198022,13 +203828,17 @@
Returns:
-

runInsidePrefix(executable, argsopt, waitopt)

+

withMode(mode) → {TakeFocus}

+
+ Specifies the mode +
+ @@ -198050,12 +203860,8 @@
Parameters:
- - - - @@ -198066,7 +203872,7 @@
Parameters:
- + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -198213,7 +203929,7 @@
Parameters:
Source:
@@ -198238,6 +203954,28 @@
Parameters:
+
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + @@ -198249,7 +203987,7 @@
Parameters:
- +

withMode(mode) → {DirectDrawRenderer}

@@ -198257,7 +203995,7 @@ - + + @@ -198350,7 +204088,7 @@
Parameters:
Source:
@@ -198379,7 +204117,7 @@
Returns:
- The WineShortcut object + This
@@ -198390,7 +204128,7 @@
Returns:
-WineShortcut +DirectDrawRenderer
@@ -198408,7 +204146,7 @@
Returns:
-

stop() → {void}

+

withRenderAspect(renderAspect) → {Dosbox}

@@ -198416,7 +204154,8 @@

stop - Stops the running shortcut + Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D @@ -198427,6 +204166,55 @@

stop +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
userDatamode -map +string - - <optional>
- - - - -
- - empty - - enabled or disabled
TypeAttributesDefaultDescription
executablemode @@ -198079,100 +203885,10 @@
Parameters:
- - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - - "Y" or "N"
searchmode @@ -198309,7 +204047,7 @@
Parameters:
-
The executable namegdi or opengl
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + @@ -198460,7 +204248,7 @@

stopSource:
@@ -198488,6 +204276,10 @@

stop + This + +
@@ -198496,7 +204288,7 @@
Returns:
-void +Dosbox
@@ -198514,13 +204306,17 @@
Returns:
-

system32directory() → {string}

+

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
@@ -198530,6 +204326,56 @@

syst +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + @@ -198562,7 +204408,7 @@

syst
Source:
@@ -198591,7 +204437,7 @@

Returns:
- system32 directory + This
@@ -198602,7 +204448,7 @@
Returns:
-string +Dosbox
@@ -198620,13 +204466,17 @@
Returns:
-

system64directory() → {string}

+

withScript(command) → {PlainInstaller}

+
+ Sets the installation script consisting of a lambda function +
+ @@ -198635,6 +204485,55 @@

syst +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
command + + +function + + + + The installation command
+ + @@ -198668,7 +204567,7 @@

syst
Source:
@@ -198697,7 +204596,7 @@

Returns:
- system64 directory + The PlainInstaller object
@@ -198708,7 +204607,7 @@
Returns:
-string +PlainInstaller
@@ -198726,7 +204625,7 @@
Returns:
-

to(localDestination) → {Downloader}

+

withSetting(key, value) → {Dosbox}

@@ -198734,7 +204633,7 @@

to - Sets the download destination + Sets a dosbox setting @@ -198770,7 +204669,7 @@
Parameters:
- localDestination + key @@ -198786,7 +204685,30 @@
Parameters:
- The destination of the download. If it is a directory, the file will be placed inside + The key of the setting (example dosbox_memsize) + + + + + + + value + + + + + +any + + + + + + + + + + The value to be set @@ -198827,7 +204749,7 @@
Parameters:
Source:
@@ -198856,7 +204778,7 @@
Returns:
- The Downloader object + This
@@ -198867,7 +204789,7 @@
Returns:
-Downloader +Dosbox
@@ -198885,7 +204807,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

withVersion(major, minor) → {OpenGL}

@@ -198893,7 +204815,7 @@

trustLevel<
- Sets the trust level + Specifies the major and minor versions
@@ -198929,13 +204851,13 @@

Parameters:
- trustLevel + major -string +number @@ -198945,7 +204867,30 @@
Parameters:
- The trust level + The major version + + + + + + + minor + + + + + +number + + + + + + + + + + The minor version @@ -198986,7 +204931,7 @@
Parameters:
Source:
@@ -199015,7 +204960,7 @@
Returns:
- The WineShortcut object + This
@@ -199026,7 +204971,7 @@
Returns:
-WineShortcut +OpenGL
@@ -199044,7 +204989,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

withWindowsVersion(version, servicePack) → {WindowsVersion}

@@ -199052,7 +204997,7 @@

trustLevel<
- set trust level + Specifies the default windows version
@@ -199088,7 +205033,7 @@

Parameters:
- trustlevel + version @@ -199104,7 +205049,30 @@
Parameters:
- + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31 + + + + + + + servicePack + + + + + +string + + + + + + + + + + e.g. sp3 @@ -199145,7 +205113,7 @@
Parameters:
Source:
@@ -199174,7 +205142,7 @@
Returns:
- QuickScript object + This
@@ -199185,7 +205153,7 @@
Returns:
-QuickScript +WindowsVersion
@@ -199203,7 +205171,7 @@
Returns:
-

type(type) → {WineShortcut}

+

wizard(wizard) → {Resource}

@@ -199211,7 +205179,7 @@

type - Sets the shortcut type + Sets the setup wizard @@ -199247,13 +205215,13 @@
Parameters:
- type + wizard -string +SetupWizard @@ -199263,7 +205231,7 @@
Parameters:
- The shortcut type + The setup wizard @@ -199304,7 +205272,7 @@
Parameters:
Source:
@@ -199333,7 +205301,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -199344,7 +205312,7 @@
Returns:
-WineShortcut +Resource
@@ -199362,17 +205330,13 @@
Returns:
-

uninstall(name) → {bool}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- uninstall application -
- @@ -199394,6 +205358,8 @@
Parameters:
Type + Attributes + @@ -199406,23 +205372,33 @@
Parameters:
- name + wizard -string +SetupWizard + + + <optional>
+ + + + + + + - of the application which shall be uninstalled + @@ -199463,7 +205439,7 @@
Parameters:
Source:
@@ -199491,10 +205467,6 @@
Parameters:
Returns:
-
- true if an application has been uninstalled, false otherwise -
-
@@ -199503,7 +205475,10 @@
Returns:
-bool +SetupWizard +| + +Wine
@@ -199521,7 +205496,7 @@
Returns:
-

uninstall() → {void}

+

wizard(wizard) → {Downloader}

@@ -199529,7 +205504,7 @@

uninstall - Uninstalls the shortcut + Sets the setup wizard @@ -199540,6 +205515,55 @@

uninstallParameters:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wizard + + +SetupWizard + + + + The setup wizard
+ + @@ -199573,7 +205597,7 @@

uninstallSource:
@@ -199601,6 +205625,10 @@

uninstallReturns:

+
+ The Downloader object +
+
@@ -199609,7 +205637,7 @@
Returns:
-void +Downloader
@@ -199622,12 +205650,147 @@
Returns:
+ + + + + +

+ +
+ + + + + + + +
+ +
+ +

default()

+ +
Setting to configure mouse warp override
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new default()

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

Methods

+ + -

url(url) → {Downloader}

+

_createShortcut(prefixopt)

@@ -199635,7 +205798,7 @@

url - Sets the URL which shall be used for the download + creates shortcut @@ -199659,6 +205822,8 @@
Parameters:
Type + Attributes + @@ -199671,7 +205836,7 @@
Parameters:
- url + prefix @@ -199684,10 +205849,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The URL + prefix name @@ -199728,7 +205903,7 @@
Parameters:
Source:
@@ -199753,28 +205928,6 @@
Parameters:
-
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - @@ -199786,7 +205939,7 @@
Returns:
-

url(url) → {Resource}

+

_fetchFileNameFromUrl(url) → {string}

@@ -199794,7 +205947,7 @@

url - Sets the resource URL + Fetches the file name from an URL @@ -199887,7 +206040,7 @@
Parameters:
Source:
@@ -199916,7 +206069,7 @@
Returns:
- The Resource object + The file name
@@ -199927,7 +206080,7 @@
Returns:
-Resource +string
@@ -199945,7 +206098,7 @@
Returns:
-

wait() → {Wine}

+

algorithm(algorithm) → {Downloader}

@@ -199953,7 +206106,7 @@

wait - wait until wineserver finishes + Sets the algorithm which shall be used to verify the checksum @@ -199964,6 +206117,55 @@

wait + + + + Name + + + Type + + + + + + Description + + + + + + + + + algorithm + + + + + +string + + + + + + + + + + The checksum algorithm (e.g. "SHA") + + + + + + + @@ -199997,7 +206199,7 @@

waitSource:
@@ -200025,6 +206227,10 @@

wait + The Downloader object + +
@@ -200033,7 +206239,7 @@
Returns:
-Wine +Downloader
@@ -200051,13 +206257,17 @@
Returns:
-

winepath(pathopt) → {String}

+

algorithm(algorithm) → {Resource}

+
+ Sets the checksum algorithm +
+ @@ -200079,8 +206289,6 @@
Parameters:
Type - Attributes - @@ -200093,33 +206301,23 @@
Parameters:
- path + algorithm -String +string - - - <optional>
- - - - - - - - + The algorithm to verify the checksum (e.g. "SHA") @@ -200160,7 +206358,7 @@
Parameters:
Source:
@@ -200188,6 +206386,10 @@
Parameters:
Returns:
+
+ The Resource object +
+
@@ -200196,7 +206398,7 @@
Returns:
-String +Resource
@@ -200214,7 +206416,7 @@
Returns:
-

wineServer(wineserver)

+

application(application) → {AppResource}

@@ -200222,7 +206424,7 @@

wineServer<
- executes wineserver in current prefix + Sets the application containing the resources
@@ -200258,7 +206460,7 @@

Parameters:
- wineserver + application @@ -200274,7 +206476,7 @@
Parameters:
- parameter + The application with the resource @@ -200315,7 +206517,7 @@
Parameters:
Source:
@@ -200340,83 +206542,52 @@
Parameters:
- - - - +
Returns:
- - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function +
+ The AppResource object
+
+
+ Type +
+
+ +AppResource +
+
+ -
Parameters:
- - - - - - - - - + - + - - - + +

architecture() → {string}

+ - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - The installation command
+ @@ -200452,7 +206623,7 @@
Parameters:
Source:
@@ -200481,7 +206652,7 @@
Returns:
- The PlainInstaller object + architecture ("x86" or "amd64")
@@ -200492,7 +206663,7 @@
Returns:
-PlainInstaller +string
@@ -200510,7 +206681,7 @@
Returns:
-

wizard(wizard) → {Resource}

+

arguments(args) → {WineShortcut}

@@ -200518,7 +206689,7 @@

wizard - Sets the setup wizard + Sets the shortcut arguments

@@ -200554,13 +206725,13 @@
Parameters:
- wizard + args -SetupWizard +array @@ -200570,7 +206741,7 @@
Parameters:
- The setup wizard + The shortcut arguments @@ -200611,7 +206782,7 @@
Parameters:
Source:
@@ -200640,7 +206811,7 @@
Returns:
- The Resource object + The WineShortcut object
@@ -200651,7 +206822,7 @@
Returns:
-Resource +WineShortcut
@@ -200669,17 +206840,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

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

-
- Sets the setup wizard -
- @@ -200701,8 +206868,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -200713,23 +206884,39 @@
Parameters:
- wizard + architecture -SetupWizard +string + + + <optional>
+ + + + + + + + + + current architecture + + + - The setup wizard + @@ -200770,7 +206957,7 @@
Parameters:
Source:
@@ -200798,10 +206985,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -200810,7 +206993,7 @@
Returns:
-Downloader +Array.<string>
@@ -200828,7 +207011,7 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

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

@@ -200860,6 +207043,8 @@
Parameters:
+ Default + Description @@ -200870,13 +207055,13 @@
Parameters:
- wizard + distribution name -SetupWizard +string @@ -200895,6 +207080,12 @@
Parameters:
+ + + current distribution + + + @@ -200937,7 +207128,7 @@
Parameters:
Source:
@@ -200973,10 +207164,7 @@
Returns:
-SetupWizard -| - -Wine +Array.<string>
@@ -200989,147 +207177,12 @@
Returns:
- - - - - -

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

default()

- -
Tool to uninstall Wine
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

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

Methods

- - -

_createShortcut(prefixopt)

+

binPath(subCategoryopt, versionopt) → {string}

@@ -201137,7 +207190,8 @@

_creat
- creates shortcut + returns the path to the engine binary directory +if no parameters are given, the Wine version of the current prefix is used
@@ -201175,7 +207229,7 @@

Parameters:
- prefix + subCategory @@ -201201,7 +207255,40 @@
Parameters:
- prefix name + Wine sub-category + + + + + + + version + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + Wine version @@ -201242,7 +207329,7 @@
Parameters:
Source:
@@ -201267,6 +207354,28 @@
Parameters:
+
Returns:
+ + +
+ path to "wine" binary +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -201278,7 +207387,7 @@
Parameters:
-

_fetchFileNameFromUrl(url) → {string}

+

category(category) → {WineShortcut}

@@ -201286,7 +207395,7 @@

- Fetches the file name from an URL + Sets the shortcut category
@@ -201322,7 +207431,7 @@

Parameters:
- url + category @@ -201338,7 +207447,7 @@
Parameters:
- The URL + The shortcut category @@ -201379,7 +207488,7 @@
Parameters:
Source:
@@ -201408,7 +207517,7 @@
Returns:
- The file name + The WineShortcut object
@@ -201419,7 +207528,7 @@
Returns:
-string +WineShortcut
@@ -201437,7 +207546,7 @@
Returns:
-

algorithm(algorithm) → {Resource}

+

checksum(checksum) → {Resource}

@@ -201445,7 +207554,7 @@

algorithm - Sets the checksum algorithm + Sets the checksum which shall be used to verify the resource @@ -201481,7 +207590,7 @@
Parameters:
- algorithm + checksum @@ -201497,7 +207606,7 @@
Parameters:
- The algorithm to verify the checksum (e.g. "SHA") + The checksum @@ -201538,7 +207647,7 @@
Parameters:
Source:
@@ -201596,7 +207705,7 @@
Returns:
-

algorithm(algorithm) → {Downloader}

+

checksum(checksum) → {Downloader}

@@ -201604,7 +207713,7 @@

algorithm - Sets the algorithm which shall be used to verify the checksum + Sets the checksum @@ -201640,7 +207749,7 @@
Parameters:
- algorithm + checksum @@ -201656,7 +207765,7 @@
Parameters:
- The checksum algorithm (e.g. "SHA") + The checksum which shall be used to verify the download @@ -201697,7 +207806,7 @@
Parameters:
Source:
@@ -201755,7 +207864,7 @@
Returns:
-

application(application) → {AppResource}

+

create() → {void}

@@ -201763,7 +207872,7 @@

applicatio
- Sets the application containing the resources + Creates a new shortcut
@@ -201774,55 +207883,6 @@

applicatio -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - @@ -201856,7 +207916,7 @@
Parameters:
Source:
@@ -201884,10 +207944,6 @@
Parameters:
Returns:
-
- The AppResource object -
-
@@ -201896,7 +207952,7 @@
Returns:
-AppResource +void
@@ -201914,13 +207970,17 @@
Returns:
-

architecture() → {string}

+

create() → {Wine}

+
+ runs "wineboot" +
+ @@ -201962,7 +208022,7 @@

architect
Source:
@@ -201991,7 +208051,7 @@

Returns:
- architecture ("x86" or "amd64") + The Wine object
@@ -202002,7 +208062,7 @@
Returns:
-string +Wine
@@ -202020,7 +208080,7 @@
Returns:
-

arguments(args) → {WineShortcut}

+

description(description) → {WineShortcut}

@@ -202028,7 +208088,7 @@

arguments - Sets the shortcut arguments + Sets the shortcut description @@ -202064,13 +208124,13 @@
Parameters:
- args + description -array +string @@ -202080,7 +208140,7 @@
Parameters:
- The shortcut arguments + The shortcut description @@ -202121,7 +208181,7 @@
Parameters:
Source:
@@ -202179,13 +208239,17 @@
Returns:
-

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

+

directory(directory) → {Resource}

+
+ Sets the directory inside the resources directory where the Resource is stored +
+ @@ -202207,12 +208271,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -202223,7 +208283,7 @@
Parameters:
- architecture + directory @@ -202236,26 +208296,10 @@
Parameters:
- - - <optional>
- - - - - - - - - - current architecture - - - - + The directory path @@ -202296,7 +208340,7 @@
Parameters:
Source:
@@ -202324,6 +208368,10 @@
Parameters:
Returns:
+
+ The Resource object +
+
@@ -202332,7 +208380,7 @@
Returns:
-Array.<string> +Resource
@@ -202350,88 +208398,23 @@
Returns:
-

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

- - - - - - - - - - - - - - -
Parameters:
+

dosConfigFile() → {string}

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string +
+ Fetch the prefix dosbox configuration file +
- -
- - <optional>
- - - -
- - current distribution - -
@@ -202467,7 +208450,7 @@
Parameters:
Source:
@@ -202495,6 +208478,10 @@
Parameters:
Returns:
+
+ The dosbox configuration file path +
+
@@ -202503,7 +208490,7 @@
Returns:
-Array.<string> +string
@@ -202521,7 +208508,7 @@
Returns:
-

binPath(subCategoryopt, versionopt) → {string}

+

download(setupWizard) → {String}

@@ -202529,8 +208516,7 @@

binPath - returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used + Download the setup resources in the same directory, and returns the path of the .exe @@ -202554,8 +208540,6 @@
Parameters:
Type - Attributes - @@ -202568,66 +208552,23 @@
Parameters:
- subCategory - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - Wine sub-category - - - - - - - version + setupWizard -string +SetupWizard - - - <optional>
- - - - - - - - Wine version + The setup wizard @@ -202668,7 +208609,7 @@
Parameters:
Source:
@@ -202697,7 +208638,7 @@
Returns:
- path to "wine" binary + The .exe file entry that can be used to continue the installation
@@ -202708,7 +208649,7 @@
Returns:
-string +String
@@ -202726,7 +208667,7 @@
Returns:
-

category(category) → {WineShortcut}

+

downloadFinished(wine) → {boolean}

@@ -202734,7 +208675,8 @@

category - Sets the shortcut category + Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first @@ -202770,13 +208712,13 @@
Parameters:
- category + wine -string +Wine @@ -202786,7 +208728,7 @@
Parameters:
- The shortcut category + The wine engine object @@ -202827,7 +208769,7 @@
Parameters:
Source:
@@ -202856,7 +208798,7 @@
Returns:
- The WineShortcut object + True if the download has finished, false otherwise
@@ -202867,7 +208809,7 @@
Returns:
-WineShortcut +boolean
@@ -202885,7 +208827,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

downloadStarted(wine) → {boolean}

@@ -202893,7 +208835,7 @@

checksum - Sets the checksum + Checks whether the software download has started @@ -202929,13 +208871,13 @@
Parameters:
- checksum + wine -string +Wine @@ -202945,7 +208887,7 @@
Parameters:
- The checksum which shall be used to verify the download + The wine engine object @@ -202986,7 +208928,7 @@
Parameters:
Source:
@@ -203015,7 +208957,7 @@
Returns:
- The Downloader object + True if the download has started, false otherwise
@@ -203026,7 +208968,7 @@
Returns:
-Downloader +boolean
@@ -203044,7 +208986,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

environment(environment) → {WineShortcut}

@@ -203052,7 +208994,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the shortcut environment variables @@ -203088,7 +209030,7 @@
Parameters:
- checksum + environment @@ -203104,7 +209046,7 @@
Parameters:
- The checksum + The environment variables @@ -203145,117 +209087,7 @@
Parameters:
Source:
- - - - - - - -

- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
@@ -203284,7 +209116,7 @@
Returns:
- The Wine object + The WineShortcut object
@@ -203295,113 +209127,7 @@
Returns:
-Wine - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void +WineShortcut
@@ -203419,7 +209145,7 @@
Returns:
-

description(description) → {WineShortcut}

+

environment(environment) → {QuickScript}

@@ -203427,7 +209153,7 @@

descriptio
- Sets the shortcut description + set environment
@@ -203463,7 +209189,7 @@

Parameters:
- description + environment @@ -203479,7 +209205,7 @@
Parameters:
- The shortcut description + variables @@ -203520,7 +209246,7 @@
Parameters:
Source:
@@ -203549,7 +209275,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -203560,7 +209286,7 @@
Returns:
-WineShortcut +QuickScript
@@ -203578,7 +209304,7 @@
Returns:
-

directory(directory) → {Resource}

+

executable(executable, args)

@@ -203586,7 +209312,7 @@

directory - Sets the directory inside the resources directory where the Resource is stored + set executable @@ -203622,23 +209348,36 @@
Parameters:
- directory + executable - -string + + + + executable without path (e.g. "Steam.exe") + + + + + + + args + + + + - The directory path + use array (e.g. ["-applaunch", 409160]) @@ -203679,7 +209418,7 @@
Parameters:
Source:
@@ -203704,28 +209443,6 @@
Parameters:
-
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - @@ -203737,16 +209454,13 @@
Returns:
-

download(setupWizard) → {String}

+

fontDirectory() → {string}

-
- Download the setup resources in the same directory, and returns the path of the .exe -
@@ -203756,56 +209470,6 @@

downloadParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - @@ -203838,7 +209502,7 @@
Parameters:
Source:
@@ -203867,7 +209531,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + font directory
@@ -203878,7 +209542,7 @@
Returns:
-String +string
@@ -203896,7 +209560,7 @@
Returns:
-

environment(environment) → {WineShortcut}

+

get(resourceName) → {Resource}

@@ -203904,7 +209568,7 @@

environmen
- Sets the shortcut environment variables + Returns the searched resource
@@ -203940,7 +209604,7 @@

Parameters:
- environment + resourceName @@ -203956,7 +209620,7 @@
Parameters:
- The environment variables + The name of the resource @@ -203997,7 +209661,7 @@
Parameters:
Source:
@@ -204026,7 +209690,7 @@
Returns:
- The WineShortcut object + The found resource
@@ -204037,7 +209701,7 @@
Returns:
-WineShortcut +Resource
@@ -204055,7 +209719,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

get() → {String}

@@ -204063,7 +209727,7 @@

environmen
- set environment + Gets the content of the downloaded file
@@ -204074,55 +209738,6 @@

environmen -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - @@ -204156,7 +209771,7 @@
Parameters:
Source:
@@ -204185,7 +209800,7 @@
Returns:
- QuickScript object + The content of downloaded file
@@ -204196,7 +209811,7 @@
Returns:
-QuickScript +String
@@ -204214,7 +209829,7 @@
Returns:
-

executable(executable, args)

+

get() → {string}

@@ -204222,7 +209837,7 @@

executable<
- set executable + Fetches the Resource and returns the path leading to the downloaded resource
@@ -204233,68 +209848,6 @@

executable< -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - @@ -204328,7 +209881,7 @@
Parameters:
Source:
@@ -204353,6 +209906,28 @@
Parameters:
+
Returns:
+ + +
+ The path leading to the downloaded resource +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -204364,13 +209939,17 @@
Parameters:
-

fontDirectory() → {string}

+

getContainer() → {string}

+
+ Returns the name of the container belonging to a shortcut +
+ @@ -204412,7 +209991,7 @@

fontDire
Source:
@@ -204441,7 +210020,7 @@

Returns:
- font directory + The container name
@@ -204470,7 +210049,7 @@
Returns:
-

get() → {string}

+

getSettings() → {object}

@@ -204478,7 +210057,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Fetch all prefix dosbox sttings @@ -204522,7 +210101,7 @@

getSource:
@@ -204551,7 +210130,7 @@
Returns:
- The path leading to the downloaded resource + All the settings
@@ -204562,9 +210141,168 @@
Returns:
+object + + +
+

+ + + + + + + + + + + + + +

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 + +
@@ -204580,7 +210318,7 @@
Returns:
-

get() → {String}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -204588,7 +210326,7 @@

get - Gets the content of the downloaded file + Sets the setup file(s) name so that the script can fetch it from gog.com @@ -204599,6 +210337,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileNames + + + + + +Array.<string> + + + + + + + + + + The setup file name(s) + + + + + + + @@ -204632,7 +210419,7 @@

getSource:
@@ -204661,7 +210448,7 @@
Returns:
- The content of downloaded file + This
@@ -204672,7 +210459,7 @@
Returns:
-String +GogScript
@@ -204690,7 +210477,7 @@
Returns:
-

get(resourceName) → {Resource}

+

headers(headers) → {Downloader}

@@ -204698,7 +210485,7 @@

get - Returns the searched resource + Sets the http headers @@ -204734,13 +210521,13 @@
Parameters:
- resourceName + headers -string +Object @@ -204750,7 +210537,7 @@
Parameters:
- The name of the resource + The http headers @@ -204791,7 +210578,7 @@
Parameters:
Source:
@@ -204820,7 +210607,7 @@
Returns:
- The found resource + The Downloader object
@@ -204831,7 +210618,7 @@
Returns:
-Resource +Downloader
@@ -204849,7 +210636,7 @@
Returns:
-

getContainer() → {string}

+

isHdpi() → {boolean}

@@ -204857,7 +210644,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Fetches whether hdpi is enabled or not
@@ -204901,7 +210688,7 @@

getContai
Source:
@@ -204930,7 +210717,7 @@

Returns:
- The container name + True if hdpi is enabled, false otherwise
@@ -204941,7 +210728,7 @@
Returns:
-string +boolean
@@ -204959,7 +210746,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

json() → {any}

@@ -204967,7 +210754,7 @@

gogSe
- Sets one setup file 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
@@ -204978,55 +210765,6 @@

gogSe -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - @@ -205060,7 +210798,7 @@
Parameters:
Source:
@@ -205089,7 +210827,7 @@
Returns:
- This + The json value
@@ -205100,7 +210838,7 @@
Returns:
-GogScript +any
@@ -205118,7 +210856,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

kill() → {Wine}

@@ -205126,7 +210864,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + kill wine server
@@ -205137,55 +210875,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -205219,7 +210908,7 @@
Parameters:
Source:
@@ -205247,10 +210936,6 @@
Parameters:
Returns:
-
- This -
-
@@ -205259,7 +210944,7 @@
Returns:
-GogScript +Wine
@@ -205277,7 +210962,7 @@
Returns:
-

headers(headers) → {Downloader}

+

loginToGog(setupWizard) → {GogScript}

@@ -205285,7 +210970,8 @@

headers - Sets the http headers + 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 @@ -205321,13 +211007,13 @@
Parameters:
- headers + setupWizard -Object +SetupWizard @@ -205337,7 +211023,7 @@
Parameters:
- The http headers + The setupWizard to use @@ -205378,7 +211064,7 @@
Parameters:
Source:
@@ -205407,7 +211093,7 @@
Returns:
- The Downloader object + This
@@ -205418,7 +211104,7 @@
Returns:
-Downloader +GogScript
@@ -205436,7 +211122,7 @@
Returns:
-

json() → {any}

+

message(message) → {Downloader}

@@ -205444,7 +211130,7 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Sets the download message text @@ -205455,114 +211141,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
message + + +string + + The download message
@@ -205598,7 +211223,7 @@

killSource:
@@ -205626,6 +211251,10 @@

kill + The Downloader object + +
@@ -205634,7 +211263,7 @@
Returns:
-Wine +Downloader
@@ -205652,7 +211281,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

miniature(miniatureopt)

@@ -205660,8 +211289,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 + get/set miniature (for the installation and the shortcut)
@@ -205685,6 +211313,8 @@

Parameters:
Type + Attributes + @@ -205697,23 +211327,33 @@
Parameters:
- setupWizard + miniature -SetupWizard +URI + + + <optional>
+ + + + + + + - The setupWizard to use + path to the miniature file @@ -205754,7 +211394,147 @@
Parameters:
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:
+
@@ -205783,7 +211563,7 @@
Returns:
- This + The WineShortcut object
@@ -205794,7 +211574,7 @@
Returns:
-GogScript +WineShortcut
@@ -205812,7 +211592,7 @@
Returns:
-

message(message) → {Downloader}

+

name(name) → {Resource}

@@ -205820,7 +211600,7 @@

message - Sets the download message text + Sets the resource name @@ -205856,7 +211636,7 @@
Parameters:
- message + name @@ -205872,7 +211652,7 @@
Parameters:
- The download message + The name of the resource @@ -205913,7 +211693,7 @@
Parameters:
Source:
@@ -205942,7 +211722,7 @@
Returns:
- The Downloader object + The Resource object
@@ -205953,7 +211733,7 @@
Returns:
-Downloader +Resource
@@ -205971,7 +211751,7 @@
Returns:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {WineShortcut}

@@ -205979,7 +211759,7 @@

miniature - Sets the miniature for the shortcut + Sets the shortcut name @@ -206015,16 +211795,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -206034,7 +211811,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The shortcut name @@ -206075,7 +211852,7 @@
Parameters:
Source:
@@ -206133,7 +211910,7 @@
Returns:
-

miniature(miniatureopt)

+

of(shortcut) → {void}

@@ -206141,7 +211918,7 @@

miniature - get/set miniature (for the installation and the shortcut) + Sets shortcut @@ -206165,8 +211942,6 @@
Parameters:
Type - Attributes - @@ -206179,33 +211954,23 @@
Parameters:
- miniature + shortcut -URI +string - - - <optional>
- - - - - - - - path to the miniature file + shortcut @@ -206246,7 +212011,7 @@
Parameters:
Source:
@@ -206271,6 +212036,24 @@
Parameters:
+
Returns:
+ + + + +
+
+ Type +
+
+ +void + + +
+
+ + @@ -206282,7 +212065,7 @@
Parameters:
-

name(name) → {Resource}

+

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

@@ -206290,7 +212073,7 @@

name - Sets the resource name + Specifies if the download shall be executed only if a newer version is available @@ -206326,13 +212109,13 @@
Parameters:
- name + onlyIfUpdateAvailable -string +boolean @@ -206342,7 +212125,7 @@
Parameters:
- The name of the resource + true the download shall be executed only if a newer version is available @@ -206383,7 +212166,7 @@
Parameters:
Source:
@@ -206412,7 +212195,7 @@
Returns:
- The Resource object + The Downloader object
@@ -206423,7 +212206,7 @@
Returns:
-Resource +Downloader
@@ -206441,17 +212224,13 @@
Returns:
-

name(name) → {WineShortcut}

+

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

-
- Sets the shortcut name -
- @@ -206473,6 +212252,8 @@
Parameters:
Type + Attributes + @@ -206485,7 +212266,7 @@
Parameters:
- name + prefix @@ -206498,10 +212279,119 @@
Parameters:
+ + + <optional>
+ + + + + + + - The shortcut name + + + + + + + + distribution + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + + + + + + + + architecture + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + + + + + + + + version + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + @@ -206542,7 +212432,7 @@
Parameters:
Source:
@@ -206570,10 +212460,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -206582,7 +212468,10 @@
Returns:
-WineShortcut +string +| + +Wine
@@ -206600,7 +212489,7 @@
Returns:
-

of(shortcut) → {void}

+

prefix(prefix) → {WineShortcut}

@@ -206608,7 +212497,7 @@

of - Sets shortcut + Sets the shortcut prefix @@ -206644,7 +212533,7 @@
Parameters:
- shortcut + prefix @@ -206660,7 +212549,7 @@
Parameters:
- shortcut + The shortcut prefix @@ -206701,7 +212590,7 @@
Parameters:
Source:
@@ -206729,6 +212618,10 @@
Parameters:
Returns:
+
+ The WineShortcut object +
+
@@ -206737,7 +212630,7 @@
Returns:
-void +WineShortcut
@@ -206755,7 +212648,7 @@
Returns:
-

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

+

prefixDirectory() → {string}

@@ -206763,7 +212656,7 @@

- Specifies if the download shall be executed only if a newer version is available + returns prefix directory
@@ -206774,55 +212667,6 @@

-

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - @@ -206856,7 +212700,7 @@
Parameters:
Source:
@@ -206884,10 +212728,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -206896,7 +212736,7 @@
Returns:
-Downloader +string
@@ -206914,17 +212754,13 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

programFiles() → {string}

-
- Sets the shortcut prefix -
- @@ -206933,60 +212769,11 @@

prefixParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
+
@@ -207015,7 +212802,7 @@
Parameters:
Source:
@@ -207044,7 +212831,7 @@
Returns:
- The WineShortcut object + name of "Program Files"
@@ -207055,7 +212842,7 @@
Returns:
-WineShortcut +string
@@ -207073,7 +212860,7 @@
Returns:
-

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

+

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

@@ -207105,6 +212892,8 @@
Parameters:
+ Default + Description @@ -207115,7 +212904,7 @@
Parameters:
- prefix + executable @@ -207130,8 +212919,6 @@
Parameters:
- <optional>
- @@ -207140,6 +212927,10 @@
Parameters:
+ + + + @@ -207148,13 +212939,13 @@
Parameters:
- distribution + args -string +array @@ -207173,6 +212964,12 @@
Parameters:
+ + + [] + + + @@ -207181,7 +212978,7 @@
Parameters:
- architecture + workingDirectory @@ -207206,6 +213003,12 @@
Parameters:
+ + + working container + + + @@ -207214,13 +213017,13 @@
Parameters:
- version + captureOutput -string +boolean @@ -207239,224 +213042,97 @@
Parameters:
+ + + false + + + - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - + + + wait - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - + + + +boolean - - + + - + + + + <optional>
+ - + - -
Source:
-
- + + + - + + + + false + + + - + + -
- - - - - - - + + + userData + + + + +map + + + + + + <optional>
+ + - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - + + - + + + + empty + + + - -

programFiles() → {string}

- + + - - - - - - - - - + + @@ -207492,7 +213168,7 @@

programFi
Source:
@@ -207521,7 +213197,7 @@

Returns:
- name of "Program Files" + output
@@ -207532,7 +213208,7 @@
Returns:
-string +String
@@ -207705,373 +213381,7 @@
Returns:
-

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 - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

+

runInsidePrefix(executable, argsopt, waitopt)

@@ -209994,7 +215304,7 @@
Returns:
-

wait() → {Wine}

+

wait() → {Wine}

@@ -210082,7 +215392,7 @@
Returns:
-Wine +Wine
@@ -210400,7 +215710,7 @@
Parameters:
-

withScript(command) → {PlainInstaller}

+

withApplicationWindowsVersion(application, os) → {WindowsVersion}

@@ -210408,7 +215718,7 @@

withScript<
- Sets the installation script consisting of a lambda function + Specifies the windows version for a given application
@@ -210444,13 +215754,13 @@

Parameters:
- command + application -function +string @@ -210460,7 +215770,30 @@
Parameters:
- The installation command + The application executable + + + + + + + os + + + + + +string + + + + + + + + + + The windows version @@ -210501,7 +215834,7 @@
Parameters:
Source:
@@ -210530,7 +215863,7 @@
Returns:
- The PlainInstaller object + This
@@ -210541,7 +215874,7 @@
Returns:
-PlainInstaller +WindowsVersion
@@ -210559,7 +215892,7 @@
Returns:
-

wizard(wizard) → {Resource}

+

withCpuCycles(cpuCycles) → {Dosbox}

@@ -210567,7 +215900,8 @@

wizard - Sets the setup wizard + Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D @@ -210603,13 +215937,13 @@
Parameters:
- wizard + cpuCycles -SetupWizard +int @@ -210619,7 +215953,7 @@
Parameters:
- The setup wizard + (example: max 95% limit 33000) @@ -210660,7 +215994,7 @@
Parameters:
Source:
@@ -210689,7 +216023,7 @@
Returns:
- The Resource object + This
@@ -210700,7 +216034,7 @@
Returns:
-Resource +Dosbox
@@ -210718,7 +216052,7 @@
Returns:
-

wizard(wizard) → {Downloader}

+

withDimensions(width, height) → {VirtualDesktop}

@@ -210726,7 +216060,7 @@

wizard - Sets the setup wizard + Specifies the dimensions of the virtual desktop @@ -210762,13 +216096,13 @@
Parameters:
- wizard + width -SetupWizard +number @@ -210778,7 +216112,30 @@
Parameters:
- The setup wizard + width of virtual desktop (in px) + + + + + + + height + + + + + +number + + + + + + + + + + height of virtual desktop (in px) @@ -210819,7 +216176,7 @@
Parameters:
Source:
@@ -210848,7 +216205,7 @@
Returns:
- The Downloader object + This
@@ -210859,7 +216216,7 @@
Returns:
-Downloader +VirtualDesktop
@@ -210877,13 +216234,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

withDriver(driver) → {SoundDriver}

+
+ Specifies the used sound driver +
+ @@ -210905,8 +216266,6 @@
Parameters:
Type - Attributes - @@ -210919,33 +216278,23 @@
Parameters:
- wizard + driver -SetupWizard +string - - - <optional>
- - - - - - - - + alsa or pulse @@ -210986,7 +216335,7 @@
Parameters:
Source:
@@ -211014,6 +216363,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -211022,10 +216375,7 @@
Returns:
-SetupWizard -| - -Wine +SoundDriver
@@ -211038,55 +216388,77 @@
Returns:
+ + +

withExtension(extension) → {NativeApplication}

+ -

-
+
+ Specifies the file extension +
-
-
+ + + +
Parameters:
-

default()

+ + + + -
Tool to open a terminal in a Wine prefix
+ - - -
-
- +
+ - -

Constructor

- + - -

new default()

- + + + + + + + + + + + + + - + + +
NameTypeDescription
extension + + +string + + The file extension (pdf, txt, rtf)
@@ -211122,7 +216494,7 @@

new defaultSource:
@@ -211147,30 +216519,32 @@

new defaultReturns:

+ +
+ This +
+
+
+ Type +
+
+ +NativeApplication - - - - - - - +
+
- - - - -

Methods

@@ -211178,7 +216552,7 @@

Methods

-

_createShortcut(prefixopt)

+

withHdpi(hdpi) → {HDPI}

@@ -211186,7 +216560,7 @@

_creat
- creates shortcut + Specifies whether hdpi should be enabled or not
@@ -211210,8 +216584,6 @@

Parameters:
Type - Attributes - @@ -211224,33 +216596,23 @@
Parameters:
- prefix + hdpi -string +boolean - - - <optional>
- - - - - - - - prefix name + true if hdpi shall be enabled @@ -211291,7 +216653,7 @@
Parameters:
Source:
@@ -211316,6 +216678,28 @@
Parameters:
+
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + @@ -211327,7 +216711,7 @@
Parameters:
-

_fetchFileNameFromUrl(url) → {string}

+

withManaged(managed) → {Managed}

@@ -211335,7 +216719,7 @@

- Fetches the file name from an URL + Specifies the global managed state
@@ -211371,13 +216755,13 @@

Parameters:
- url + managed -string +boolean @@ -211387,7 +216771,7 @@
Parameters:
- The URL + True if it shall be managed @@ -211428,7 +216812,7 @@
Parameters:
Source:
@@ -211457,7 +216841,7 @@
Returns:
- The file name + This
@@ -211468,7 +216852,7 @@
Returns:
-string +Managed
@@ -211486,7 +216870,7 @@
Returns:
-

algorithm(algorithm) → {Resource}

+

withManagedApplication(application, managed) → {Managed}

@@ -211494,7 +216878,7 @@

algorithm - Sets the checksum algorithm + Specifies the managed state for a given application @@ -211530,7 +216914,7 @@
Parameters:
- algorithm + application @@ -211546,7 +216930,30 @@
Parameters:
- The algorithm to verify the checksum (e.g. "SHA") + The application + + + + + + + managed + + + + + +boolean + + + + + + + + + + True if the application shall be managed @@ -211587,7 +216994,7 @@
Parameters:
Source:
@@ -211616,7 +217023,7 @@
Returns:
- The Resource object + This
@@ -211627,7 +217034,7 @@
Returns:
-Resource +Managed
@@ -211645,7 +217052,7 @@
Returns:
-

algorithm(algorithm) → {Downloader}

+

withMemSize(memSize) → {Dosbox}

@@ -211653,7 +217060,8 @@

algorithm - Sets the algorithm which shall be used to verify the checksum + Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D @@ -211689,13 +217097,13 @@
Parameters:
- algorithm + memSize -string +int @@ -211705,7 +217113,7 @@
Parameters:
- The checksum algorithm (e.g. "SHA") + The memory size @@ -211746,7 +217154,7 @@
Parameters:
Source:
@@ -211775,7 +217183,7 @@
Returns:
- The Downloader object + This
@@ -211786,7 +217194,7 @@
Returns:
-Downloader +Dosbox
@@ -211804,7 +217212,7 @@
Returns:
-

application(application) → {AppResource}

+

withMode(mode) → {FontSmoothing}

@@ -211812,7 +217220,7 @@

applicatio
- Sets the application containing the resources + Specifies the used font smoothing mode
@@ -211848,7 +217256,7 @@

Parameters:
- application + mode @@ -211864,7 +217272,7 @@
Parameters:
- The application with the resource + "RGB", "BGR" or "Gray Scale" @@ -211905,7 +217313,7 @@
Parameters:
Source:
@@ -211934,113 +217342,7 @@
Returns:
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") + This
@@ -212051,7 +217353,7 @@
Returns:
-string +FontSmoothing
@@ -212069,7 +217371,7 @@
Returns:
-

arguments(args) → {WineShortcut}

+

withMode(mode) → {GLSL}

@@ -212077,7 +217379,7 @@

arguments - Sets the shortcut arguments + Specifies the mode @@ -212113,13 +217415,13 @@
Parameters:
- args + mode -array +string @@ -212129,7 +217431,7 @@
Parameters:
- The shortcut arguments + enabled or disabled @@ -212170,7 +217472,7 @@
Parameters:
Source:
@@ -212199,7 +217501,7 @@
Returns:
- The WineShortcut object + This
@@ -212210,7 +217512,7 @@
Returns:
-WineShortcut +GLSL
@@ -212228,13 +217530,17 @@
Returns:
-

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

+

withMode(mode) → {TakeFocus}

+
+ Specifies the mode +
+ @@ -212256,12 +217562,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -212272,7 +217574,7 @@
Parameters:
- architecture + mode @@ -212285,26 +217587,10 @@
Parameters:
- - - <optional>
- - - - - - - - - - current architecture - - - - + "Y" or "N" @@ -212345,7 +217631,7 @@
Parameters:
Source:
@@ -212373,6 +217659,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -212381,7 +217671,7 @@
Returns:
-Array.<string> +TakeFocus
@@ -212399,13 +217689,17 @@
Returns:
-

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

+

withMode(mode) → {DirectDrawRenderer}

+
+ Selects the used direct draw mode (either gdi or opengl) +
+ @@ -212427,12 +217721,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -212443,7 +217733,7 @@
Parameters:
- distribution name + mode @@ -212456,26 +217746,10 @@
Parameters:
- - - <optional>
- - - - - - - - - - current distribution - - - - + gdi or opengl @@ -212516,7 +217790,7 @@
Parameters:
Source:
@@ -212544,6 +217818,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -212552,7 +217830,7 @@
Returns:
-Array.<string> +DirectDrawRenderer
@@ -212570,7 +217848,7 @@
Returns:
-

binPath(subCategoryopt, versionopt) → {string}

+

withRenderAspect(renderAspect) → {Dosbox}

@@ -212578,8 +217856,8 @@

binPath - returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used + Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D @@ -212603,8 +217881,6 @@
Parameters:
Type - Attributes - @@ -212617,66 +217893,23 @@
Parameters:
- subCategory - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - Wine sub-category - - - - - - - version + renderAspect -string +boolean - - - <optional>
- - - - - - - - Wine version + The render aspect @@ -212717,7 +217950,7 @@
Parameters:
Source:
@@ -212746,7 +217979,7 @@
Returns:
- path to "wine" binary + This
@@ -212757,7 +217990,7 @@
Returns:
-string +Dosbox
@@ -212775,7 +218008,7 @@
Returns:
-

category(category) → {WineShortcut}

+

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

@@ -212783,7 +218016,8 @@

category - Sets the shortcut category + Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D @@ -212819,13 +218053,13 @@
Parameters:
- category + renderFrameSkip -string +int @@ -212835,7 +218069,7 @@
Parameters:
- The shortcut category + The render frameskip @@ -212876,7 +218110,7 @@
Parameters:
Source:
@@ -212905,7 +218139,7 @@
Returns:
- The WineShortcut object + This
@@ -212916,7 +218150,7 @@
Returns:
-WineShortcut +Dosbox
@@ -212934,7 +218168,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

withScript(command) → {PlainInstaller}

@@ -212942,7 +218176,7 @@

checksum - Sets the checksum + Sets the installation script consisting of a lambda function @@ -212978,13 +218212,13 @@
Parameters:
- checksum + command -string +function @@ -212994,7 +218228,7 @@
Parameters:
- The checksum which shall be used to verify the download + The installation command @@ -213035,7 +218269,7 @@
Parameters:
Source:
@@ -213064,7 +218298,7 @@
Returns:
- The Downloader object + The PlainInstaller object
@@ -213075,7 +218309,7 @@
Returns:
-Downloader +PlainInstaller
@@ -213093,7 +218327,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

withSetting(key, value) → {Dosbox}

@@ -213101,7 +218335,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets a dosbox setting @@ -213137,7 +218371,7 @@
Parameters:
- checksum + key @@ -213153,122 +218387,35 @@
Parameters:
- The checksum + The key of the setting (example dosbox_memsize) - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - + + + value + + + + +any + + - - + - -

create() → {Wine}

- + The value to be set + - - - -
- runs "wineboot" -
- - - - - - - + + @@ -213304,7 +218451,7 @@

createSource:
@@ -213333,124 +218480,18 @@
Returns:
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut + This
- - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - -
Type
-void +Dosbox
@@ -213468,7 +218509,7 @@
Returns:
-

description(description) → {WineShortcut}

+

withVersion(major, minor) → {OpenGL}

@@ -213476,7 +218517,7 @@

descriptio
- Sets the shortcut description + Specifies the major and minor versions
@@ -213512,13 +218553,13 @@

Parameters:
- description + major -string +number @@ -213528,7 +218569,30 @@
Parameters:
- The shortcut description + The major version + + + + + + + minor + + + + + +number + + + + + + + + + + The minor version @@ -213569,7 +218633,7 @@
Parameters:
Source:
@@ -213598,7 +218662,7 @@
Returns:
- The WineShortcut object + This
@@ -213609,7 +218673,7 @@
Returns:
-WineShortcut +OpenGL
@@ -213627,7 +218691,7 @@
Returns:
-

directory(directory) → {Resource}

+

withWindowsVersion(version, servicePack) → {WindowsVersion}

@@ -213635,7 +218699,7 @@

directory - Sets the directory inside the resources directory where the Resource is stored + Specifies the default windows version @@ -213671,7 +218735,7 @@
Parameters:
- directory + version @@ -213687,7 +218751,30 @@
Parameters:
- The directory path + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31 + + + + + + + servicePack + + + + + +string + + + + + + + + + + e.g. sp3 @@ -213728,7 +218815,7 @@
Parameters:
Source:
@@ -213757,7 +218844,7 @@
Returns:
- The Resource object + This
@@ -213768,7 +218855,7 @@
Returns:
-Resource +WindowsVersion
@@ -213786,7 +218873,7 @@
Returns:
-

download(setupWizard) → {String}

+

wizard(wizard) → {Resource}

@@ -213794,7 +218881,7 @@

download - Download the setup resources in the same directory, and returns the path of the .exe + Sets the setup wizard @@ -213830,7 +218917,7 @@
Parameters:
- setupWizard + wizard @@ -213887,7 +218974,7 @@
Parameters:
Source:
@@ -213916,7 +219003,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + The Resource object
@@ -213927,7 +219014,7 @@
Returns:
-String +Resource
@@ -213945,17 +219032,13 @@
Returns:
-

environment(environment) → {WineShortcut}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the shortcut environment variables -
- @@ -213977,6 +219060,8 @@
Parameters:
Type + Attributes + @@ -213989,23 +219074,33 @@
Parameters:
- environment + wizard -string +SetupWizard + + + <optional>
+ + + + + + + - The environment variables + @@ -214046,7 +219141,7 @@
Parameters:
Source:
@@ -214074,10 +219169,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -214086,7 +219177,10 @@
Returns:
-WineShortcut +SetupWizard +| + +Wine
@@ -214104,7 +219198,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

wizard(wizard) → {Downloader}

@@ -214112,7 +219206,7 @@

environmen
- set environment + Sets the setup wizard
@@ -214148,13 +219242,13 @@

Parameters:
- environment + wizard -string +SetupWizard @@ -214164,7 +219258,7 @@
Parameters:
- variables + The setup wizard @@ -214205,7 +219299,7 @@
Parameters:
Source:
@@ -214234,7 +219328,7 @@
Returns:
- QuickScript object + The Downloader object
@@ -214245,7 +219339,7 @@
Returns:
-QuickScript +Downloader
@@ -214258,12 +219352,147 @@
Returns:
+ + + + + + + +

+ + + + + + + +
+ +
+ +

default()

+ +
Setting to configure multisampling
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new default()

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

Methods

+ + -

executable(executable, args)

+

_createShortcut(prefixopt)

@@ -214271,7 +219500,7 @@

executable<
- set executable + creates shortcut
@@ -214295,6 +219524,8 @@

Parameters:
Type + Attributes + @@ -214307,36 +219538,33 @@
Parameters:
- executable + prefix - + +string - + - executable without path (e.g. "Steam.exe") - - - - - - - args + + + <optional>
+ - - - + + + - use array (e.g. ["-applaunch", 409160]) + prefix name @@ -214377,7 +219605,7 @@
Parameters:
Source:
@@ -214413,13 +219641,16 @@
Parameters:
-

fontDirectory() → {string}

+

_fetchFileNameFromUrl(url) → {string}

+
+ Fetches the file name from an URL +
@@ -214429,6 +219660,56 @@

fontDire +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
url + + +string + + + + The URL
+ + + @@ -214461,7 +219742,7 @@

fontDire
Source:
@@ -214490,7 +219771,7 @@

Returns:
- font directory + The file name
@@ -214519,7 +219800,7 @@
Returns:
-

get() → {string}

+

algorithm(algorithm) → {Downloader}

@@ -214527,7 +219808,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Sets the algorithm which shall be used to verify the checksum @@ -214538,6 +219819,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + algorithm + + + + + +string + + + + + + + + + + The checksum algorithm (e.g. "SHA") + + + + + + + @@ -214571,7 +219901,7 @@

getSource:
@@ -214600,7 +219930,7 @@
Returns:
- The path leading to the downloaded resource + The Downloader object
@@ -214611,7 +219941,7 @@
Returns:
-string +Downloader
@@ -214629,7 +219959,7 @@
Returns:
-

get() → {String}

+

algorithm(algorithm) → {Resource}

@@ -214637,7 +219967,7 @@

get - Gets the content of the downloaded file + Sets the checksum algorithm @@ -214648,6 +219978,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + algorithm + + + + + +string + + + + + + + + + + The algorithm to verify the checksum (e.g. "SHA") + + + + + + + @@ -214681,7 +220060,7 @@

getSource:
@@ -214710,7 +220089,7 @@
Returns:
- The content of downloaded file + The Resource object
@@ -214721,7 +220100,7 @@
Returns:
-String +Resource
@@ -214739,7 +220118,7 @@
Returns:
-

get(resourceName) → {Resource}

+

application(application) → {AppResource}

@@ -214747,7 +220126,7 @@

get - Returns the searched resource + Sets the application containing the resources @@ -214783,7 +220162,7 @@
Parameters:
- resourceName + application @@ -214799,7 +220178,7 @@
Parameters:
- The name of the resource + The application with the resource @@ -214840,7 +220219,7 @@
Parameters:
Source:
@@ -214869,7 +220248,7 @@
Returns:
- The found resource + The AppResource object
@@ -214880,7 +220259,7 @@
Returns:
-Resource +AppResource
@@ -214898,17 +220277,13 @@
Returns:
-

getContainer() → {string}

+

architecture() → {string}

-
- Returns the name of the container belonging to a shortcut -
- @@ -214950,7 +220325,7 @@

getContai
Source:
@@ -214979,7 +220354,7 @@

Returns:
- The container name + architecture ("x86" or "amd64")
@@ -215008,7 +220383,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

arguments(args) → {WineShortcut}

@@ -215016,7 +220391,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the shortcut arguments
@@ -215052,13 +220427,13 @@

Parameters:
- setupFileName + args -string +array @@ -215068,7 +220443,7 @@
Parameters:
- The setup file name + The shortcut arguments @@ -215109,7 +220484,7 @@
Parameters:
Source:
@@ -215138,7 +220513,7 @@
Returns:
- This + The WineShortcut object
@@ -215149,7 +220524,7 @@
Returns:
-GogScript +WineShortcut
@@ -215167,17 +220542,13 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

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

-
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- @@ -215199,8 +220570,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -215211,23 +220586,39 @@
Parameters:
- setupFileNames + architecture -Array.<string> +string + + + <optional>
+ + + + + + + + + + current architecture + + + - The setup file name(s) + @@ -215268,7 +220659,7 @@
Parameters:
Source:
@@ -215296,10 +220687,6 @@
Parameters:
Returns:
-
- This -
-
@@ -215308,7 +220695,7 @@
Returns:
-GogScript +Array.<string>
@@ -215326,17 +220713,13 @@
Returns:
-

headers(headers) → {Downloader}

+

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

-
- Sets the http headers -
- @@ -215358,8 +220741,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -215370,23 +220757,39 @@
Parameters:
- headers + distribution name -Object +string + + + <optional>
+ + + + + - The http headers + + + + current distribution + + + + + @@ -215427,7 +220830,7 @@
Parameters:
Source:
@@ -215455,10 +220858,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -215467,7 +220866,7 @@
Returns:
-Downloader +Array.<string>
@@ -215485,7 +220884,7 @@
Returns:
-

json() → {any}

+

binPath(subCategoryopt, versionopt) → {string}

@@ -215493,7 +220892,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + returns the path to the engine binary directory +if no parameters are given, the Wine version of the current prefix is used @@ -215504,6 +220904,100 @@

json + + + + Name + + + Type + + + Attributes + + + + + Description + + + + + + + + + subCategory + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + Wine sub-category + + + + + + + version + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + Wine version + + + + + + + @@ -215537,7 +221031,7 @@

jsonSource:
@@ -215566,7 +221060,7 @@
Returns:
- The json value + path to "wine" binary
@@ -215577,7 +221071,7 @@
Returns:
-any +string
@@ -215595,7 +221089,7 @@
Returns:
-

kill() → {Wine}

+

category(category) → {WineShortcut}

@@ -215603,7 +221097,7 @@

kill - kill wine server + Sets the shortcut category @@ -215614,6 +221108,55 @@

kill + + + + Name + + + Type + + + + + + Description + + + + + + + + + category + + + + + +string + + + + + + + + + + The shortcut category + + + + + + + @@ -215647,7 +221190,7 @@

killSource:
@@ -215675,6 +221218,10 @@

kill + The WineShortcut object + +
@@ -215683,7 +221230,7 @@
Returns:
-Wine +WineShortcut
@@ -215701,7 +221248,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

checksum(checksum) → {Resource}

@@ -215709,8 +221256,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 checksum which shall be used to verify the resource
@@ -215746,13 +221292,13 @@

Parameters:
- setupWizard + checksum -SetupWizard +string @@ -215762,7 +221308,7 @@
Parameters:
- The setupWizard to use + The checksum @@ -215803,7 +221349,7 @@
Parameters:
Source:
@@ -215832,7 +221378,7 @@
Returns:
- This + The Resource object
@@ -215843,7 +221389,7 @@
Returns:
-GogScript +Resource
@@ -215861,7 +221407,7 @@
Returns:
-

message(message) → {Downloader}

+

checksum(checksum) → {Downloader}

@@ -215869,7 +221415,7 @@

message - Sets the download message text + Sets the checksum @@ -215905,7 +221451,7 @@
Parameters:
- message + checksum @@ -215921,7 +221467,7 @@
Parameters:
- The download message + The checksum which shall be used to verify the download @@ -215962,7 +221508,7 @@
Parameters:
Source:
@@ -216020,7 +221566,7 @@
Returns:
-

miniature(miniature) → {WineShortcut}

+

create() → {void}

@@ -216028,7 +221574,7 @@

miniature - Sets the miniature for the shortcut + Creates a new shortcut @@ -216039,58 +221585,6 @@

miniatureParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - @@ -216124,7 +221618,113 @@
Parameters:
Source:
+ + + + + + + +

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

create() → {Wine}

+ + + + + + +
+ runs "wineboot" +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -216153,7 +221753,7 @@
Returns:
- The WineShortcut object + The Wine object
@@ -216164,7 +221764,7 @@
Returns:
-WineShortcut +Wine
@@ -216182,7 +221782,7 @@
Returns:
-

miniature(miniatureopt)

+

description(description) → {WineShortcut}

@@ -216190,7 +221790,7 @@

miniature - get/set miniature (for the installation and the shortcut) + Sets the shortcut description @@ -216214,8 +221814,6 @@
Parameters:
Type - Attributes - @@ -216228,33 +221826,23 @@
Parameters:
- miniature + description -URI +string - - - <optional>
- - - - - - - - path to the miniature file + The shortcut description @@ -216295,7 +221883,7 @@
Parameters:
Source:
@@ -216320,6 +221908,28 @@
Parameters:
+
Returns:
+ + +
+ The WineShortcut object +
+ + + +
+
+ Type +
+
+ +WineShortcut + + +
+
+ + @@ -216331,7 +221941,7 @@
Parameters:
-

name(name) → {Resource}

+

directory(directory) → {Resource}

@@ -216339,7 +221949,7 @@

name - Sets the resource name + Sets the directory inside the resources directory where the Resource is stored @@ -216375,7 +221985,7 @@
Parameters:
- name + directory @@ -216391,7 +222001,7 @@
Parameters:
- The name of the resource + The directory path @@ -216432,7 +222042,7 @@
Parameters:
Source:
@@ -216490,7 +222100,7 @@
Returns:
-

name(name) → {WineShortcut}

+

dosConfigFile() → {string}

@@ -216498,7 +222108,117 @@

name - Sets the shortcut name + Fetch the prefix dosbox configuration file + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

download(setupWizard) → {String}

+ + + + + + +
+ Download the setup resources in the same directory, and returns the path of the .exe
@@ -216534,13 +222254,13 @@
Parameters:
- name + setupWizard -string +SetupWizard @@ -216550,7 +222270,7 @@
Parameters:
- The shortcut name + The setup wizard @@ -216591,7 +222311,7 @@
Parameters:
Source:
@@ -216620,7 +222340,7 @@
Returns:
- The WineShortcut object + The .exe file entry that can be used to continue the installation
@@ -216631,7 +222351,7 @@
Returns:
-WineShortcut +String
@@ -216649,7 +222369,7 @@
Returns:
-

of(shortcut) → {void}

+

downloadFinished(wine) → {boolean}

@@ -216657,7 +222377,8 @@

of - Sets shortcut + Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first @@ -216693,13 +222414,13 @@
Parameters:
- shortcut + wine -string +Wine @@ -216709,7 +222430,7 @@
Parameters:
- shortcut + The wine engine object @@ -216750,7 +222471,7 @@
Parameters:
Source:
@@ -216778,6 +222499,10 @@
Parameters:
Returns:
+
+ True if the download has finished, false otherwise +
+
@@ -216786,7 +222511,7 @@
Returns:
-void +boolean
@@ -216804,7 +222529,7 @@
Returns:
-

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

+

downloadStarted(wine) → {boolean}

@@ -216812,7 +222537,7 @@

- Specifies if the download shall be executed only if a newer version is available + Checks whether the software download has started
@@ -216848,13 +222573,13 @@

Parameters:
- onlyIfUpdateAvailable + wine -boolean +Wine @@ -216864,7 +222589,7 @@
Parameters:
- true the download shall be executed only if a newer version is available + The wine engine object @@ -216905,7 +222630,7 @@
Parameters:
Source:
@@ -216934,7 +222659,7 @@
Returns:
- The Downloader object + True if the download has started, false otherwise
@@ -216945,7 +222670,7 @@
Returns:
-Downloader +boolean
@@ -216963,7 +222688,7 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

environment(environment) → {WineShortcut}

@@ -216971,7 +222696,7 @@

prefix - Sets the shortcut prefix + Sets the shortcut environment variables @@ -217007,7 +222732,7 @@
Parameters:
- prefix + environment @@ -217023,7 +222748,7 @@
Parameters:
- The shortcut prefix + The environment variables @@ -217064,7 +222789,7 @@
Parameters:
Source:
@@ -217122,13 +222847,17 @@
Returns:
-

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

+

environment(environment) → {QuickScript}

+
+ set environment +
+ @@ -217150,8 +222879,6 @@
Parameters:
Type - Attributes - @@ -217164,106 +222891,7 @@
Parameters:
- prefix - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - distribution - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - architecture - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - version + environment @@ -217276,20 +222904,10 @@
Parameters:
- - - <optional>
- - - - - - - - + variables @@ -217330,7 +222948,7 @@
Parameters:
Source:
@@ -217358,6 +222976,10 @@
Parameters:
Returns:
+
+ QuickScript object +
+
@@ -217366,10 +222988,7 @@
Returns:
-string -| - -Wine +QuickScript
@@ -217387,7 +223006,7 @@
Returns:
-

prefixDirectory() → {string}

+

executable(executable, args)

@@ -217395,7 +223014,7 @@

prefix
- returns prefix directory + set executable
@@ -217406,6 +223025,68 @@

prefix +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
executable + + executable without path (e.g. "Steam.exe")
args + + use array (e.g. ["-applaunch", 409160])
+ + @@ -217439,7 +223120,7 @@

prefix
Source:
@@ -217464,24 +223145,6 @@

prefix -

Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - @@ -217493,7 +223156,7 @@
Returns:
-

programFiles() → {string}

+

fontDirectory() → {string}

@@ -217541,7 +223204,7 @@

programFi
Source:
@@ -217570,7 +223233,7 @@

Returns:
- name of "Program Files" + font directory
@@ -217599,7 +223262,7 @@
Returns:
-

run(userArguments) → {void}

+

get(resourceName) → {Resource}

@@ -217607,7 +223270,7 @@

run - Runs a shortcut with the given user arguments + Returns the searched resource @@ -217643,13 +223306,13 @@
Parameters:
- userArguments + resourceName -array +string @@ -217659,7 +223322,7 @@
Parameters:
- The user arguments + The name of the resource @@ -217700,7 +223363,7 @@
Parameters:
Source:
@@ -217728,6 +223391,10 @@
Parameters:
Returns:
+
+ The found resource +
+
@@ -217736,7 +223403,7 @@
Returns:
-void +Resource
@@ -217754,13 +223421,16 @@
Returns:
-

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

+

get() → {String}

+
+ Gets the content of the downloaded file +
@@ -217769,264 +223439,115 @@

run - - - - Name - - Type - - Attributes - - - Default - - Description - - +
- - - - executable - - - - - -string - - - - - - - - - - + - - - + - - - - - + - - + - - - args - + - - - -array + + - - + - - - - <optional>
- + - + - - - + +
Source:
+
+ - - - - [] - - - + - - + +
- - - workingDirectory - - - - -string - - - - - - <optional>
- - - - - - - - - working container - - - - - - - - - captureOutput - - - - -boolean - - - - - - <optional>
- +
Returns:
- + +
+ The content of downloaded file +
- - - - - - - false - - - - - +
+
+ Type +
+
+ +String - - - - wait - +
+
- - - -boolean + - - - - - - <optional>
- - - - + - - - - false - - - + - - + +

get() → {string}

+ - - - userData - - - - -map +
+ Fetches the Resource and returns the path leading to the downloaded resource +
- - - - - - <optional>
- - - - - - - - - empty - - - - - - - - @@ -218062,7 +223583,7 @@
Parameters:
Source:
@@ -218091,7 +223612,7 @@
Returns:
- output + The path leading to the downloaded resource
@@ -218102,7 +223623,7 @@
Returns:
-String +string
@@ -218120,13 +223641,16 @@
Returns:
-

runInsidePrefix(executable, argsopt, waitopt)

+

getContainer() → {string}

+
+ Returns the name of the container belonging to a shortcut +
@@ -218135,147 +223659,115 @@

runIns -

Parameters:
- - - - - - - - - - - - - - - - - +
-
- - - - + - + - - - + - - - + - - + - - - - + - + - - - - - - - - - - - - - - - - - - - + + +
Returns:
+ + +
+ The container name +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + - - + - -
NameTypeAttributesDefaultDescription
executable - - -string + + - - - + - + - - - -
args - - -array + +
Source:
+
+ + - -
- - <optional>
- + + - - -
- - [] - -
wait - - -boolean - - - - <optional>
- - - -
- - false - -
+

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + @@ -218311,7 +223803,7 @@
Parameters:
Source:
@@ -218336,6 +223828,28 @@
Parameters:
+
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + @@ -218347,7 +223861,7 @@
Parameters:
- +

gogSetupFileName(setupFileName) → {GogScript}

@@ -218355,7 +223869,7 @@

- - -
- Specifies if the download shall be executed only if a newer version is available -
- +
@@ -226871,54 +233069,40 @@

+
-
Parameters:
+
- - - - +

default()

- +
Setting to set the offscreen rendering mode
+ + - - +
+
+ - + +

Constructor

+ -
- - + +

new default()

+ - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - true the download shall be executed only if a newer version is available
+ @@ -226954,7 +233138,7 @@
Parameters:
Source:
@@ -226979,32 +233163,30 @@
Parameters:
-
Returns:
- -
- The Downloader object -
-
-
- Type -
-
- -Downloader + + + + -
-
+ + + + + + + +

Methods

@@ -227012,7 +233194,7 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

_createShortcut(prefixopt)

@@ -227020,7 +233202,7 @@

prefix - Sets the shortcut prefix + creates shortcut @@ -227044,6 +233226,8 @@
Parameters:
Type + Attributes + @@ -227069,10 +233253,20 @@
Parameters:
+ + + <optional>
+ + + + + - The shortcut prefix + + + prefix name @@ -227113,7 +233307,7 @@
Parameters:
Source:
@@ -227138,28 +233332,6 @@
Parameters:
-
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - @@ -227171,13 +233343,17 @@
Returns:
-

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

+

_fetchFileNameFromUrl(url) → {string}

+
+ Fetches the file name from an URL +
+ @@ -227199,8 +233375,6 @@
Parameters:
Type - Attributes - @@ -227213,106 +233387,7 @@
Parameters:
- prefix - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - distribution - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - architecture - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - version + url @@ -227325,20 +233400,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The URL @@ -227379,7 +233444,7 @@
Parameters:
Source:
@@ -227407,6 +233472,10 @@
Parameters:
Returns:
+
+ The file name +
+
@@ -227416,9 +233485,6 @@
Returns:
string -| - -Wine
@@ -227436,7 +233502,7 @@
Returns:
-

prefixDirectory() → {string}

+

algorithm(algorithm) → {Downloader}

@@ -227444,7 +233510,7 @@

prefix
- returns prefix directory + Sets the algorithm which shall be used to verify the checksum
@@ -227455,6 +233521,55 @@

prefix +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
algorithm + + +string + + + + The checksum algorithm (e.g. "SHA")
+ + @@ -227488,7 +233603,7 @@

prefix
Source:
@@ -227516,6 +233631,10 @@

prefix

Returns:
+
+ The Downloader object +
+
@@ -227524,7 +233643,7 @@
Returns:
-string +Downloader
@@ -227542,19 +233661,72 @@
Returns:
-

programFiles() → {string}

+

algorithm(algorithm) → {Resource}

+
+ Sets the checksum algorithm +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
algorithm + + +string + + The algorithm to verify the checksum (e.g. "SHA")
@@ -227590,7 +233762,7 @@

programFi
Source:
@@ -227619,7 +233791,7 @@

Returns:
- name of "Program Files" + The Resource object
@@ -227630,7 +233802,7 @@
Returns:
-string +Resource
@@ -227648,7 +233820,7 @@
Returns:
-

run(userArguments) → {void}

+

application(application) → {AppResource}

@@ -227656,7 +233828,7 @@

run - Runs a shortcut with the given user arguments + Sets the application containing the resources @@ -227692,13 +233864,13 @@
Parameters:
- userArguments + application -array +string @@ -227708,7 +233880,7 @@
Parameters:
- The user arguments + The application with the resource @@ -227749,7 +233921,7 @@
Parameters:
Source:
@@ -227777,6 +233949,10 @@
Parameters:
Returns:
+
+ The AppResource object +
+
@@ -227785,7 +233961,7 @@
Returns:
-void +AppResource
@@ -227803,7 +233979,7 @@
Returns:
-

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

+

architecture() → {string}

@@ -227818,259 +233994,158 @@

run - - - - Name - - Type - - Attributes - - - Default - +
- Description - - + - - - - executable - + - - - -string + + - - + - - - + - + - - - + - - - - - + - - + - - - args - + +
Source:
+
+ - - - -array + + - - + +
- - - - <optional>
- - - - - - - - - [] - - - - - - - - - workingDirectory - - - - -string - - - - - - <optional>
- - - - - - - - - working container - - - - - +
Returns:
- + +
+ architecture ("x86" or "amd64") +
- - - captureOutput - - - - -boolean +
+
+ Type +
+
+ +string - - - - - - <optional>
- +
+
- + - - - - - - - false - - + + + + - - + +

arguments(args) → {WineShortcut}

+ - - - wait - + - - - -boolean - - +
+ Sets the shortcut arguments +
+ - - - - <optional>
- - - - - - - - - false - - - - - + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + - + - - - - - + @@ -228111,7 +234186,7 @@
Parameters:
Source:
@@ -228140,7 +234215,7 @@
Returns:
- output + The WineShortcut object
@@ -228151,7 +234226,7 @@
Returns:
-String +WineShortcut
@@ -228169,7 +234244,7 @@
Returns:
-

runInsidePrefix(executable, argsopt, waitopt)

+

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

@@ -228213,7 +234288,7 @@
Parameters:
- + @@ -228245,16 +234324,148 @@
Parameters:
+ +
NameTypeDescription
userDataargs -map +array - - <optional>
- - - - - -
- - empty - - The shortcut arguments
executablearchitecture @@ -228228,6 +234303,8 @@
Parameters:
+ <optional>
+ @@ -228238,6 +234315,8 @@
Parameters:
+ current architecture +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +Array.<string> + + +
+
+ + + + + + + + + + + + + +

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

+ + + + + + + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -228284,16 +234495,151 @@
Parameters:
+ +
NameTypeAttributesDefaultDescription
argsdistribution name -array +string @@ -228275,7 +234486,7 @@
Parameters:
- [] + 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:
+ + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + - + + + @@ -228360,7 +234733,7 @@
Parameters:
Source:
@@ -228385,6 +234758,28 @@
Parameters:
+
Returns:
+ + +
+ path to "wine" binary +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -228396,7 +234791,7 @@
Parameters:
- +

category(category) → {WineShortcut}

@@ -228404,7 +234799,7 @@ - + + @@ -228497,7 +234892,7 @@
Parameters:
Source:
@@ -228555,7 +234950,7 @@
Returns:
-

stop() → {void}

+

checksum(checksum) → {Resource}

@@ -228563,7 +234958,7 @@

stop - Stops the running shortcut + Sets the checksum which shall be used to verify the resource @@ -228574,6 +234969,55 @@

stop +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
waitsubCategory -boolean +string @@ -228312,14 +234658,41 @@
Parameters:
-
+ + Wine sub-category
version + - false +string + + + + + + <optional>
+ + + +
Wine version
searchcategory @@ -228456,7 +234851,7 @@
Parameters:
-
The executable nameThe shortcut category
NameTypeDescription
checksum + + +string + + + + The checksum
+ + @@ -228607,7 +235051,276 @@

stopSource:
+ + + + + + + +

+ + + + + + + + + + + + + + + +
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:
+
@@ -228661,13 +235374,17 @@
Returns:
-

system32directory() → {string}

+

create() → {Wine}

+
+ runs "wineboot" +
+ @@ -228709,7 +235426,300386 @@

syst
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 + + +
+
+ + + + + + + + + + + + + +

dosConfigFile() → {string}

+ + + + + + +
+ Fetch the prefix dosbox configuration file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has finished, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

downloadStarted(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has started +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has started, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

environment(environment) → {WineShortcut}

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

environment(environment) → {QuickScript}

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

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}

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

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 + + +
+
+ + + + + + + + + + + + + +

getContainer() → {string}

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

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

isHdpi() → {boolean}

+ + + + + + +
+ Fetches whether hdpi is enabled or not +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if hdpi is enabled, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

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) → {Resource}

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

name(name) → {WineShortcut}

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

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(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 + + +
+
+ + + + + + + + + + + + + +

prefix(prefix) → {WineShortcut}

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

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) → {WineShortcut}

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

trustLevel(trustlevel) → {QuickScript}

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

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:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application executable
os + + +string + + + + The windows version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

withCpuCycles(cpuCycles) → {Dosbox}

+ + + + + + +
+ Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
cpuCycles + + +int + + + + (example: max 95% limit 33000)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withDimensions(width, height) → {VirtualDesktop}

+ + + + + + +
+ Specifies the dimensions of the virtual desktop +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
width + + +number + + + + width of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +VirtualDesktop + + +
+
+ + + + + + + + + + + + + +

withDriver(driver) → {SoundDriver}

+ + + + + + +
+ Specifies the used sound driver +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
driver + + +string + + + + alsa or pulse
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +SoundDriver + + +
+
+ + + + + + + + + + + + + +

withExtension(extension) → {NativeApplication}

+ + + + + + +
+ Specifies the file extension +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
extension + + +string + + + + The file extension (pdf, txt, rtf)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +NativeApplication + + +
+
+ + + + + + + + + + + + + +

withHdpi(hdpi) → {HDPI}

+ + + + + + +
+ Specifies whether hdpi should be enabled or not +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
hdpi + + +boolean + + + + true if hdpi shall be enabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + + + + + + + + + + + + +

withManaged(managed) → {Managed}

+ + + + + + +
+ Specifies the global managed state +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
managed + + +boolean + + + + True if it shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withManagedApplication(application, managed) → {Managed}

+ + + + + + +
+ Specifies the managed state for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application
managed + + +boolean + + + + True if the application shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withMemSize(memSize) → {Dosbox}

+ + + + + + +
+ Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
memSize + + +int + + + + The memory size
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {FontSmoothing}

+ + + + + + +
+ Specifies the used font smoothing mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "RGB", "BGR" or "Gray Scale"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {GLSL}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + enabled or disabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +GLSL + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {TakeFocus}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "Y" or "N"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {DirectDrawRenderer}

+ + + + + + +
+ Selects the used direct draw mode (either gdi or opengl) +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + gdi or opengl
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +DirectDrawRenderer + + +
+
+ + + + + + + + + + + + + +

withRenderAspect(renderAspect) → {Dosbox}

+ + + + + + +
+ Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+ + + + + + +
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

withSetting(key, value) → {Dosbox}

+ + + + + + +
+ Sets a dosbox setting +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
key + + +string + + + + The key of the setting (example dosbox_memsize)
value + + +any + + + + The value to be set
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withVersion(major, minor) → {OpenGL}

+ + + + + + +
+ Specifies the major and minor versions +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
major + + +number + + + + The major version
minor + + +number + + + + The minor version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +OpenGL + + +
+
+ + + + + + + + + + + + + +

withWindowsVersion(version, servicePack) → {WindowsVersion}

+ + + + + + +
+ Specifies the default windows version +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
version + + +string + + + + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31
servicePack + + +string + + + + e.g. sp3
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

wizard(wizard) → {Resource}

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

wizard(wizardopt) → {SetupWizard|Wine}

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

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) → {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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

dosConfigFile() → {string}

+ + + + + + +
+ Fetch the prefix dosbox configuration file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has finished, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

downloadStarted(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has started +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has started, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

environment(environment) → {WineShortcut}

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

environment(environment) → {QuickScript}

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

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}

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

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 + + +
+
+ + + + + + + + + + + + + +

getContainer() → {string}

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

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

isHdpi() → {boolean}

+ + + + + + +
+ Fetches whether hdpi is enabled or not +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if hdpi is enabled, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

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) → {Resource}

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

name(name) → {WineShortcut}

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

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(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 + + +
+
+ + + + + + + + + + + + + +

prefix(prefix) → {WineShortcut}

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

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) → {WineShortcut}

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

trustLevel(trustlevel) → {QuickScript}

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

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:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application executable
os + + +string + + + + The windows version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

withCpuCycles(cpuCycles) → {Dosbox}

+ + + + + + +
+ Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
cpuCycles + + +int + + + + (example: max 95% limit 33000)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withDimensions(width, height) → {VirtualDesktop}

+ + + + + + +
+ Specifies the dimensions of the virtual desktop +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
width + + +number + + + + width of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +VirtualDesktop + + +
+
+ + + + + + + + + + + + + +

withDriver(driver) → {SoundDriver}

+ + + + + + +
+ Specifies the used sound driver +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
driver + + +string + + + + alsa or pulse
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +SoundDriver + + +
+
+ + + + + + + + + + + + + +

withExtension(extension) → {NativeApplication}

+ + + + + + +
+ Specifies the file extension +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
extension + + +string + + + + The file extension (pdf, txt, rtf)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +NativeApplication + + +
+
+ + + + + + + + + + + + + +

withHdpi(hdpi) → {HDPI}

+ + + + + + +
+ Specifies whether hdpi should be enabled or not +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
hdpi + + +boolean + + + + true if hdpi shall be enabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + + + + + + + + + + + + +

withManaged(managed) → {Managed}

+ + + + + + +
+ Specifies the global managed state +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
managed + + +boolean + + + + True if it shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withManagedApplication(application, managed) → {Managed}

+ + + + + + +
+ Specifies the managed state for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application
managed + + +boolean + + + + True if the application shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withMemSize(memSize) → {Dosbox}

+ + + + + + +
+ Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
memSize + + +int + + + + The memory size
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {FontSmoothing}

+ + + + + + +
+ Specifies the used font smoothing mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "RGB", "BGR" or "Gray Scale"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {GLSL}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + enabled or disabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +GLSL + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {TakeFocus}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "Y" or "N"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {DirectDrawRenderer}

+ + + + + + +
+ Selects the used direct draw mode (either gdi or opengl) +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + gdi or opengl
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +DirectDrawRenderer + + +
+
+ + + + + + + + + + + + + +

withRenderAspect(renderAspect) → {Dosbox}

+ + + + + + +
+ Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+ + + + + + +
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

withSetting(key, value) → {Dosbox}

+ + + + + + +
+ Sets a dosbox setting +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
key + + +string + + + + The key of the setting (example dosbox_memsize)
value + + +any + + + + The value to be set
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withVersion(major, minor) → {OpenGL}

+ + + + + + +
+ Specifies the major and minor versions +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
major + + +number + + + + The major version
minor + + +number + + + + The minor version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +OpenGL + + +
+
+ + + + + + + + + + + + + +

withWindowsVersion(version, servicePack) → {WindowsVersion}

+ + + + + + +
+ Specifies the default windows version +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
version + + +string + + + + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31
servicePack + + +string + + + + e.g. sp3
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

wizard(wizard) → {Resource}

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

wizard(wizardopt) → {SetupWizard|Wine}

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

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) → {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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

dosConfigFile() → {string}

+ + + + + + +
+ Fetch the prefix dosbox configuration file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has finished, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

downloadStarted(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has started +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has started, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

environment(environment) → {WineShortcut}

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

environment(environment) → {QuickScript}

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

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}

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

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 + + +
+
+ + + + + + + + + + + + + +

getContainer() → {string}

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

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

isHdpi() → {boolean}

+ + + + + + +
+ Fetches whether hdpi is enabled or not +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if hdpi is enabled, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

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) → {Resource}

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

name(name) → {WineShortcut}

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

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(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 + + +
+
+ + + + + + + + + + + + + +

prefix(prefix) → {WineShortcut}

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

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) → {WineShortcut}

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

trustLevel(trustlevel) → {QuickScript}

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

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:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application executable
os + + +string + + + + The windows version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

withCpuCycles(cpuCycles) → {Dosbox}

+ + + + + + +
+ Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
cpuCycles + + +int + + + + (example: max 95% limit 33000)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withDimensions(width, height) → {VirtualDesktop}

+ + + + + + +
+ Specifies the dimensions of the virtual desktop +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
width + + +number + + + + width of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +VirtualDesktop + + +
+
+ + + + + + + + + + + + + +

withDriver(driver) → {SoundDriver}

+ + + + + + +
+ Specifies the used sound driver +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
driver + + +string + + + + alsa or pulse
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +SoundDriver + + +
+
+ + + + + + + + + + + + + +

withExtension(extension) → {NativeApplication}

+ + + + + + +
+ Specifies the file extension +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
extension + + +string + + + + The file extension (pdf, txt, rtf)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +NativeApplication + + +
+
+ + + + + + + + + + + + + +

withHdpi(hdpi) → {HDPI}

+ + + + + + +
+ Specifies whether hdpi should be enabled or not +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
hdpi + + +boolean + + + + true if hdpi shall be enabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + + + + + + + + + + + + +

withManaged(managed) → {Managed}

+ + + + + + +
+ Specifies the global managed state +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
managed + + +boolean + + + + True if it shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withManagedApplication(application, managed) → {Managed}

+ + + + + + +
+ Specifies the managed state for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application
managed + + +boolean + + + + True if the application shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withMemSize(memSize) → {Dosbox}

+ + + + + + +
+ Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
memSize + + +int + + + + The memory size
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {FontSmoothing}

+ + + + + + +
+ Specifies the used font smoothing mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "RGB", "BGR" or "Gray Scale"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {GLSL}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + enabled or disabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +GLSL + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {TakeFocus}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "Y" or "N"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {DirectDrawRenderer}

+ + + + + + +
+ Selects the used direct draw mode (either gdi or opengl) +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + gdi or opengl
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +DirectDrawRenderer + + +
+
+ + + + + + + + + + + + + +

withRenderAspect(renderAspect) → {Dosbox}

+ + + + + + +
+ Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+ + + + + + +
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

withSetting(key, value) → {Dosbox}

+ + + + + + +
+ Sets a dosbox setting +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
key + + +string + + + + The key of the setting (example dosbox_memsize)
value + + +any + + + + The value to be set
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withVersion(major, minor) → {OpenGL}

+ + + + + + +
+ Specifies the major and minor versions +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
major + + +number + + + + The major version
minor + + +number + + + + The minor version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +OpenGL + + +
+
+ + + + + + + + + + + + + +

withWindowsVersion(version, servicePack) → {WindowsVersion}

+ + + + + + +
+ Specifies the default windows version +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
version + + +string + + + + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31
servicePack + + +string + + + + e.g. sp3
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

wizard(wizard) → {Resource}

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

wizard(wizardopt) → {SetupWizard|Wine}

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

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) → {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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

dosConfigFile() → {string}

+ + + + + + +
+ Fetch the prefix dosbox configuration file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has finished, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

downloadStarted(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has started +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has started, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

environment(environment) → {WineShortcut}

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

environment(environment) → {QuickScript}

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

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}

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

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 + + +
+
+ + + + + + + + + + + + + +

getContainer() → {string}

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

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

isHdpi() → {boolean}

+ + + + + + +
+ Fetches whether hdpi is enabled or not +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if hdpi is enabled, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

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) → {Resource}

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

name(name) → {WineShortcut}

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

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(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 + + +
+
+ + + + + + + + + + + + + +

prefix(prefix) → {WineShortcut}

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

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) → {WineShortcut}

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

trustLevel(trustlevel) → {QuickScript}

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

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:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application executable
os + + +string + + + + The windows version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

withCpuCycles(cpuCycles) → {Dosbox}

+ + + + + + +
+ Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
cpuCycles + + +int + + + + (example: max 95% limit 33000)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withDimensions(width, height) → {VirtualDesktop}

+ + + + + + +
+ Specifies the dimensions of the virtual desktop +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
width + + +number + + + + width of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +VirtualDesktop + + +
+
+ + + + + + + + + + + + + +

withDriver(driver) → {SoundDriver}

+ + + + + + +
+ Specifies the used sound driver +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
driver + + +string + + + + alsa or pulse
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +SoundDriver + + +
+
+ + + + + + + + + + + + + +

withExtension(extension) → {NativeApplication}

+ + + + + + +
+ Specifies the file extension +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
extension + + +string + + + + The file extension (pdf, txt, rtf)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +NativeApplication + + +
+
+ + + + + + + + + + + + + +

withHdpi(hdpi) → {HDPI}

+ + + + + + +
+ Specifies whether hdpi should be enabled or not +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
hdpi + + +boolean + + + + true if hdpi shall be enabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + + + + + + + + + + + + +

withManaged(managed) → {Managed}

+ + + + + + +
+ Specifies the global managed state +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
managed + + +boolean + + + + True if it shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withManagedApplication(application, managed) → {Managed}

+ + + + + + +
+ Specifies the managed state for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application
managed + + +boolean + + + + True if the application shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withMemSize(memSize) → {Dosbox}

+ + + + + + +
+ Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
memSize + + +int + + + + The memory size
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {FontSmoothing}

+ + + + + + +
+ Specifies the used font smoothing mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "RGB", "BGR" or "Gray Scale"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {GLSL}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + enabled or disabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +GLSL + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {TakeFocus}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "Y" or "N"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {DirectDrawRenderer}

+ + + + + + +
+ Selects the used direct draw mode (either gdi or opengl) +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + gdi or opengl
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +DirectDrawRenderer + + +
+
+ + + + + + + + + + + + + +

withRenderAspect(renderAspect) → {Dosbox}

+ + + + + + +
+ Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+ + + + + + +
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

withSetting(key, value) → {Dosbox}

+ + + + + + +
+ Sets a dosbox setting +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
key + + +string + + + + The key of the setting (example dosbox_memsize)
value + + +any + + + + The value to be set
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withVersion(major, minor) → {OpenGL}

+ + + + + + +
+ Specifies the major and minor versions +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
major + + +number + + + + The major version
minor + + +number + + + + The minor version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +OpenGL + + +
+
+ + + + + + + + + + + + + +

withWindowsVersion(version, servicePack) → {WindowsVersion}

+ + + + + + +
+ Specifies the default windows version +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
version + + +string + + + + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31
servicePack + + +string + + + + e.g. sp3
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

wizard(wizard) → {Resource}

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

wizard(wizardopt) → {SetupWizard|Wine}

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

wizard(wizard) → {Downloader}

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

default()

+ +
Plugin to use native application for a certain file extension
+ + +
+ +
+
+ + + + +

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) → {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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

dosConfigFile() → {string}

+ + + + + + +
+ Fetch the prefix dosbox configuration file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has finished, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

downloadStarted(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has started +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has started, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

environment(environment) → {WineShortcut}

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

environment(environment) → {QuickScript}

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

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}

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

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 + + +
+
+ + + + + + + + + + + + + +

getContainer() → {string}

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

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

isHdpi() → {boolean}

+ + + + + + +
+ Fetches whether hdpi is enabled or not +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if hdpi is enabled, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

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) → {Resource}

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

name(name) → {WineShortcut}

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

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(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 + + +
+
+ + + + + + + + + + + + + +

prefix(prefix) → {WineShortcut}

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

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) → {WineShortcut}

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

trustLevel(trustlevel) → {QuickScript}

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

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:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application executable
os + + +string + + + + The windows version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

withCpuCycles(cpuCycles) → {Dosbox}

+ + + + + + +
+ Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
cpuCycles + + +int + + + + (example: max 95% limit 33000)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withDimensions(width, height) → {VirtualDesktop}

+ + + + + + +
+ Specifies the dimensions of the virtual desktop +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
width + + +number + + + + width of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +VirtualDesktop + + +
+
+ + + + + + + + + + + + + +

withDriver(driver) → {SoundDriver}

+ + + + + + +
+ Specifies the used sound driver +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
driver + + +string + + + + alsa or pulse
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +SoundDriver + + +
+
+ + + + + + + + + + + + + +

withExtension(extension) → {NativeApplication}

+ + + + + + +
+ Specifies the file extension +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
extension + + +string + + + + The file extension (pdf, txt, rtf)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +NativeApplication + + +
+
+ + + + + + + + + + + + + +

withHdpi(hdpi) → {HDPI}

+ + + + + + +
+ Specifies whether hdpi should be enabled or not +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
hdpi + + +boolean + + + + true if hdpi shall be enabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + + + + + + + + + + + + +

withManaged(managed) → {Managed}

+ + + + + + +
+ Specifies the global managed state +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
managed + + +boolean + + + + True if it shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withManagedApplication(application, managed) → {Managed}

+ + + + + + +
+ Specifies the managed state for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application
managed + + +boolean + + + + True if the application shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withMemSize(memSize) → {Dosbox}

+ + + + + + +
+ Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
memSize + + +int + + + + The memory size
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {FontSmoothing}

+ + + + + + +
+ Specifies the used font smoothing mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "RGB", "BGR" or "Gray Scale"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {GLSL}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + enabled or disabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +GLSL + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {TakeFocus}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "Y" or "N"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {DirectDrawRenderer}

+ + + + + + +
+ Selects the used direct draw mode (either gdi or opengl) +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + gdi or opengl
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +DirectDrawRenderer + + +
+
+ + + + + + + + + + + + + +

withRenderAspect(renderAspect) → {Dosbox}

+ + + + + + +
+ Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+ + + + + + +
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

withSetting(key, value) → {Dosbox}

+ + + + + + +
+ Sets a dosbox setting +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
key + + +string + + + + The key of the setting (example dosbox_memsize)
value + + +any + + + + The value to be set
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withVersion(major, minor) → {OpenGL}

+ + + + + + +
+ Specifies the major and minor versions +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
major + + +number + + + + The major version
minor + + +number + + + + The minor version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +OpenGL + + +
+
+ + + + + + + + + + + + + +

withWindowsVersion(version, servicePack) → {WindowsVersion}

+ + + + + + +
+ Specifies the default windows version +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
version + + +string + + + + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31
servicePack + + +string + + + + e.g. sp3
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

wizard(wizard) → {Resource}

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

wizard(wizardopt) → {SetupWizard|Wine}

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

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) → {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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

dosConfigFile() → {string}

+ + + + + + +
+ Fetch the prefix dosbox configuration file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has finished, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

downloadStarted(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has started +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has started, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

environment(environment) → {WineShortcut}

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

environment(environment) → {QuickScript}

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

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}

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

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 + + +
+
+ + + + + + + + + + + + + +

getContainer() → {string}

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

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

isHdpi() → {boolean}

+ + + + + + +
+ Fetches whether hdpi is enabled or not +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if hdpi is enabled, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

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) → {Resource}

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

name(name) → {WineShortcut}

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

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(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 + + +
+
+ + + + + + + + + + + + + +

prefix(prefix) → {WineShortcut}

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

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) → {WineShortcut}

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

trustLevel(trustlevel) → {QuickScript}

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

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:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application executable
os + + +string + + + + The windows version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

withCpuCycles(cpuCycles) → {Dosbox}

+ + + + + + +
+ Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
cpuCycles + + +int + + + + (example: max 95% limit 33000)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withDimensions(width, height) → {VirtualDesktop}

+ + + + + + +
+ Specifies the dimensions of the virtual desktop +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
width + + +number + + + + width of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +VirtualDesktop + + +
+
+ + + + + + + + + + + + + +

withDriver(driver) → {SoundDriver}

+ + + + + + +
+ Specifies the used sound driver +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
driver + + +string + + + + alsa or pulse
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +SoundDriver + + +
+
+ + + + + + + + + + + + + +

withExtension(extension) → {NativeApplication}

+ + + + + + +
+ Specifies the file extension +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
extension + + +string + + + + The file extension (pdf, txt, rtf)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +NativeApplication + + +
+
+ + + + + + + + + + + + + +

withHdpi(hdpi) → {HDPI}

+ + + + + + +
+ Specifies whether hdpi should be enabled or not +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
hdpi + + +boolean + + + + true if hdpi shall be enabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + + + + + + + + + + + + +

withManaged(managed) → {Managed}

+ + + + + + +
+ Specifies the global managed state +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
managed + + +boolean + + + + True if it shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withManagedApplication(application, managed) → {Managed}

+ + + + + + +
+ Specifies the managed state for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application
managed + + +boolean + + + + True if the application shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withMemSize(memSize) → {Dosbox}

+ + + + + + +
+ Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
memSize + + +int + + + + The memory size
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {FontSmoothing}

+ + + + + + +
+ Specifies the used font smoothing mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "RGB", "BGR" or "Gray Scale"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {GLSL}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + enabled or disabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +GLSL + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {TakeFocus}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "Y" or "N"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {DirectDrawRenderer}

+ + + + + + +
+ Selects the used direct draw mode (either gdi or opengl) +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + gdi or opengl
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +DirectDrawRenderer + + +
+
+ + + + + + + + + + + + + +

withRenderAspect(renderAspect) → {Dosbox}

+ + + + + + +
+ Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+ + + + + + +
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

withSetting(key, value) → {Dosbox}

+ + + + + + +
+ Sets a dosbox setting +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
key + + +string + + + + The key of the setting (example dosbox_memsize)
value + + +any + + + + The value to be set
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withVersion(major, minor) → {OpenGL}

+ + + + + + +
+ Specifies the major and minor versions +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
major + + +number + + + + The major version
minor + + +number + + + + The minor version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +OpenGL + + +
+
+ + + + + + + + + + + + + +

withWindowsVersion(version, servicePack) → {WindowsVersion}

+ + + + + + +
+ Specifies the default windows version +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
version + + +string + + + + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31
servicePack + + +string + + + + e.g. sp3
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

wizard(wizard) → {Resource}

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

wizard(wizardopt) → {SetupWizard|Wine}

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

wizard(wizard) → {Downloader}

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

default()

+ +
Plugin to disable the crashdialog
+ + +
+ +
+
+ + + + +

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) → {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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

dosConfigFile() → {string}

+ + + + + + +
+ Fetch the prefix dosbox configuration file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has finished, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

downloadStarted(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has started +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has started, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

environment(environment) → {WineShortcut}

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

environment(environment) → {QuickScript}

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

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}

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

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 + + +
+
+ + + + + + + + + + + + + +

getContainer() → {string}

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

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

isHdpi() → {boolean}

+ + + + + + +
+ Fetches whether hdpi is enabled or not +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if hdpi is enabled, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

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) → {Resource}

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

name(name) → {WineShortcut}

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

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(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 + + +
+
+ + + + + + + + + + + + + +

prefix(prefix) → {WineShortcut}

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

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) → {WineShortcut}

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

trustLevel(trustlevel) → {QuickScript}

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

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:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application executable
os + + +string + + + + The windows version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

withCpuCycles(cpuCycles) → {Dosbox}

+ + + + + + +
+ Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
cpuCycles + + +int + + + + (example: max 95% limit 33000)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withDimensions(width, height) → {VirtualDesktop}

+ + + + + + +
+ Specifies the dimensions of the virtual desktop +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
width + + +number + + + + width of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +VirtualDesktop + + +
+
+ + + + + + + + + + + + + +

withDriver(driver) → {SoundDriver}

+ + + + + + +
+ Specifies the used sound driver +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
driver + + +string + + + + alsa or pulse
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +SoundDriver + + +
+
+ + + + + + + + + + + + + +

withExtension(extension) → {NativeApplication}

+ + + + + + +
+ Specifies the file extension +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
extension + + +string + + + + The file extension (pdf, txt, rtf)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +NativeApplication + + +
+
+ + + + + + + + + + + + + +

withHdpi(hdpi) → {HDPI}

+ + + + + + +
+ Specifies whether hdpi should be enabled or not +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
hdpi + + +boolean + + + + true if hdpi shall be enabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + + + + + + + + + + + + +

withManaged(managed) → {Managed}

+ + + + + + +
+ Specifies the global managed state +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
managed + + +boolean + + + + True if it shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withManagedApplication(application, managed) → {Managed}

+ + + + + + +
+ Specifies the managed state for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application
managed + + +boolean + + + + True if the application shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withMemSize(memSize) → {Dosbox}

+ + + + + + +
+ Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
memSize + + +int + + + + The memory size
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {FontSmoothing}

+ + + + + + +
+ Specifies the used font smoothing mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "RGB", "BGR" or "Gray Scale"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {GLSL}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + enabled or disabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +GLSL + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {TakeFocus}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "Y" or "N"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {DirectDrawRenderer}

+ + + + + + +
+ Selects the used direct draw mode (either gdi or opengl) +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + gdi or opengl
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +DirectDrawRenderer + + +
+
+ + + + + + + + + + + + + +

withRenderAspect(renderAspect) → {Dosbox}

+ + + + + + +
+ Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+ + + + + + +
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

withSetting(key, value) → {Dosbox}

+ + + + + + +
+ Sets a dosbox setting +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
key + + +string + + + + The key of the setting (example dosbox_memsize)
value + + +any + + + + The value to be set
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withVersion(major, minor) → {OpenGL}

+ + + + + + +
+ Specifies the major and minor versions +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
major + + +number + + + + The major version
minor + + +number + + + + The minor version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +OpenGL + + +
+
+ + + + + + + + + + + + + +

withWindowsVersion(version, servicePack) → {WindowsVersion}

+ + + + + + +
+ Specifies the default windows version +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
version + + +string + + + + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31
servicePack + + +string + + + + e.g. sp3
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

wizard(wizard) → {Resource}

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

wizard(wizardopt) → {SetupWizard|Wine}

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

wizard(wizard) → {Downloader}

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

default()

+ +
Wine main 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) → {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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

dosConfigFile() → {string}

+ + + + + + +
+ Fetch the prefix dosbox configuration file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has finished, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

downloadStarted(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has started +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has started, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

environment(environment) → {WineShortcut}

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

environment(environment) → {QuickScript}

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

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}

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

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 + + +
+
+ + + + + + + + + + + + + +

getContainer() → {string}

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

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

isHdpi() → {boolean}

+ + + + + + +
+ Fetches whether hdpi is enabled or not +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if hdpi is enabled, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

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) → {Resource}

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

name(name) → {WineShortcut}

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

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(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 + + +
+
+ + + + + + + + + + + + + +

prefix(prefix) → {WineShortcut}

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

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) → {WineShortcut}

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

trustLevel(trustlevel) → {QuickScript}

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

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:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application executable
os + + +string + + + + The windows version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

withCpuCycles(cpuCycles) → {Dosbox}

+ + + + + + +
+ Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
cpuCycles + + +int + + + + (example: max 95% limit 33000)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withDimensions(width, height) → {VirtualDesktop}

+ + + + + + +
+ Specifies the dimensions of the virtual desktop +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
width + + +number + + + + width of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +VirtualDesktop + + +
+
+ + + + + + + + + + + + + +

withDriver(driver) → {SoundDriver}

+ + + + + + +
+ Specifies the used sound driver +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
driver + + +string + + + + alsa or pulse
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +SoundDriver + + +
+
+ + + + + + + + + + + + + +

withExtension(extension) → {NativeApplication}

+ + + + + + +
+ Specifies the file extension +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
extension + + +string + + + + The file extension (pdf, txt, rtf)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +NativeApplication + + +
+
+ + + + + + + + + + + + + +

withHdpi(hdpi) → {HDPI}

+ + + + + + +
+ Specifies whether hdpi should be enabled or not +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
hdpi + + +boolean + + + + true if hdpi shall be enabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + + + + + + + + + + + + +

withManaged(managed) → {Managed}

+ + + + + + +
+ Specifies the global managed state +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
managed + + +boolean + + + + True if it shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withManagedApplication(application, managed) → {Managed}

+ + + + + + +
+ Specifies the managed state for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application
managed + + +boolean + + + + True if the application shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withMemSize(memSize) → {Dosbox}

+ + + + + + +
+ Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
memSize + + +int + + + + The memory size
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {FontSmoothing}

+ + + + + + +
+ Specifies the used font smoothing mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "RGB", "BGR" or "Gray Scale"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {GLSL}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + enabled or disabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +GLSL + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {TakeFocus}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "Y" or "N"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {DirectDrawRenderer}

+ + + + + + +
+ Selects the used direct draw mode (either gdi or opengl) +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + gdi or opengl
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +DirectDrawRenderer + + +
+
+ + + + + + + + + + + + + +

withRenderAspect(renderAspect) → {Dosbox}

+ + + + + + +
+ Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+ + + + + + +
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

withSetting(key, value) → {Dosbox}

+ + + + + + +
+ Sets a dosbox setting +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
key + + +string + + + + The key of the setting (example dosbox_memsize)
value + + +any + + + + The value to be set
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withVersion(major, minor) → {OpenGL}

+ + + + + + +
+ Specifies the major and minor versions +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
major + + +number + + + + The major version
minor + + +number + + + + The minor version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +OpenGL + + +
+
+ + + + + + + + + + + + + +

withWindowsVersion(version, servicePack) → {WindowsVersion}

+ + + + + + +
+ Specifies the default windows version +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
version + + +string + + + + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31
servicePack + + +string + + + + e.g. sp3
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

wizard(wizard) → {Resource}

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

wizard(wizardopt) → {SetupWizard|Wine}

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

wizard(wizard) → {Downloader}

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

default()

+ +
Plugin to provide Regedit support
+ + +
+ +
+
+ + + + +

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) → {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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

dosConfigFile() → {string}

+ + + + + + +
+ Fetch the prefix dosbox configuration file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has finished, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

downloadStarted(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has started +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has started, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

environment(environment) → {WineShortcut}

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

environment(environment) → {QuickScript}

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

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}

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

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 + + +
+
+ + + + + + + + + + + + + +

getContainer() → {string}

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

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

isHdpi() → {boolean}

+ + + + + + +
+ Fetches whether hdpi is enabled or not +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if hdpi is enabled, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

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) → {Resource}

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

name(name) → {WineShortcut}

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

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(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 + + +
+
+ + + + + + + + + + + + + +

prefix(prefix) → {WineShortcut}

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

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) → {WineShortcut}

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

trustLevel(trustlevel) → {QuickScript}

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

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:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application executable
os + + +string + + + + The windows version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

withCpuCycles(cpuCycles) → {Dosbox}

+ + + + + + +
+ Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
cpuCycles + + +int + + + + (example: max 95% limit 33000)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withDimensions(width, height) → {VirtualDesktop}

+ + + + + + +
+ Specifies the dimensions of the virtual desktop +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
width + + +number + + + + width of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +VirtualDesktop + + +
+
+ + + + + + + + + + + + + +

withDriver(driver) → {SoundDriver}

+ + + + + + +
+ Specifies the used sound driver +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
driver + + +string + + + + alsa or pulse
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +SoundDriver + + +
+
+ + + + + + + + + + + + + +

withExtension(extension) → {NativeApplication}

+ + + + + + +
+ Specifies the file extension +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
extension + + +string + + + + The file extension (pdf, txt, rtf)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +NativeApplication + + +
+
+ + + + + + + + + + + + + +

withHdpi(hdpi) → {HDPI}

+ + + + + + +
+ Specifies whether hdpi should be enabled or not +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
hdpi + + +boolean + + + + true if hdpi shall be enabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + + + + + + + + + + + + +

withManaged(managed) → {Managed}

+ + + + + + +
+ Specifies the global managed state +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
managed + + +boolean + + + + True if it shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withManagedApplication(application, managed) → {Managed}

+ + + + + + +
+ Specifies the managed state for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application
managed + + +boolean + + + + True if the application shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withMemSize(memSize) → {Dosbox}

+ + + + + + +
+ Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
memSize + + +int + + + + The memory size
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {FontSmoothing}

+ + + + + + +
+ Specifies the used font smoothing mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "RGB", "BGR" or "Gray Scale"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {GLSL}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + enabled or disabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +GLSL + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {TakeFocus}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "Y" or "N"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {DirectDrawRenderer}

+ + + + + + +
+ Selects the used direct draw mode (either gdi or opengl) +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + gdi or opengl
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +DirectDrawRenderer + + +
+
+ + + + + + + + + + + + + +

withRenderAspect(renderAspect) → {Dosbox}

+ + + + + + +
+ Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+ + + + + + +
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

withSetting(key, value) → {Dosbox}

+ + + + + + +
+ Sets a dosbox setting +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
key + + +string + + + + The key of the setting (example dosbox_memsize)
value + + +any + + + + The value to be set
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withVersion(major, minor) → {OpenGL}

+ + + + + + +
+ Specifies the major and minor versions +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
major + + +number + + + + The major version
minor + + +number + + + + The minor version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +OpenGL + + +
+
+ + + + + + + + + + + + + +

withWindowsVersion(version, servicePack) → {WindowsVersion}

+ + + + + + +
+ Specifies the default windows version +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
version + + +string + + + + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31
servicePack + + +string + + + + e.g. sp3
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

wizard(wizard) → {Resource}

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

wizard(wizardopt) → {SetupWizard|Wine}

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

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) → {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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

dosConfigFile() → {string}

+ + + + + + +
+ Fetch the prefix dosbox configuration file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has finished, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

downloadStarted(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has started +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has started, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

environment(environment) → {WineShortcut}

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

environment(environment) → {QuickScript}

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

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}

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

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 + + +
+
+ + + + + + + + + + + + + +

getContainer() → {string}

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

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

isHdpi() → {boolean}

+ + + + + + +
+ Fetches whether hdpi is enabled or not +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if hdpi is enabled, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

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) → {Resource}

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

name(name) → {WineShortcut}

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

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(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 + + +
+
+ + + + + + + + + + + + + +

prefix(prefix) → {WineShortcut}

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

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) → {WineShortcut}

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

trustLevel(trustlevel) → {QuickScript}

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

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:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application executable
os + + +string + + + + The windows version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

withCpuCycles(cpuCycles) → {Dosbox}

+ + + + + + +
+ Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
cpuCycles + + +int + + + + (example: max 95% limit 33000)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withDimensions(width, height) → {VirtualDesktop}

+ + + + + + +
+ Specifies the dimensions of the virtual desktop +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
width + + +number + + + + width of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +VirtualDesktop + + +
+
+ + + + + + + + + + + + + +

withDriver(driver) → {SoundDriver}

+ + + + + + +
+ Specifies the used sound driver +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
driver + + +string + + + + alsa or pulse
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +SoundDriver + + +
+
+ + + + + + + + + + + + + +

withExtension(extension) → {NativeApplication}

+ + + + + + +
+ Specifies the file extension +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
extension + + +string + + + + The file extension (pdf, txt, rtf)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +NativeApplication + + +
+
+ + + + + + + + + + + + + +

withHdpi(hdpi) → {HDPI}

+ + + + + + +
+ Specifies whether hdpi should be enabled or not +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
hdpi + + +boolean + + + + true if hdpi shall be enabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + + + + + + + + + + + + +

withManaged(managed) → {Managed}

+ + + + + + +
+ Specifies the global managed state +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
managed + + +boolean + + + + True if it shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withManagedApplication(application, managed) → {Managed}

+ + + + + + +
+ Specifies the managed state for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application
managed + + +boolean + + + + True if the application shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withMemSize(memSize) → {Dosbox}

+ + + + + + +
+ Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
memSize + + +int + + + + The memory size
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {FontSmoothing}

+ + + + + + +
+ Specifies the used font smoothing mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "RGB", "BGR" or "Gray Scale"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {GLSL}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + enabled or disabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +GLSL + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {TakeFocus}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "Y" or "N"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {DirectDrawRenderer}

+ + + + + + +
+ Selects the used direct draw mode (either gdi or opengl) +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + gdi or opengl
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +DirectDrawRenderer + + +
+
+ + + + + + + + + + + + + +

withRenderAspect(renderAspect) → {Dosbox}

+ + + + + + +
+ Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+ + + + + + +
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

withSetting(key, value) → {Dosbox}

+ + + + + + +
+ Sets a dosbox setting +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
key + + +string + + + + The key of the setting (example dosbox_memsize)
value + + +any + + + + The value to be set
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withVersion(major, minor) → {OpenGL}

+ + + + + + +
+ Specifies the major and minor versions +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
major + + +number + + + + The major version
minor + + +number + + + + The minor version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +OpenGL + + +
+
+ + + + + + + + + + + + + +

withWindowsVersion(version, servicePack) → {WindowsVersion}

+ + + + + + +
+ Specifies the default windows version +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
version + + +string + + + + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31
servicePack + + +string + + + + e.g. sp3
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

wizard(wizard) → {Resource}

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

wizard(wizardopt) → {SetupWizard|Wine}

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

wizard(wizard) → {Downloader}

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

default()

+ +
Plugin to run "regsvr32"
+ + +
+ +
+
+ + + + +

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) → {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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

dosConfigFile() → {string}

+ + + + + + +
+ Fetch the prefix dosbox configuration file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has finished, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

downloadStarted(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has started +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has started, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

environment(environment) → {WineShortcut}

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

environment(environment) → {QuickScript}

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

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}

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

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 + + +
+
+ + + + + + + + + + + + + +

getContainer() → {string}

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

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

isHdpi() → {boolean}

+ + + + + + +
+ Fetches whether hdpi is enabled or not +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if hdpi is enabled, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

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) → {Resource}

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

name(name) → {WineShortcut}

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

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(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 + + +
+
+ + + + + + + + + + + + + +

prefix(prefix) → {WineShortcut}

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

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) → {WineShortcut}

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

trustLevel(trustlevel) → {QuickScript}

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

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:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application executable
os + + +string + + + + The windows version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

withCpuCycles(cpuCycles) → {Dosbox}

+ + + + + + +
+ Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
cpuCycles + + +int + + + + (example: max 95% limit 33000)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withDimensions(width, height) → {VirtualDesktop}

+ + + + + + +
+ Specifies the dimensions of the virtual desktop +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
width + + +number + + + + width of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +VirtualDesktop + + +
+
+ + + + + + + + + + + + + +

withDriver(driver) → {SoundDriver}

+ + + + + + +
+ Specifies the used sound driver +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
driver + + +string + + + + alsa or pulse
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +SoundDriver + + +
+
+ + + + + + + + + + + + + +

withExtension(extension) → {NativeApplication}

+ + + + + + +
+ Specifies the file extension +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
extension + + +string + + + + The file extension (pdf, txt, rtf)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +NativeApplication + + +
+
+ + + + + + + + + + + + + +

withHdpi(hdpi) → {HDPI}

+ + + + + + +
+ Specifies whether hdpi should be enabled or not +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
hdpi + + +boolean + + + + true if hdpi shall be enabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + + + + + + + + + + + + +

withManaged(managed) → {Managed}

+ + + + + + +
+ Specifies the global managed state +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
managed + + +boolean + + + + True if it shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withManagedApplication(application, managed) → {Managed}

+ + + + + + +
+ Specifies the managed state for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application
managed + + +boolean + + + + True if the application shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withMemSize(memSize) → {Dosbox}

+ + + + + + +
+ Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
memSize + + +int + + + + The memory size
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {FontSmoothing}

+ + + + + + +
+ Specifies the used font smoothing mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "RGB", "BGR" or "Gray Scale"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {GLSL}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + enabled or disabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +GLSL + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {TakeFocus}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "Y" or "N"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {DirectDrawRenderer}

+ + + + + + +
+ Selects the used direct draw mode (either gdi or opengl) +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + gdi or opengl
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +DirectDrawRenderer + + +
+
+ + + + + + + + + + + + + +

withRenderAspect(renderAspect) → {Dosbox}

+ + + + + + +
+ Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+ + + + + + +
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

withSetting(key, value) → {Dosbox}

+ + + + + + +
+ Sets a dosbox setting +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
key + + +string + + + + The key of the setting (example dosbox_memsize)
value + + +any + + + + The value to be set
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withVersion(major, minor) → {OpenGL}

+ + + + + + +
+ Specifies the major and minor versions +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
major + + +number + + + + The major version
minor + + +number + + + + The minor version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +OpenGL + + +
+
+ + + + + + + + + + + + + +

withWindowsVersion(version, servicePack) → {WindowsVersion}

+ + + + + + +
+ Specifies the default windows version +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
version + + +string + + + + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31
servicePack + + +string + + + + e.g. sp3
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

wizard(wizard) → {Resource}

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

wizard(wizardopt) → {SetupWizard|Wine}

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

wizard(wizard) → {Downloader}

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

default()

+ +
Plugin to set the sound driver
+ + +
+ +
+
+ + + + +

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) → {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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

dosConfigFile() → {string}

+ + + + + + +
+ Fetch the prefix dosbox configuration file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has finished, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

downloadStarted(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has started +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has started, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

environment(environment) → {WineShortcut}

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

environment(environment) → {QuickScript}

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

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}

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

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 + + +
+
+ + + + + + + + + + + + + +

getContainer() → {string}

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

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

isHdpi() → {boolean}

+ + + + + + +
+ Fetches whether hdpi is enabled or not +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if hdpi is enabled, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

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) → {Resource}

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

name(name) → {WineShortcut}

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

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(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 + + +
+
+ + + + + + + + + + + + + +

prefix(prefix) → {WineShortcut}

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

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) → {WineShortcut}

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

trustLevel(trustlevel) → {QuickScript}

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

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:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application executable
os + + +string + + + + The windows version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

withCpuCycles(cpuCycles) → {Dosbox}

+ + + + + + +
+ Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
cpuCycles + + +int + + + + (example: max 95% limit 33000)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withDimensions(width, height) → {VirtualDesktop}

+ + + + + + +
+ Specifies the dimensions of the virtual desktop +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
width + + +number + + + + width of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +VirtualDesktop + + +
+
+ + + + + + + + + + + + + +

withDriver(driver) → {SoundDriver}

+ + + + + + +
+ Specifies the used sound driver +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
driver + + +string + + + + alsa or pulse
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +SoundDriver + + +
+
+ + + + + + + + + + + + + +

withExtension(extension) → {NativeApplication}

+ + + + + + +
+ Specifies the file extension +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
extension + + +string + + + + The file extension (pdf, txt, rtf)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +NativeApplication + + +
+
+ + + + + + + + + + + + + +

withHdpi(hdpi) → {HDPI}

+ + + + + + +
+ Specifies whether hdpi should be enabled or not +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
hdpi + + +boolean + + + + true if hdpi shall be enabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + + + + + + + + + + + + +

withManaged(managed) → {Managed}

+ + + + + + +
+ Specifies the global managed state +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
managed + + +boolean + + + + True if it shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withManagedApplication(application, managed) → {Managed}

+ + + + + + +
+ Specifies the managed state for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application
managed + + +boolean + + + + True if the application shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withMemSize(memSize) → {Dosbox}

+ + + + + + +
+ Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
memSize + + +int + + + + The memory size
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {FontSmoothing}

+ + + + + + +
+ Specifies the used font smoothing mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "RGB", "BGR" or "Gray Scale"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {GLSL}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + enabled or disabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +GLSL + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {TakeFocus}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "Y" or "N"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {DirectDrawRenderer}

+ + + + + + +
+ Selects the used direct draw mode (either gdi or opengl) +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + gdi or opengl
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +DirectDrawRenderer + + +
+
+ + + + + + + + + + + + + +

withRenderAspect(renderAspect) → {Dosbox}

+ + + + + + +
+ Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+ + + + + + +
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

withSetting(key, value) → {Dosbox}

+ + + + + + +
+ Sets a dosbox setting +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
key + + +string + + + + The key of the setting (example dosbox_memsize)
value + + +any + + + + The value to be set
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withVersion(major, minor) → {OpenGL}

+ + + + + + +
+ Specifies the major and minor versions +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
major + + +number + + + + The major version
minor + + +number + + + + The minor version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +OpenGL + + +
+
+ + + + + + + + + + + + + +

withWindowsVersion(version, servicePack) → {WindowsVersion}

+ + + + + + +
+ Specifies the default windows version +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
version + + +string + + + + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31
servicePack + + +string + + + + e.g. sp3
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

wizard(wizard) → {Resource}

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

wizard(wizardopt) → {SetupWizard|Wine}

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

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) → {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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

dosConfigFile() → {string}

+ + + + + + +
+ Fetch the prefix dosbox configuration file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has finished, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

downloadStarted(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has started +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has started, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

environment(environment) → {WineShortcut}

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

environment(environment) → {QuickScript}

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

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}

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

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 + + +
+
+ + + + + + + + + + + + + +

getContainer() → {string}

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

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

isHdpi() → {boolean}

+ + + + + + +
+ Fetches whether hdpi is enabled or not +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if hdpi is enabled, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

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) → {Resource}

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

name(name) → {WineShortcut}

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

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(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 + + +
+
+ + + + + + + + + + + + + +

prefix(prefix) → {WineShortcut}

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

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) → {WineShortcut}

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

trustLevel(trustlevel) → {QuickScript}

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

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:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application executable
os + + +string + + + + The windows version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

withCpuCycles(cpuCycles) → {Dosbox}

+ + + + + + +
+ Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
cpuCycles + + +int + + + + (example: max 95% limit 33000)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withDimensions(width, height) → {VirtualDesktop}

+ + + + + + +
+ Specifies the dimensions of the virtual desktop +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
width + + +number + + + + width of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +VirtualDesktop + + +
+
+ + + + + + + + + + + + + +

withDriver(driver) → {SoundDriver}

+ + + + + + +
+ Specifies the used sound driver +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
driver + + +string + + + + alsa or pulse
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +SoundDriver + + +
+
+ + + + + + + + + + + + + +

withExtension(extension) → {NativeApplication}

+ + + + + + +
+ Specifies the file extension +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
extension + + +string + + + + The file extension (pdf, txt, rtf)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +NativeApplication + + +
+
+ + + + + + + + + + + + + +

withHdpi(hdpi) → {HDPI}

+ + + + + + +
+ Specifies whether hdpi should be enabled or not +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
hdpi + + +boolean + + + + true if hdpi shall be enabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + + + + + + + + + + + + +

withManaged(managed) → {Managed}

+ + + + + + +
+ Specifies the global managed state +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
managed + + +boolean + + + + True if it shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withManagedApplication(application, managed) → {Managed}

+ + + + + + +
+ Specifies the managed state for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application
managed + + +boolean + + + + True if the application shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withMemSize(memSize) → {Dosbox}

+ + + + + + +
+ Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
memSize + + +int + + + + The memory size
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {FontSmoothing}

+ + + + + + +
+ Specifies the used font smoothing mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "RGB", "BGR" or "Gray Scale"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {GLSL}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + enabled or disabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +GLSL + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {TakeFocus}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "Y" or "N"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {DirectDrawRenderer}

+ + + + + + +
+ Selects the used direct draw mode (either gdi or opengl) +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + gdi or opengl
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +DirectDrawRenderer + + +
+
+ + + + + + + + + + + + + +

withRenderAspect(renderAspect) → {Dosbox}

+ + + + + + +
+ Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+ + + + + + +
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

withSetting(key, value) → {Dosbox}

+ + + + + + +
+ Sets a dosbox setting +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
key + + +string + + + + The key of the setting (example dosbox_memsize)
value + + +any + + + + The value to be set
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withVersion(major, minor) → {OpenGL}

+ + + + + + +
+ Specifies the major and minor versions +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
major + + +number + + + + The major version
minor + + +number + + + + The minor version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +OpenGL + + +
+
+ + + + + + + + + + + + + +

withWindowsVersion(version, servicePack) → {WindowsVersion}

+ + + + + + +
+ Specifies the default windows version +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
version + + +string + + + + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31
servicePack + + +string + + + + e.g. sp3
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

wizard(wizard) → {Resource}

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

wizard(wizardopt) → {SetupWizard|Wine}

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

wizard(wizard) → {Downloader}

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

default()

+ +
Plugin to set a Virtual Desktop with window resolution
+ + +
+ +
+
+ + + + +

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) → {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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

dosConfigFile() → {string}

+ + + + + + +
+ Fetch the prefix dosbox configuration file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has finished, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

downloadStarted(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has started +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has started, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

environment(environment) → {WineShortcut}

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

environment(environment) → {QuickScript}

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

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}

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

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 + + +
+
+ + + + + + + + + + + + + +

getContainer() → {string}

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

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

isHdpi() → {boolean}

+ + + + + + +
+ Fetches whether hdpi is enabled or not +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if hdpi is enabled, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

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) → {Resource}

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

name(name) → {WineShortcut}

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

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(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 + + +
+
+ + + + + + + + + + + + + +

prefix(prefix) → {WineShortcut}

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

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) → {WineShortcut}

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

trustLevel(trustlevel) → {QuickScript}

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

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:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application executable
os + + +string + + + + The windows version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

withCpuCycles(cpuCycles) → {Dosbox}

+ + + + + + +
+ Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
cpuCycles + + +int + + + + (example: max 95% limit 33000)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withDimensions(width, height) → {VirtualDesktop}

+ + + + + + +
+ Specifies the dimensions of the virtual desktop +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
width + + +number + + + + width of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +VirtualDesktop + + +
+
+ + + + + + + + + + + + + +

withDriver(driver) → {SoundDriver}

+ + + + + + +
+ Specifies the used sound driver +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
driver + + +string + + + + alsa or pulse
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +SoundDriver + + +
+
+ + + + + + + + + + + + + +

withExtension(extension) → {NativeApplication}

+ + + + + + +
+ Specifies the file extension +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
extension + + +string + + + + The file extension (pdf, txt, rtf)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +NativeApplication + + +
+
+ + + + + + + + + + + + + +

withHdpi(hdpi) → {HDPI}

+ + + + + + +
+ Specifies whether hdpi should be enabled or not +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
hdpi + + +boolean + + + + true if hdpi shall be enabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + + + + + + + + + + + + +

withManaged(managed) → {Managed}

+ + + + + + +
+ Specifies the global managed state +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
managed + + +boolean + + + + True if it shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withManagedApplication(application, managed) → {Managed}

+ + + + + + +
+ Specifies the managed state for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application
managed + + +boolean + + + + True if the application shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withMemSize(memSize) → {Dosbox}

+ + + + + + +
+ Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
memSize + + +int + + + + The memory size
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {FontSmoothing}

+ + + + + + +
+ Specifies the used font smoothing mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "RGB", "BGR" or "Gray Scale"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {GLSL}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + enabled or disabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +GLSL + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {TakeFocus}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "Y" or "N"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {DirectDrawRenderer}

+ + + + + + +
+ Selects the used direct draw mode (either gdi or opengl) +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + gdi or opengl
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +DirectDrawRenderer + + +
+
+ + + + + + + + + + + + + +

withRenderAspect(renderAspect) → {Dosbox}

+ + + + + + +
+ Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+ + + + + + +
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

withSetting(key, value) → {Dosbox}

+ + + + + + +
+ Sets a dosbox setting +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
key + + +string + + + + The key of the setting (example dosbox_memsize)
value + + +any + + + + The value to be set
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withVersion(major, minor) → {OpenGL}

+ + + + + + +
+ Specifies the major and minor versions +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
major + + +number + + + + The major version
minor + + +number + + + + The minor version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +OpenGL + + +
+
+ + + + + + + + + + + + + +

withWindowsVersion(version, servicePack) → {WindowsVersion}

+ + + + + + +
+ Specifies the default windows version +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
version + + +string + + + + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31
servicePack + + +string + + + + e.g. sp3
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

wizard(wizard) → {Resource}

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

wizard(wizardopt) → {SetupWizard|Wine}

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

wizard(wizard) → {Downloader}

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

default()

+ +
Plugin to force 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) → {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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

dosConfigFile() → {string}

+ + + + + + +
+ Fetch the prefix dosbox configuration file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has finished, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

downloadStarted(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has started +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has started, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

environment(environment) → {WineShortcut}

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

environment(environment) → {QuickScript}

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

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}

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

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 + + +
+
+ + + + + + + + + + + + + +

getContainer() → {string}

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

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

isHdpi() → {boolean}

+ + + + + + +
+ Fetches whether hdpi is enabled or not +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if hdpi is enabled, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

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) → {Resource}

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

name(name) → {WineShortcut}

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

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(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 + + +
+
+ + + + + + + + + + + + + +

prefix(prefix) → {WineShortcut}

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

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) → {WineShortcut}

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

trustLevel(trustlevel) → {QuickScript}

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

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:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application executable
os + + +string + + + + The windows version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

withCpuCycles(cpuCycles) → {Dosbox}

+ + + + + + +
+ Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
cpuCycles + + +int + + + + (example: max 95% limit 33000)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withDimensions(width, height) → {VirtualDesktop}

+ + + + + + +
+ Specifies the dimensions of the virtual desktop +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
width + + +number + + + + width of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +VirtualDesktop + + +
+
+ + + + + + + + + + + + + +

withDriver(driver) → {SoundDriver}

+ + + + + + +
+ Specifies the used sound driver +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
driver + + +string + + + + alsa or pulse
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +SoundDriver + + +
+
+ + + + + + + + + + + + + +

withExtension(extension) → {NativeApplication}

+ + + + + + +
+ Specifies the file extension +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
extension + + +string + + + + The file extension (pdf, txt, rtf)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +NativeApplication + + +
+
+ + + + + + + + + + + + + +

withHdpi(hdpi) → {HDPI}

+ + + + + + +
+ Specifies whether hdpi should be enabled or not +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
hdpi + + +boolean + + + + true if hdpi shall be enabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + + + + + + + + + + + + +

withManaged(managed) → {Managed}

+ + + + + + +
+ Specifies the global managed state +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
managed + + +boolean + + + + True if it shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withManagedApplication(application, managed) → {Managed}

+ + + + + + +
+ Specifies the managed state for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application
managed + + +boolean + + + + True if the application shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withMemSize(memSize) → {Dosbox}

+ + + + + + +
+ Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
memSize + + +int + + + + The memory size
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {FontSmoothing}

+ + + + + + +
+ Specifies the used font smoothing mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "RGB", "BGR" or "Gray Scale"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {GLSL}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + enabled or disabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +GLSL + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {TakeFocus}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "Y" or "N"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {DirectDrawRenderer}

+ + + + + + +
+ Selects the used direct draw mode (either gdi or opengl) +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + gdi or opengl
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +DirectDrawRenderer + + +
+
+ + + + + + + + + + + + + +

withRenderAspect(renderAspect) → {Dosbox}

+ + + + + + +
+ Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+ + + + + + +
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

withSetting(key, value) → {Dosbox}

+ + + + + + +
+ Sets a dosbox setting +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
key + + +string + + + + The key of the setting (example dosbox_memsize)
value + + +any + + + + The value to be set
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withVersion(major, minor) → {OpenGL}

+ + + + + + +
+ Specifies the major and minor versions +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
major + + +number + + + + The major version
minor + + +number + + + + The minor version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +OpenGL + + +
+
+ + + + + + + + + + + + + +

withWindowsVersion(version, servicePack) → {WindowsVersion}

+ + + + + + +
+ Specifies the default windows version +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
version + + +string + + + + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31
servicePack + + +string + + + + e.g. sp3
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

wizard(wizard) → {Resource}

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

wizard(wizardopt) → {SetupWizard|Wine}

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

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) → {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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

dosConfigFile() → {string}

+ + + + + + +
+ Fetch the prefix dosbox configuration file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has finished, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

downloadStarted(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has started +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has started, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

environment(environment) → {WineShortcut}

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

environment(environment) → {QuickScript}

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

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}

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

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 + + +
+
+ + + + + + + + + + + + + +

getContainer() → {string}

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

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

isHdpi() → {boolean}

+ + + + + + +
+ Fetches whether hdpi is enabled or not +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if hdpi is enabled, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

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) → {Resource}

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

name(name) → {WineShortcut}

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

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(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 + + +
+
+ + + + + + + + + + + + + +

prefix(prefix) → {WineShortcut}

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

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) → {WineShortcut}

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

trustLevel(trustlevel) → {QuickScript}

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

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:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application executable
os + + +string + + + + The windows version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

withCpuCycles(cpuCycles) → {Dosbox}

+ + + + + + +
+ Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
cpuCycles + + +int + + + + (example: max 95% limit 33000)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withDimensions(width, height) → {VirtualDesktop}

+ + + + + + +
+ Specifies the dimensions of the virtual desktop +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
width + + +number + + + + width of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +VirtualDesktop + + +
+
+ + + + + + + + + + + + + +

withDriver(driver) → {SoundDriver}

+ + + + + + +
+ Specifies the used sound driver +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
driver + + +string + + + + alsa or pulse
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +SoundDriver + + +
+
+ + + + + + + + + + + + + +

withExtension(extension) → {NativeApplication}

+ + + + + + +
+ Specifies the file extension +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
extension + + +string + + + + The file extension (pdf, txt, rtf)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +NativeApplication + + +
+
+ + + + + + + + + + + + + +

withHdpi(hdpi) → {HDPI}

+ + + + + + +
+ Specifies whether hdpi should be enabled or not +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
hdpi + + +boolean + + + + true if hdpi shall be enabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + + + + + + + + + + + + +

withManaged(managed) → {Managed}

+ + + + + + +
+ Specifies the global managed state +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
managed + + +boolean + + + + True if it shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withManagedApplication(application, managed) → {Managed}

+ + + + + + +
+ Specifies the managed state for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application
managed + + +boolean + + + + True if the application shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withMemSize(memSize) → {Dosbox}

+ + + + + + +
+ Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
memSize + + +int + + + + The memory size
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {FontSmoothing}

+ + + + + + +
+ Specifies the used font smoothing mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "RGB", "BGR" or "Gray Scale"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {GLSL}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + enabled or disabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +GLSL + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {TakeFocus}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "Y" or "N"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {DirectDrawRenderer}

+ + + + + + +
+ Selects the used direct draw mode (either gdi or opengl) +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + gdi or opengl
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +DirectDrawRenderer + + +
+
+ + + + + + + + + + + + + +

withRenderAspect(renderAspect) → {Dosbox}

+ + + + + + +
+ Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+ + + + + + +
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

withSetting(key, value) → {Dosbox}

+ + + + + + +
+ Sets a dosbox setting +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
key + + +string + + + + The key of the setting (example dosbox_memsize)
value + + +any + + + + The value to be set
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withVersion(major, minor) → {OpenGL}

+ + + + + + +
+ Specifies the major and minor versions +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
major + + +number + + + + The major version
minor + + +number + + + + The minor version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +OpenGL + + +
+
+ + + + + + + + + + + + + +

withWindowsVersion(version, servicePack) → {WindowsVersion}

+ + + + + + +
+ Specifies the default windows version +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
version + + +string + + + + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31
servicePack + + +string + + + + e.g. sp3
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

wizard(wizard) → {Resource}

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

wizard(wizardopt) → {SetupWizard|Wine}

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

wizard(wizard) → {Downloader}

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

default()

+ +
Plugin to set the windows version
+ + +
+ +
+
+ + + + +

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) → {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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

dosConfigFile() → {string}

+ + + + + + +
+ Fetch the prefix dosbox configuration file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has finished, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

downloadStarted(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has started +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has started, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

environment(environment) → {WineShortcut}

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

environment(environment) → {QuickScript}

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

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}

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

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 + + +
+
+ + + + + + + + + + + + + +

getContainer() → {string}

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

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

isHdpi() → {boolean}

+ + + + + + +
+ Fetches whether hdpi is enabled or not +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if hdpi is enabled, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

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) → {Resource}

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

name(name) → {WineShortcut}

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

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(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 + + +
+
+ + + + + + + + + + + + + +

prefix(prefix) → {WineShortcut}

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

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) → {WineShortcut}

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

trustLevel(trustlevel) → {QuickScript}

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

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:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application executable
os + + +string + + + + The windows version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

withCpuCycles(cpuCycles) → {Dosbox}

+ + + + + + +
+ Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
cpuCycles + + +int + + + + (example: max 95% limit 33000)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withDimensions(width, height) → {VirtualDesktop}

+ + + + + + +
+ Specifies the dimensions of the virtual desktop +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
width + + +number + + + + width of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +VirtualDesktop + + +
+
+ + + + + + + + + + + + + +

withDriver(driver) → {SoundDriver}

+ + + + + + +
+ Specifies the used sound driver +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
driver + + +string + + + + alsa or pulse
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +SoundDriver + + +
+
+ + + + + + + + + + + + + +

withExtension(extension) → {NativeApplication}

+ + + + + + +
+ Specifies the file extension +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
extension + + +string + + + + The file extension (pdf, txt, rtf)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +NativeApplication + + +
+
+ + + + + + + + + + + + + +

withHdpi(hdpi) → {HDPI}

+ + + + + + +
+ Specifies whether hdpi should be enabled or not +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
hdpi + + +boolean + + + + true if hdpi shall be enabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + + + + + + + + + + + + +

withManaged(managed) → {Managed}

+ + + + + + +
+ Specifies the global managed state +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
managed + + +boolean + + + + True if it shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withManagedApplication(application, managed) → {Managed}

+ + + + + + +
+ Specifies the managed state for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application
managed + + +boolean + + + + True if the application shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withMemSize(memSize) → {Dosbox}

+ + + + + + +
+ Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
memSize + + +int + + + + The memory size
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {FontSmoothing}

+ + + + + + +
+ Specifies the used font smoothing mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "RGB", "BGR" or "Gray Scale"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {GLSL}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + enabled or disabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +GLSL + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {TakeFocus}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "Y" or "N"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {DirectDrawRenderer}

+ + + + + + +
+ Selects the used direct draw mode (either gdi or opengl) +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + gdi or opengl
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +DirectDrawRenderer + + +
+
+ + + + + + + + + + + + + +

withRenderAspect(renderAspect) → {Dosbox}

+ + + + + + +
+ Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+ + + + + + +
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

withSetting(key, value) → {Dosbox}

+ + + + + + +
+ Sets a dosbox setting +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
key + + +string + + + + The key of the setting (example dosbox_memsize)
value + + +any + + + + The value to be set
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withVersion(major, minor) → {OpenGL}

+ + + + + + +
+ Specifies the major and minor versions +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
major + + +number + + + + The major version
minor + + +number + + + + The minor version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +OpenGL + + +
+
+ + + + + + + + + + + + + +

withWindowsVersion(version, servicePack) → {WindowsVersion}

+ + + + + + +
+ Specifies the default windows version +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
version + + +string + + + + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31
servicePack + + +string + + + + e.g. sp3
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

wizard(wizard) → {Resource}

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

wizard(wizardopt) → {SetupWizard|Wine}

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

wizard(wizard) → {Downloader}

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

default()

+ +
Tool to open a Wine console
+ + +
+ +
+
+ + + + +

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) → {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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

dosConfigFile() → {string}

+ + + + + + +
+ Fetch the prefix dosbox configuration file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has finished, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

downloadStarted(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has started +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has started, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

environment(environment) → {WineShortcut}

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

environment(environment) → {QuickScript}

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

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}

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

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 + + +
+
+ + + + + + + + + + + + + +

getContainer() → {string}

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

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

isHdpi() → {boolean}

+ + + + + + +
+ Fetches whether hdpi is enabled or not +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if hdpi is enabled, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

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) → {Resource}

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

name(name) → {WineShortcut}

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

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(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 + + +
+
+ + + + + + + + + + + + + +

prefix(prefix) → {WineShortcut}

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

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) → {WineShortcut}

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

trustLevel(trustlevel) → {QuickScript}

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

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:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application executable
os + + +string + + + + The windows version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

withCpuCycles(cpuCycles) → {Dosbox}

+ + + + + + +
+ Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
cpuCycles + + +int + + + + (example: max 95% limit 33000)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withDimensions(width, height) → {VirtualDesktop}

+ + + + + + +
+ Specifies the dimensions of the virtual desktop +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
width + + +number + + + + width of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +VirtualDesktop + + +
+
+ + + + + + + + + + + + + +

withDriver(driver) → {SoundDriver}

+ + + + + + +
+ Specifies the used sound driver +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
driver + + +string + + + + alsa or pulse
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +SoundDriver + + +
+
+ + + + + + + + + + + + + +

withExtension(extension) → {NativeApplication}

+ + + + + + +
+ Specifies the file extension +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
extension + + +string + + + + The file extension (pdf, txt, rtf)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +NativeApplication + + +
+
+ + + + + + + + + + + + + +

withHdpi(hdpi) → {HDPI}

+ + + + + + +
+ Specifies whether hdpi should be enabled or not +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
hdpi + + +boolean + + + + true if hdpi shall be enabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + + + + + + + + + + + + +

withManaged(managed) → {Managed}

+ + + + + + +
+ Specifies the global managed state +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
managed + + +boolean + + + + True if it shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withManagedApplication(application, managed) → {Managed}

+ + + + + + +
+ Specifies the managed state for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application
managed + + +boolean + + + + True if the application shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withMemSize(memSize) → {Dosbox}

+ + + + + + +
+ Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
memSize + + +int + + + + The memory size
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {FontSmoothing}

+ + + + + + +
+ Specifies the used font smoothing mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "RGB", "BGR" or "Gray Scale"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {GLSL}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + enabled or disabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +GLSL + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {TakeFocus}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "Y" or "N"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {DirectDrawRenderer}

+ + + + + + +
+ Selects the used direct draw mode (either gdi or opengl) +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + gdi or opengl
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +DirectDrawRenderer + + +
+
+ + + + + + + + + + + + + +

withRenderAspect(renderAspect) → {Dosbox}

+ + + + + + +
+ Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+ + + + + + +
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

withSetting(key, value) → {Dosbox}

+ + + + + + +
+ Sets a dosbox setting +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
key + + +string + + + + The key of the setting (example dosbox_memsize)
value + + +any + + + + The value to be set
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withVersion(major, minor) → {OpenGL}

+ + + + + + +
+ Specifies the major and minor versions +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
major + + +number + + + + The major version
minor + + +number + + + + The minor version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +OpenGL + + +
+
+ + + + + + + + + + + + + +

withWindowsVersion(version, servicePack) → {WindowsVersion}

+ + + + + + +
+ Specifies the default windows version +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
version + + +string + + + + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31
servicePack + + +string + + + + e.g. sp3
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

wizard(wizard) → {Resource}

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

wizard(wizardopt) → {SetupWizard|Wine}

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

wizard(wizard) → {Downloader}

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

default()

+ +
Tool to uninstall Wine
+ + +
+ +
+
+ + + + +

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) → {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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

dosConfigFile() → {string}

+ + + + + + +
+ Fetch the prefix dosbox configuration file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has finished, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

downloadStarted(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has started +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has started, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

environment(environment) → {WineShortcut}

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

environment(environment) → {QuickScript}

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

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}

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

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 + + +
+
+ + + + + + + + + + + + + +

getContainer() → {string}

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

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

isHdpi() → {boolean}

+ + + + + + +
+ Fetches whether hdpi is enabled or not +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if hdpi is enabled, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

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) → {Resource}

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

name(name) → {WineShortcut}

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

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(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 + + +
+
+ + + + + + + + + + + + + +

prefix(prefix) → {WineShortcut}

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

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) → {WineShortcut}

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

trustLevel(trustlevel) → {QuickScript}

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

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:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application executable
os + + +string + + + + The windows version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

withCpuCycles(cpuCycles) → {Dosbox}

+ + + + + + +
+ Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
cpuCycles + + +int + + + + (example: max 95% limit 33000)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withDimensions(width, height) → {VirtualDesktop}

+ + + + + + +
+ Specifies the dimensions of the virtual desktop +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
width + + +number + + + + width of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +VirtualDesktop + + +
+
+ + + + + + + + + + + + + +

withDriver(driver) → {SoundDriver}

+ + + + + + +
+ Specifies the used sound driver +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
driver + + +string + + + + alsa or pulse
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +SoundDriver + + +
+
+ + + + + + + + + + + + + +

withExtension(extension) → {NativeApplication}

+ + + + + + +
+ Specifies the file extension +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
extension + + +string + + + + The file extension (pdf, txt, rtf)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +NativeApplication + + +
+
+ + + + + + + + + + + + + +

withHdpi(hdpi) → {HDPI}

+ + + + + + +
+ Specifies whether hdpi should be enabled or not +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
hdpi + + +boolean + + + + true if hdpi shall be enabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + + + + + + + + + + + + +

withManaged(managed) → {Managed}

+ + + + + + +
+ Specifies the global managed state +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
managed + + +boolean + + + + True if it shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withManagedApplication(application, managed) → {Managed}

+ + + + + + +
+ Specifies the managed state for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application
managed + + +boolean + + + + True if the application shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withMemSize(memSize) → {Dosbox}

+ + + + + + +
+ Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
memSize + + +int + + + + The memory size
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {FontSmoothing}

+ + + + + + +
+ Specifies the used font smoothing mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "RGB", "BGR" or "Gray Scale"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {GLSL}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + enabled or disabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +GLSL + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {TakeFocus}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "Y" or "N"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {DirectDrawRenderer}

+ + + + + + +
+ Selects the used direct draw mode (either gdi or opengl) +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + gdi or opengl
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +DirectDrawRenderer + + +
+
+ + + + + + + + + + + + + +

withRenderAspect(renderAspect) → {Dosbox}

+ + + + + + +
+ Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+ + + + + + +
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

withSetting(key, value) → {Dosbox}

+ + + + + + +
+ Sets a dosbox setting +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
key + + +string + + + + The key of the setting (example dosbox_memsize)
value + + +any + + + + The value to be set
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withVersion(major, minor) → {OpenGL}

+ + + + + + +
+ Specifies the major and minor versions +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
major + + +number + + + + The major version
minor + + +number + + + + The minor version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +OpenGL + + +
+
+ + + + + + + + + + + + + +

withWindowsVersion(version, servicePack) → {WindowsVersion}

+ + + + + + +
+ Specifies the default windows version +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
version + + +string + + + + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31
servicePack + + +string + + + + e.g. sp3
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

wizard(wizard) → {Resource}

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

wizard(wizardopt) → {SetupWizard|Wine}

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

wizard(wizard) → {Downloader}

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

default()

+ +
Tool to open a terminal in a Wine prefix
+ + +
+ +
+
+ + + + +

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) → {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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

dosConfigFile() → {string}

+ + + + + + +
+ Fetch the prefix dosbox configuration file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has finished, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

downloadStarted(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has started +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has started, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

environment(environment) → {WineShortcut}

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

environment(environment) → {QuickScript}

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

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}

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

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 + + +
+
+ + + + + + + + + + + + + +

getContainer() → {string}

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

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

isHdpi() → {boolean}

+ + + + + + +
+ Fetches whether hdpi is enabled or not +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if hdpi is enabled, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

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) → {Resource}

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

name(name) → {WineShortcut}

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

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(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 + + +
+
+ + + + + + + + + + + + + +

prefix(prefix) → {WineShortcut}

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

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) → {WineShortcut}

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

trustLevel(trustlevel) → {QuickScript}

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

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:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application executable
os + + +string + + + + The windows version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

withCpuCycles(cpuCycles) → {Dosbox}

+ + + + + + +
+ Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
cpuCycles + + +int + + + + (example: max 95% limit 33000)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withDimensions(width, height) → {VirtualDesktop}

+ + + + + + +
+ Specifies the dimensions of the virtual desktop +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
width + + +number + + + + width of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +VirtualDesktop + + +
+
+ + + + + + + + + + + + + +

withDriver(driver) → {SoundDriver}

+ + + + + + +
+ Specifies the used sound driver +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
driver + + +string + + + + alsa or pulse
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +SoundDriver + + +
+
+ + + + + + + + + + + + + +

withExtension(extension) → {NativeApplication}

+ + + + + + +
+ Specifies the file extension +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
extension + + +string + + + + The file extension (pdf, txt, rtf)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +NativeApplication + + +
+
+ + + + + + + + + + + + + +

withHdpi(hdpi) → {HDPI}

+ + + + + + +
+ Specifies whether hdpi should be enabled or not +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
hdpi + + +boolean + + + + true if hdpi shall be enabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + + + + + + + + + + + + +

withManaged(managed) → {Managed}

+ + + + + + +
+ Specifies the global managed state +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
managed + + +boolean + + + + True if it shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withManagedApplication(application, managed) → {Managed}

+ + + + + + +
+ Specifies the managed state for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application
managed + + +boolean + + + + True if the application shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withMemSize(memSize) → {Dosbox}

+ + + + + + +
+ Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
memSize + + +int + + + + The memory size
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {FontSmoothing}

+ + + + + + +
+ Specifies the used font smoothing mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "RGB", "BGR" or "Gray Scale"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {GLSL}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + enabled or disabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +GLSL + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {TakeFocus}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "Y" or "N"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {DirectDrawRenderer}

+ + + + + + +
+ Selects the used direct draw mode (either gdi or opengl) +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + gdi or opengl
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +DirectDrawRenderer + + +
+
+ + + + + + + + + + + + + +

withRenderAspect(renderAspect) → {Dosbox}

+ + + + + + +
+ Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+ + + + + + +
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

withSetting(key, value) → {Dosbox}

+ + + + + + +
+ Sets a dosbox setting +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
key + + +string + + + + The key of the setting (example dosbox_memsize)
value + + +any + + + + The value to be set
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withVersion(major, minor) → {OpenGL}

+ + + + + + +
+ Specifies the major and minor versions +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
major + + +number + + + + The major version
minor + + +number + + + + The minor version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +OpenGL + + +
+
+ + + + + + + + + + + + + +

withWindowsVersion(version, servicePack) → {WindowsVersion}

+ + + + + + +
+ Specifies the default windows version +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
version + + +string + + + + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31
servicePack + + +string + + + + e.g. sp3
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

wizard(wizard) → {Resource}

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

wizard(wizardopt) → {SetupWizard|Wine}

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

wizard(wizard) → {Downloader}

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

default()

+ +
Tool to open the Wine task manager
+ + +
+ +
+
+ + + + +

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) → {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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

dosConfigFile() → {string}

+ + + + + + +
+ Fetch the prefix dosbox configuration file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has finished, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

downloadStarted(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has started +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has started, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

environment(environment) → {WineShortcut}

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

environment(environment) → {QuickScript}

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

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}

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

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 + + +
+
+ + + + + + + + + + + + + +

getContainer() → {string}

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

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

isHdpi() → {boolean}

+ + + + + + +
+ Fetches whether hdpi is enabled or not +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if hdpi is enabled, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

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) → {Resource}

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

name(name) → {WineShortcut}

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

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(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 + + +
+
+ + + + + + + + + + + + + +

prefix(prefix) → {WineShortcut}

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

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) → {WineShortcut}

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

trustLevel(trustlevel) → {QuickScript}

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

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:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application executable
os + + +string + + + + The windows version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

withCpuCycles(cpuCycles) → {Dosbox}

+ + + + + + +
+ Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
cpuCycles + + +int + + + + (example: max 95% limit 33000)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withDimensions(width, height) → {VirtualDesktop}

+ + + + + + +
+ Specifies the dimensions of the virtual desktop +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
width + + +number + + + + width of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +VirtualDesktop + + +
+
+ + + + + + + + + + + + + +

withDriver(driver) → {SoundDriver}

+ + + + + + +
+ Specifies the used sound driver +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
driver + + +string + + + + alsa or pulse
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +SoundDriver + + +
+
+ + + + + + + + + + + + + +

withExtension(extension) → {NativeApplication}

+ + + + + + +
+ Specifies the file extension +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
extension + + +string + + + + The file extension (pdf, txt, rtf)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +NativeApplication + + +
+
+ + + + + + + + + + + + + +

withHdpi(hdpi) → {HDPI}

+ + + + + + +
+ Specifies whether hdpi should be enabled or not +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
hdpi + + +boolean + + + + true if hdpi shall be enabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + + + + + + + + + + + + +

withManaged(managed) → {Managed}

+ + + + + + +
+ Specifies the global managed state +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
managed + + +boolean + + + + True if it shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withManagedApplication(application, managed) → {Managed}

+ + + + + + +
+ Specifies the managed state for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application
managed + + +boolean + + + + True if the application shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withMemSize(memSize) → {Dosbox}

+ + + + + + +
+ Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
memSize + + +int + + + + The memory size
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {FontSmoothing}

+ + + + + + +
+ Specifies the used font smoothing mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "RGB", "BGR" or "Gray Scale"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {GLSL}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + enabled or disabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +GLSL + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {TakeFocus}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "Y" or "N"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {DirectDrawRenderer}

+ + + + + + +
+ Selects the used direct draw mode (either gdi or opengl) +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + gdi or opengl
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +DirectDrawRenderer + + +
+
+ + + + + + + + + + + + + +

withRenderAspect(renderAspect) → {Dosbox}

+ + + + + + +
+ Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+ + + + + + +
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

withSetting(key, value) → {Dosbox}

+ + + + + + +
+ Sets a dosbox setting +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
key + + +string + + + + The key of the setting (example dosbox_memsize)
value + + +any + + + + The value to be set
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withVersion(major, minor) → {OpenGL}

+ + + + + + +
+ Specifies the major and minor versions +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
major + + +number + + + + The major version
minor + + +number + + + + The minor version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +OpenGL + + +
+
+ + + + + + + + + + + + + +

withWindowsVersion(version, servicePack) → {WindowsVersion}

+ + + + + + +
+ Specifies the default windows version +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
version + + +string + + + + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31
servicePack + + +string + + + + e.g. sp3
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

wizard(wizard) → {Resource}

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

wizard(wizardopt) → {SetupWizard|Wine}

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

wizard(wizard) → {Downloader}

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

default()

+ +
Tool to configure Wine
+ + +
+ +
+
+ + + + +

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) → {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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

dosConfigFile() → {string}

+ + + + + + +
+ Fetch the prefix dosbox configuration file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The dosbox configuration file path +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has finished, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

downloadStarted(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has started +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wine + + +Wine + + + + The wine engine object
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has started, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

environment(environment) → {WineShortcut}

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

environment(environment) → {QuickScript}

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

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}

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

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 + + +
+
+ + + + + + + + + + + + + +

getContainer() → {string}

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

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ All the settings +
+ + + +
+
+ Type +
+
+ +object + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

isHdpi() → {boolean}

+ + + + + + +
+ Fetches whether hdpi is enabled or not +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if hdpi is enabled, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

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) → {Resource}

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

name(name) → {WineShortcut}

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

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(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 + + +
+
+ + + + + + + + + + + + + +

prefix(prefix) → {WineShortcut}

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

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) → {WineShortcut}

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

trustLevel(trustlevel) → {QuickScript}

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

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:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ + + + + + +
+ Specifies the windows version for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application executable
os + + +string + + + + The windows version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

withCpuCycles(cpuCycles) → {Dosbox}

+ + + + + + +
+ Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
cpuCycles + + +int + + + + (example: max 95% limit 33000)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withDimensions(width, height) → {VirtualDesktop}

+ + + + + + +
+ Specifies the dimensions of the virtual desktop +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
width + + +number + + + + width of virtual desktop (in px)
height + + +number + + + + height of virtual desktop (in px)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +VirtualDesktop + + +
+
+ + + + + + + + + + + + + +

withDriver(driver) → {SoundDriver}

+ + + + + + +
+ Specifies the used sound driver +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
driver + + +string + + + + alsa or pulse
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +SoundDriver + + +
+
+ + + + + + + + + + + + + +

withExtension(extension) → {NativeApplication}

+ + + + + + +
+ Specifies the file extension +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
extension + + +string + + + + The file extension (pdf, txt, rtf)
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +NativeApplication + + +
+
+ + + + + + + + + + + + + +

withHdpi(hdpi) → {HDPI}

+ + + + + + +
+ Specifies whether hdpi should be enabled or not +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
hdpi + + +boolean + + + + true if hdpi shall be enabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +HDPI + + +
+
+ + + + + + + + + + + + + +

withManaged(managed) → {Managed}

+ + + + + + +
+ Specifies the global managed state +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
managed + + +boolean + + + + True if it shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withManagedApplication(application, managed) → {Managed}

+ + + + + + +
+ Specifies the managed state for a given application +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application
managed + + +boolean + + + + True if the application shall be managed
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Managed + + +
+
+ + + + + + + + + + + + + +

withMemSize(memSize) → {Dosbox}

+ + + + + + +
+ Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
memSize + + +int + + + + The memory size
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {FontSmoothing}

+ + + + + + +
+ Specifies the used font smoothing mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "RGB", "BGR" or "Gray Scale"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +FontSmoothing + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {GLSL}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + enabled or disabled
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +GLSL + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {TakeFocus}

+ + + + + + +
+ Specifies the mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + "Y" or "N"
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {DirectDrawRenderer}

+ + + + + + +
+ Selects the used direct draw mode (either gdi or opengl) +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + gdi or opengl
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +DirectDrawRenderer + + +
+
+ + + + + + + + + + + + + +

withRenderAspect(renderAspect) → {Dosbox}

+ + + + + + +
+ Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderAspect + + +boolean + + + + The render aspect
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

+ + + + + + +
+ Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
renderFrameSkip + + +int + + + + The render frameskip
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

withSetting(key, value) → {Dosbox}

+ + + + + + +
+ Sets a dosbox setting +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
key + + +string + + + + The key of the setting (example dosbox_memsize)
value + + +any + + + + The value to be set
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withVersion(major, minor) → {OpenGL}

+ + + + + + +
+ Specifies the major and minor versions +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
major + + +number + + + + The major version
minor + + +number + + + + The minor version
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +OpenGL + + +
+
+ + + + + + + + + + + + + +

withWindowsVersion(version, servicePack) → {WindowsVersion}

+ + + + + + +
+ Specifies the default windows version +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
version + + +string + + + + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31
servicePack + + +string + + + + e.g. sp3
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + + + + + + +

wizard(wizard) → {Resource}

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

wizard(wizardopt) → {SetupWizard|Wine}

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

wizard(wizard) → {Downloader}

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

default()

+ +
Tool to kill running Wine processes
+ + +
+ +
+
+ + + + +

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) → {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 + + +
+
+ + + + + + + + + + + + + +

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 + + +
+
+ + + + + + + + + + + + + +

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:
+
@@ -228737,10 +535833,6 @@

syst

Returns:
-
- system32 directory -
-
@@ -228749,7 +535841,7 @@
Returns:
-string +Array.<string>
@@ -228767,7 +535859,7 @@
Returns:
-

system64directory() → {string}

+

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

@@ -228782,6 +535874,75 @@

syst +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDefaultDescription
distribution name + + +string + + + + + + <optional>
+ + + + + +
+ + current distribution + +
+ + @@ -228815,7 +535976,7 @@

syst
Source:
@@ -228843,10 +536004,6 @@

syst

Returns:
-
- system64 directory -
-
@@ -228855,7 +536012,7 @@
Returns:
-string +Array.<string>
@@ -228873,7 +536030,7 @@
Returns:
-

to(localDestination) → {Downloader}

+

binPath(subCategoryopt, versionopt) → {string}

@@ -228881,7 +536038,8 @@

to - Sets the download destination + returns the path to the engine binary directory +if no parameters are given, the Wine version of the current prefix is used @@ -228905,6 +536063,8 @@
Parameters:
Type + Attributes + @@ -228917,7 +536077,7 @@
Parameters:
- localDestination + subCategory @@ -228930,10 +536090,53 @@
Parameters:
+ + + <optional>
+ + + + + - The destination of the download. If it is a directory, the file will be placed inside + + + Wine sub-category + + + + + + + version + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + Wine version @@ -228974,7 +536177,7 @@
Parameters:
Source:
@@ -229003,7 +536206,7 @@
Returns:
- The Downloader object + path to "wine" binary
@@ -229014,7 +536217,7 @@
Returns:
-Downloader +string
@@ -229032,7 +536235,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

category(category) → {WineShortcut}

@@ -229040,7 +536243,7 @@

trustLevel<
- Sets the trust level + Sets the shortcut category
@@ -229076,7 +536279,7 @@

Parameters:
- trustLevel + category @@ -229092,7 +536295,7 @@
Parameters:
- The trust level + The shortcut category @@ -229133,7 +536336,7 @@
Parameters:
Source:
@@ -229191,7 +536394,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

checksum(checksum) → {Resource}

@@ -229199,7 +536402,7 @@

trustLevel<
- set trust level + Sets the checksum which shall be used to verify the resource
@@ -229235,7 +536438,7 @@

Parameters:
- trustlevel + checksum @@ -229251,7 +536454,7 @@
Parameters:
- + The checksum @@ -229292,7 +536495,7 @@
Parameters:
Source:
@@ -229321,7 +536524,7 @@
Returns:
- QuickScript object + The Resource object
@@ -229332,7 +536535,7 @@
Returns:
-QuickScript +Resource
@@ -229350,7 +536553,7 @@
Returns:
-

type(type) → {WineShortcut}

+

checksum(checksum) → {Downloader}

@@ -229358,7 +536561,7 @@

type - Sets the shortcut type + Sets the checksum @@ -229394,7 +536597,7 @@
Parameters:
- type + checksum @@ -229410,7 +536613,7 @@
Parameters:
- The shortcut type + The checksum which shall be used to verify the download @@ -229451,7 +536654,7 @@
Parameters:
Source:
@@ -229480,7 +536683,7 @@
Returns:
- The WineShortcut object + The Downloader object
@@ -229491,7 +536694,7 @@
Returns:
-WineShortcut +Downloader
@@ -229509,7 +536712,7 @@
Returns:
-

uninstall(name) → {bool}

+

create() → {void}

@@ -229517,7 +536720,7 @@

uninstall - uninstall application + Creates a new shortcut @@ -229528,55 +536731,6 @@

uninstallParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - @@ -229610,7 +536764,7 @@
Parameters:
Source:
@@ -229638,10 +536792,6 @@
Parameters:
Returns:
-
- true if an application has been uninstalled, false otherwise -
-
@@ -229650,7 +536800,7 @@
Returns:
-bool +void
@@ -229668,7 +536818,7 @@
Returns:
-

uninstall() → {void}

+

create() → {Wine}

@@ -229676,7 +536826,7 @@

uninstall - Uninstalls the shortcut + runs "wineboot" @@ -229720,7 +536870,7 @@

uninstallSource:
@@ -229748,6 +536898,10 @@

uninstallReturns:

+
+ The Wine object +
+
@@ -229756,7 +536910,7 @@
Returns:
-void +Wine
@@ -229774,7 +536928,7 @@
Returns:
-

url(url) → {Downloader}

+

description(description) → {WineShortcut}

@@ -229782,7 +536936,7 @@

url - Sets the URL which shall be used for the download + Sets the shortcut description @@ -229818,7 +536972,7 @@
Parameters:
- url + description @@ -229834,7 +536988,7 @@
Parameters:
- The URL + The shortcut description @@ -229875,7 +537029,7 @@
Parameters:
Source:
@@ -229904,7 +537058,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -229915,7 +537069,7 @@
Returns:
-Downloader +WineShortcut
@@ -229933,7 +537087,7 @@
Returns:
-

url(url) → {Resource}

+

directory(directory) → {Resource}

@@ -229941,7 +537095,7 @@

url - Sets the resource URL + Sets the directory inside the resources directory where the Resource is stored @@ -229977,7 +537131,7 @@
Parameters:
- url + directory @@ -229993,7 +537147,7 @@
Parameters:
- The URL + The directory path @@ -230034,7 +537188,7 @@
Parameters:
Source:
@@ -230092,7 +537246,7 @@
Returns:
-

wait() → {Wine}

+

dosConfigFile() → {string}

@@ -230100,7 +537254,7 @@

wait - wait until wineserver finishes + Fetch the prefix dosbox configuration file @@ -230144,7 +537298,7 @@

waitSource:
@@ -230172,6 +537326,10 @@

wait + The dosbox configuration file path + +
@@ -230180,7 +537338,7 @@
Returns:
-Wine +string
@@ -230198,13 +537356,17 @@
Returns:
-

winepath(pathopt) → {String}

+

download(setupWizard) → {String}

+
+ Download the setup resources in the same directory, and returns the path of the .exe +
+ @@ -230226,8 +537388,6 @@
Parameters:
Type - Attributes - @@ -230240,33 +537400,23 @@
Parameters:
- path + setupWizard -String +SetupWizard - - - <optional>
- - - - - - - - + The setup wizard @@ -230307,7 +537457,7 @@
Parameters:
Source:
@@ -230335,6 +537485,10 @@
Parameters:
Returns:
+
+ The .exe file entry that can be used to continue the installation +
+
@@ -230361,7 +537515,7 @@
Returns:
-

wineServer(wineserver)

+

downloadFinished(wine) → {boolean}

@@ -230369,7 +537523,8 @@

wineServer<
- executes wineserver in current prefix + Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first
@@ -230405,13 +537560,13 @@

Parameters:
- wineserver + wine -string +Wine @@ -230421,7 +537576,7 @@
Parameters:
- parameter + The wine engine object @@ -230462,7 +537617,7 @@
Parameters:
Source:
@@ -230487,6 +537642,28 @@
Parameters:
+
Returns:
+ + +
+ True if the download has finished, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + @@ -230498,7 +537675,7 @@
Parameters:
-

withScript(command) → {PlainInstaller}

+

downloadStarted(wine) → {boolean}

@@ -230506,7 +537683,7 @@

withScript<
- Sets the installation script consisting of a lambda function + Checks whether the software download has started
@@ -230542,13 +537719,13 @@

Parameters:
- command + wine -function +Wine @@ -230558,7 +537735,7 @@
Parameters:
- The installation command + The wine engine object @@ -230599,7 +537776,7 @@
Parameters:
Source:
@@ -230628,7 +537805,7 @@
Returns:
- The PlainInstaller object + True if the download has started, false otherwise
@@ -230639,7 +537816,7 @@
Returns:
-PlainInstaller +boolean
@@ -230657,7 +537834,7 @@
Returns:
-

wizard(wizard) → {Resource}

+

environment(environment) → {WineShortcut}

@@ -230665,7 +537842,7 @@

wizard - Sets the setup wizard + Sets the shortcut environment variables @@ -230701,13 +537878,13 @@
Parameters:
- wizard + environment -SetupWizard +string @@ -230717,7 +537894,7 @@
Parameters:
- The setup wizard + The environment variables @@ -230758,7 +537935,7 @@
Parameters:
Source:
@@ -230787,7 +537964,7 @@
Returns:
- The Resource object + The WineShortcut object
@@ -230798,7 +537975,7 @@
Returns:
-Resource +WineShortcut
@@ -230816,7 +537993,7 @@
Returns:
-

wizard(wizard) → {Downloader}

+

environment(environment) → {QuickScript}

@@ -230824,7 +538001,7 @@

wizard - Sets the setup wizard + set environment @@ -230860,13 +538037,13 @@
Parameters:
- wizard + environment -SetupWizard +string @@ -230876,7 +538053,7 @@
Parameters:
- The setup wizard + variables @@ -230917,7 +538094,7 @@
Parameters:
Source:
@@ -230946,7 +538123,7 @@
Returns:
- The Downloader object + QuickScript object
@@ -230957,7 +538134,7 @@
Returns:
-Downloader +QuickScript
@@ -230975,13 +538152,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

executable(executable, args)

+
+ set executable +
+ @@ -231003,8 +538184,6 @@
Parameters:
Type - Attributes - @@ -231017,33 +538196,36 @@
Parameters:
- wizard + executable - -SetupWizard + + - + executable without path (e.g. "Steam.exe") + + + + + + + args - - - <optional>
- - + + + - - - + use array (e.g. ["-applaunch", 409160]) @@ -231084,7 +538266,7 @@
Parameters:
Source:
@@ -231109,70 +538291,18 @@
Parameters:
-
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - -

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

default()

- -
Tool to open the Wine registry editor
- - -
- -
-
- - + -

Constructor

- -

new default()

+

fontDirectory() → {string}

@@ -231220,7 +538350,7 @@

new defaultSource:
@@ -231245,30 +538375,32 @@

new defaultReturns:

+ +
+ font directory +
+
+
+ Type +
+
+ +string - -

- - - - - + + - - - - -

Methods

@@ -231276,7 +538408,7 @@

Methods

-

_createShortcut(prefixopt)

+

get(resourceName) → {Resource}

@@ -231284,7 +538416,7 @@

_creat
- creates shortcut + Returns the searched resource
@@ -231308,8 +538440,6 @@

Parameters:
Type - Attributes - @@ -231322,7 +538452,7 @@
Parameters:
- prefix + resourceName @@ -231335,20 +538465,10 @@
Parameters:
- - - <optional>
- - - - - - - - prefix name + The name of the resource @@ -231389,7 +538509,7 @@
Parameters:
Source:
@@ -231414,6 +538534,28 @@
Parameters:
+
Returns:
+ + +
+ The found resource +
+ + + +
+
+ Type +
+
+ +Resource + + +
+
+ + @@ -231425,7 +538567,7 @@
Parameters:
-

_fetchFileNameFromUrl(url) → {string}

+

get() → {String}

@@ -231433,7 +538575,7 @@

- Fetches the file name from an URL + Gets the content of the downloaded file
@@ -231444,53 +538586,114 @@

-

Parameters:
+ + + + +
+ - - - - - - + - + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + + + + + + + + + + + + + + + + + +
Returns:
+
+ The content of downloaded file +
+ + +
+
+ Type +
+
+String -
- - - + + + - - - - - + - + - - + +

get() → {string}

+ - -
NameTypeDescription
url - - -string - - The URL
+ + + +
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ + + + + + + @@ -231526,7 +538729,7 @@
Parameters:
Source:
@@ -231555,7 +538758,7 @@
Returns:
- The file name + The path leading to the downloaded resource
@@ -231584,7 +538787,7 @@
Returns:
-

algorithm(algorithm) → {Resource}

+

getContainer() → {string}

@@ -231592,7 +538795,7 @@

algorithm - Sets the checksum algorithm + Returns the name of the container belonging to a shortcut @@ -231603,53 +538806,114 @@

algorithmParameters:

+ + + + +
+ - - - - - - + - + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + + + + + + + + + + + + + + + + + +
Returns:
+
+ The container name +
+ + +
+
+ Type +
+
+string -
- - - + + + - - - - - + - + - - + +

getSettings() → {object}

+ - -
NameTypeDescription
algorithm - - -string - - The algorithm to verify the checksum (e.g. "SHA")
+ + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + @@ -231685,7 +538949,7 @@
Parameters:
Source:
@@ -231714,7 +538978,7 @@
Returns:
- The Resource object + All the settings
@@ -231725,7 +538989,7 @@
Returns:
-Resource +object
@@ -231743,7 +539007,7 @@
Returns:
-

algorithm(algorithm) → {Downloader}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -231751,7 +539015,7 @@

algorithm - Sets the algorithm which shall be used to verify the checksum + Sets one setup file name so that the script can fetch it from gog.com @@ -231787,7 +539051,7 @@
Parameters:
- algorithm + setupFileName @@ -231803,7 +539067,7 @@
Parameters:
- The checksum algorithm (e.g. "SHA") + The setup file name @@ -231844,7 +539108,7 @@
Parameters:
Source:
@@ -231873,7 +539137,7 @@
Returns:
- The Downloader object + This
@@ -231884,7 +539148,7 @@
Returns:
-Downloader +GogScript
@@ -231902,7 +539166,7 @@
Returns:
-

application(application) → {AppResource}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -231910,7 +539174,7 @@

applicatio
- Sets the application containing the resources + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -231946,13 +539210,13 @@

Parameters:
- application + setupFileNames -string +Array.<string> @@ -231962,7 +539226,7 @@
Parameters:
- The application with the resource + The setup file name(s) @@ -232003,7 +539267,7 @@
Parameters:
Source:
@@ -232032,7 +539296,7 @@
Returns:
- The AppResource object + This
@@ -232043,7 +539307,7 @@
Returns:
-AppResource +GogScript
@@ -232061,19 +539325,72 @@
Returns:
-

architecture() → {string}

+

headers(headers) → {Downloader}

+
+ Sets the http headers +
+ + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
headers + + +Object + + + + The http headers
@@ -232109,7 +539426,7 @@

architect
Source:
@@ -232138,7 +539455,7 @@

Returns:
- architecture ("x86" or "amd64") + The Downloader object
@@ -232149,7 +539466,7 @@
Returns:
-string +Downloader
@@ -232167,7 +539484,7 @@
Returns:
-

arguments(args) → {WineShortcut}

+

isHdpi() → {boolean}

@@ -232175,7 +539492,7 @@

arguments - Sets the shortcut arguments + Fetches whether hdpi is enabled or not @@ -232186,55 +539503,6 @@

argumentsParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - @@ -232268,7 +539536,7 @@
Parameters:
Source:
@@ -232297,7 +539565,7 @@
Returns:
- The WineShortcut object + True if hdpi is enabled, false otherwise
@@ -232308,7 +539576,7 @@
Returns:
-WineShortcut +boolean
@@ -232326,88 +539594,23 @@
Returns:
-

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

- - - - - - - - - - - - - - -
Parameters:
+

json() → {any}

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string +
+ Gets the content of the downloaded file and returns it as a JSON value +
- -
- - <optional>
- - - -
- - current architecture - -
@@ -232443,7 +539646,7 @@
Parameters:
Source:
@@ -232471,6 +539674,10 @@
Parameters:
Returns:
+
+ The json value +
+
@@ -232479,7 +539686,7 @@
Returns:
-Array.<string> +any
@@ -232497,88 +539704,23 @@
Returns:
-

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

- - - - - - - - - - - - - - -
Parameters:
+

kill() → {Wine}

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string +
+ kill wine server +
- -
- - <optional>
- - - -
- - current distribution - -
@@ -232614,7 +539756,7 @@
Parameters:
Source:
@@ -232650,7 +539792,7 @@
Returns:
-Array.<string> +Wine
@@ -232668,7 +539810,7 @@
Returns:
-

binPath(subCategoryopt, versionopt) → {string}

+

loginToGog(setupWizard) → {GogScript}

@@ -232676,8 +539818,8 @@

binPath - returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used + 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 @@ -232701,8 +539843,6 @@
Parameters:
Type - Attributes - @@ -232715,66 +539855,23 @@
Parameters:
- subCategory - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - Wine sub-category - - - - - - - version + setupWizard -string +SetupWizard - - - <optional>
- - - - - - - - Wine version + The setupWizard to use @@ -232815,7 +539912,7 @@
Parameters:
Source:
@@ -232844,7 +539941,7 @@
Returns:
- path to "wine" binary + This
@@ -232855,7 +539952,7 @@
Returns:
-string +GogScript
@@ -232873,7 +539970,7 @@
Returns:
-

category(category) → {WineShortcut}

+

message(message) → {Downloader}

@@ -232881,7 +539978,7 @@

category - Sets the shortcut category + Sets the download message text @@ -232917,7 +540014,7 @@
Parameters:
- category + message @@ -232933,7 +540030,7 @@
Parameters:
- The shortcut category + The download message @@ -232974,7 +540071,7 @@
Parameters:
Source:
@@ -233003,7 +540100,7 @@
Returns:
- The WineShortcut object + The Downloader object
@@ -233014,7 +540111,7 @@
Returns:
-WineShortcut +Downloader
@@ -233032,7 +540129,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

miniature(miniatureopt)

@@ -233040,7 +540137,7 @@

checksum - Sets the checksum + get/set miniature (for the installation and the shortcut) @@ -233064,6 +540161,8 @@
Parameters:
Type + Attributes + @@ -233076,23 +540175,33 @@
Parameters:
- checksum + miniature -string +URI + + + <optional>
+ + + + + + + - The checksum which shall be used to verify the download + path to the miniature file @@ -233133,7 +540242,7 @@
Parameters:
Source:
@@ -233158,28 +540267,6 @@
Parameters:
-
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - @@ -233191,7 +540278,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

miniature(miniature) → {WineShortcut}

@@ -233199,7 +540286,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the miniature for the shortcut @@ -233235,13 +540322,16 @@
Parameters:
- checksum + miniature -string +Array.<string> +| + +URI @@ -233251,7 +540341,7 @@
Parameters:
- The checksum + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -233292,7 +540382,7 @@
Parameters:
Source:
@@ -233321,7 +540411,7 @@
Returns:
- The Resource object + The WineShortcut object
@@ -233332,7 +540422,7 @@
Returns:
-Resource +WineShortcut
@@ -233350,7 +540440,7 @@
Returns:
-

create() → {Wine}

+

name(name) → {Resource}

@@ -233358,7 +540448,7 @@

create - runs "wineboot" + Sets the resource name @@ -233369,114 +540459,53 @@

create - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The Wine object -
- + -
-
- Type -
-
-Wine + -
-
+ + + + + + + + + - - + - -

create() → {void}

- + + - - - -
- Creates a new shortcut -
- - - - - - - + +
NameTypeDescription
name + + +string + + The name of the resource
@@ -233512,7 +540541,7 @@

createSource:
@@ -233540,6 +540569,10 @@

createReturns:

+
+ The Resource object +
+
@@ -233548,7 +540581,7 @@
Returns:
-void +Resource
@@ -233566,7 +540599,7 @@
Returns:
-

description(description) → {WineShortcut}

+

name(name) → {WineShortcut}

@@ -233574,7 +540607,7 @@

descriptio
- Sets the shortcut description + Sets the shortcut name
@@ -233610,7 +540643,7 @@

Parameters:
- description + name @@ -233626,7 +540659,7 @@
Parameters:
- The shortcut description + The shortcut name @@ -233667,7 +540700,7 @@
Parameters:
Source:
@@ -233725,7 +540758,7 @@
Returns:
-

directory(directory) → {Resource}

+

of(shortcut) → {void}

@@ -233733,7 +540766,7 @@

directory - Sets the directory inside the resources directory where the Resource is stored + Sets shortcut @@ -233769,7 +540802,7 @@
Parameters:
- directory + shortcut @@ -233785,7 +540818,7 @@
Parameters:
- The directory path + shortcut @@ -233826,7 +540859,7 @@
Parameters:
Source:
@@ -233854,10 +540887,6 @@
Parameters:
Returns:
-
- The Resource object -
-
@@ -233866,7 +540895,7 @@
Returns:
-Resource +void
@@ -233884,7 +540913,7 @@
Returns:
-

download(setupWizard) → {String}

+

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

@@ -233892,7 +540921,7 @@

download - Download the setup resources in the same directory, and returns the path of the .exe + Specifies if the download shall be executed only if a newer version is available @@ -233928,13 +540957,13 @@
Parameters:
- setupWizard + onlyIfUpdateAvailable -SetupWizard +boolean @@ -233944,7 +540973,7 @@
Parameters:
- The setup wizard + true the download shall be executed only if a newer version is available @@ -233985,7 +541014,7 @@
Parameters:
Source:
@@ -234014,7 +541043,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + The Downloader object
@@ -234025,7 +541054,7 @@
Returns:
-String +Downloader
@@ -234043,17 +541072,13 @@
Returns:
-

environment(environment) → {WineShortcut}

+

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

-
- Sets the shortcut environment variables -
- @@ -234075,6 +541100,8 @@
Parameters:
Type + Attributes + @@ -234087,7 +541114,7 @@
Parameters:
- environment + prefix @@ -234100,10 +541127,119 @@
Parameters:
+ + + <optional>
+ + + + + - The environment variables + + + + + + + + + + distribution + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + + + + + + + + architecture + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + + + + + + + + version + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + @@ -234144,7 +541280,7 @@
Parameters:
Source:
@@ -234172,10 +541308,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -234184,7 +541316,10 @@
Returns:
-WineShortcut +string +| + +Wine
@@ -234202,7 +541337,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

prefix(prefix) → {WineShortcut}

@@ -234210,7 +541345,7 @@

environmen
- set environment + Sets the shortcut prefix
@@ -234246,7 +541381,7 @@

Parameters:
- environment + prefix @@ -234262,7 +541397,7 @@
Parameters:
- variables + The shortcut prefix @@ -234303,7 +541438,7 @@
Parameters:
Source:
@@ -234332,7 +541467,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -234343,7 +541478,7 @@
Returns:
-QuickScript +WineShortcut
@@ -234361,7 +541496,7 @@
Returns:
-

executable(executable, args)

+

prefixDirectory() → {string}

@@ -234369,7 +541504,7 @@

executable<
- set executable + returns prefix directory
@@ -234380,68 +541515,6 @@

executable< -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - @@ -234475,7 +541548,7 @@
Parameters:
Source:
@@ -234500,6 +541573,24 @@
Parameters:
+
Returns:
+ + + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -234511,7 +541602,7 @@
Parameters:
-

fontDirectory() → {string}

+

programFiles() → {string}

@@ -234559,7 +541650,7 @@

fontDire
Source:
@@ -234588,7 +541679,7 @@

Returns:
- font directory + name of "Program Files"
@@ -234617,16 +541708,13 @@
Returns:
-

get() → {string}

+

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

-
- Fetches the Resource and returns the path leading to the downloaded resource -
@@ -234635,115 +541723,264 @@

get + + + + Name + + Type + + Attributes + + + Default + -
+ Description + + + - + + + executable + - + + + +string - - + + - + + + - + - + + + - + + + + + - + + - + + + args + - -
Source:
-
- + + + +array - - + + - -
+ + + + <optional>
+ + + + + + + + + [] + + + + + + + + + workingDirectory + + + + +string + + + + + + <optional>
+ + + + + + + + + working container + + + + + -
Returns:
+ - -
- The path leading to the downloaded resource -
+ + + captureOutput + + + + +boolean -
-
- Type -
-
- -string + + + + + + <optional>
+ -
-
+ + + + + + + + + + false + + + + + + + + + wait + + + + +boolean + + - + + + <optional>
+ - + - -

get() → {String}

- + + + + + + + + false + + + + + + + + + userData + + + + +map -
- Gets the content of the downloaded file -
+ + + + + + <optional>
+ + + + + + + + + empty + + + + + + + + @@ -234779,7 +542016,7 @@

getSource:
@@ -234808,7 +542045,7 @@
Returns:
- The content of downloaded file + output
@@ -234837,7 +542074,7 @@
Returns:
-

get(resourceName) → {Resource}

+

run(userArguments) → {void}

@@ -234845,7 +542082,7 @@

get - Returns the searched resource + Runs a shortcut with the given user arguments @@ -234881,13 +542118,13 @@
Parameters:
- resourceName + userArguments -string +array @@ -234897,7 +542134,7 @@
Parameters:
- The name of the resource + The user arguments @@ -234938,7 +542175,7 @@
Parameters:
Source:
@@ -234966,10 +542203,6 @@
Parameters:
Returns:
-
- The found resource -
-
@@ -234978,7 +542211,7 @@
Returns:
-Resource +void
@@ -234996,16 +542229,13 @@
Returns:
-

getContainer() → {string}

+

runInsidePrefix(executable, argsopt, waitopt)

-
- Returns the name of the container belonging to a shortcut -
@@ -235014,6 +542244,148 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDefaultDescription
executable + + +string + + + + + + + + + + + +
args + + +array + + + + + + <optional>
+ + + + + +
+ + [] + +
wait + + +boolean + + + + + + <optional>
+ + + + + +
+ + false + +
+ @@ -235048,7 +542420,7 @@

getContai
Source:
@@ -235073,28 +542445,6 @@

getContai -

Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - @@ -235106,7 +542456,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+ @@ -235114,7 +542464,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the executable which shall be used
@@ -235150,7 +542500,7 @@

Parameters:
- setupFileName + search @@ -235166,7 +542516,7 @@
Parameters:
- The setup file name + The executable name @@ -235207,7 +542557,7 @@
Parameters:
Source:
@@ -235236,7 +542586,7 @@
Returns:
- This + The WineShortcut object
@@ -235247,7 +542597,7 @@
Returns:
-GogScript +WineShortcut
@@ -235265,7 +542615,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

stop() → {void}

@@ -235273,7 +542623,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Stops the running shortcut
@@ -235284,55 +542634,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -235366,7 +542667,7 @@
Parameters:
Source:
@@ -235394,10 +542695,6 @@
Parameters:
Returns:
-
- This -
-
@@ -235406,7 +542703,7 @@
Returns:
-GogScript +void
@@ -235424,72 +542721,19 @@
Returns:
-

headers(headers) → {Downloader}

- - +

system32directory() → {string}

- - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - The http headers
@@ -235525,7 +542769,7 @@
Parameters:
Source:
@@ -235554,7 +542798,7 @@
Returns:
- The Downloader object + system32 directory
@@ -235565,7 +542809,7 @@
Returns:
-Downloader +string
@@ -235583,17 +542827,13 @@
Returns:
-

json() → {any}

+

system64directory() → {string}

-
- Gets the content of the downloaded file and returns it as a JSON value -
- @@ -235635,7 +542875,7 @@

jsonSource:
@@ -235664,7 +542904,7 @@
Returns:
- The json value + system64 directory
@@ -235675,7 +542915,7 @@
Returns:
-any +string
@@ -235693,7 +542933,7 @@
Returns:
-

kill() → {Wine}

+

to(localDestination) → {Downloader}

@@ -235701,7 +542941,7 @@

kill - kill wine server + Sets the download destination @@ -235712,6 +542952,55 @@

kill + + + + Name + + + Type + + + + + + Description + + + + + + + + + localDestination + + + + + +string + + + + + + + + + + The destination of the download. If it is a directory, the file will be placed inside + + + + + + + @@ -235745,7 +543034,7 @@

killSource:
@@ -235773,6 +543062,10 @@

kill + The Downloader object + +
@@ -235781,7 +543074,7 @@
Returns:
-Wine +Downloader
@@ -235799,7 +543092,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -235807,8 +543100,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 trust level
@@ -235844,13 +543136,13 @@

Parameters:
- setupWizard + trustLevel -SetupWizard +string @@ -235860,7 +543152,7 @@
Parameters:
- The setupWizard to use + The trust level @@ -235901,7 +543193,7 @@
Parameters:
Source:
@@ -235930,7 +543222,7 @@
Returns:
- This + The WineShortcut object
@@ -235941,7 +543233,7 @@
Returns:
-GogScript +WineShortcut
@@ -235959,7 +543251,7 @@
Returns:
-

message(message) → {Downloader}

+

trustLevel(trustlevel) → {QuickScript}

@@ -235967,7 +543259,7 @@

message - Sets the download message text + set trust level @@ -236003,7 +543295,7 @@
Parameters:
- message + trustlevel @@ -236019,7 +543311,7 @@
Parameters:
- The download message + @@ -236060,7 +543352,7 @@
Parameters:
Source:
@@ -236089,7 +543381,7 @@
Returns:
- The Downloader object + QuickScript object
@@ -236100,7 +543392,7 @@
Returns:
-Downloader +QuickScript
@@ -236118,7 +543410,7 @@
Returns:
-

miniature(miniature) → {WineShortcut}

+

type(type) → {WineShortcut}

@@ -236126,7 +543418,7 @@

miniature - Sets the miniature for the shortcut + Sets the shortcut type @@ -236162,16 +543454,13 @@
Parameters:
- miniature + type -Array.<string> -| - -URI +string @@ -236181,7 +543470,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The shortcut type @@ -236222,7 +543511,7 @@
Parameters:
Source:
@@ -236280,156 +543569,7 @@
Returns:
-

miniature(miniatureopt)

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

name(name) → {Resource}

+

uninstall(name) → {bool}

@@ -236437,7 +543577,7 @@

name - Sets the resource name + uninstall application @@ -236489,7 +543629,7 @@
Parameters:
- The name of the resource + of the application which shall be uninstalled @@ -236530,7 +543670,7 @@
Parameters:
Source:
@@ -236559,7 +543699,7 @@
Returns:
- The Resource object + true if an application has been uninstalled, false otherwise
@@ -236570,7 +543710,7 @@
Returns:
-Resource +bool
@@ -236588,7 +543728,7 @@
Returns:
-

name(name) → {WineShortcut}

+

uninstall() → {void}

@@ -236596,7 +543736,7 @@

name - Sets the shortcut name + Uninstalls the shortcut @@ -236607,55 +543747,6 @@

name - - - - Name - - - Type - - - - - - Description - - - - - - - - - name - - - - - -string - - - - - - - - - - The shortcut name - - - - - - - @@ -236689,7 +543780,7 @@
Parameters:
Source:
@@ -236717,10 +543808,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -236729,7 +543816,7 @@
Returns:
-WineShortcut +void
@@ -236747,7 +543834,7 @@
Returns:
-

of(shortcut) → {void}

+

url(url) → {Downloader}

@@ -236755,7 +543842,7 @@

of - Sets shortcut + Sets the URL which shall be used for the download @@ -236791,7 +543878,7 @@
Parameters:
- shortcut + url @@ -236807,7 +543894,7 @@
Parameters:
- shortcut + The URL @@ -236848,7 +543935,7 @@
Parameters:
Source:
@@ -236876,6 +543963,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -236884,7 +543975,7 @@
Returns:
-void +Downloader
@@ -236902,7 +543993,7 @@
Returns:
-

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

+

url(url) → {Resource}

@@ -236910,7 +544001,7 @@

- Specifies if the download shall be executed only if a newer version is available + Sets the resource URL
@@ -236946,13 +544037,13 @@

Parameters:
- onlyIfUpdateAvailable + url -boolean +string @@ -236962,7 +544053,7 @@
Parameters:
- true the download shall be executed only if a newer version is available + The URL @@ -237003,7 +544094,7 @@
Parameters:
Source:
@@ -237032,7 +544123,7 @@
Returns:
- The Downloader object + The Resource object
@@ -237043,7 +544134,7 @@
Returns:
-Downloader +Resource
@@ -237061,7 +544152,7 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

wait() → {Wine}

@@ -237069,7 +544160,7 @@

prefix - Sets the shortcut prefix + wait until wineserver finishes @@ -237080,55 +544171,6 @@

prefixParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - @@ -237162,7 +544204,7 @@
Parameters:
Source:
@@ -237190,10 +544232,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -237202,7 +544240,7 @@
Returns:
-WineShortcut +Wine
@@ -237220,7 +544258,7 @@
Returns:
-

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

+

winepath(pathopt) → {String}

@@ -237262,112 +544300,13 @@
Parameters:
- prefix - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - distribution - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - architecture - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - version + path -string +String @@ -237428,7 +544367,7 @@
Parameters:
Source:
@@ -237464,10 +544403,7 @@
Returns:
-string -| - -Wine +String
@@ -237485,7 +544421,7 @@
Returns:
-

prefixDirectory() → {string}

+

wineServer(wineserver)

@@ -237493,7 +544429,7 @@

prefix
- returns prefix directory + executes wineserver in current prefix
@@ -237504,6 +544440,55 @@

prefix +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wineserver + + +string + + + + parameter
+ + @@ -237537,7 +544522,7 @@

prefix
Source:
@@ -237562,48 +544547,106 @@

prefix -

Returns:
- -
-
- Type -
-
+ + -string + + -
-
+ +

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+ +
+ Specifies the windows version for a given application +
- - - + + + + + +
Parameters:
-

programFiles() → {string}

- + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application executable
os + + +string + + The windows version
@@ -237639,7 +544682,7 @@

programFi
Source:
@@ -237668,7 +544711,7 @@

Returns:
- name of "Program Files" + This
@@ -237679,7 +544722,7 @@
Returns:
-string +WindowsVersion
@@ -237697,7 +544740,7 @@
Returns:
-

run(userArguments) → {void}

+

withCpuCycles(cpuCycles) → {Dosbox}

@@ -237705,7 +544748,8 @@

run - Runs a shortcut with the given user arguments + Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D @@ -237741,13 +544785,13 @@
Parameters:
- userArguments + cpuCycles -array +int @@ -237757,7 +544801,7 @@
Parameters:
- The user arguments + (example: max 95% limit 33000) @@ -237798,7 +544842,7 @@
Parameters:
Source:
@@ -237826,6 +544870,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -237834,7 +544882,7 @@
Returns:
-void +Dosbox
@@ -237852,13 +544900,17 @@
Returns:
-

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

+

withDimensions(width, height) → {VirtualDesktop}

+
+ Specifies the dimensions of the virtual desktop +
+ @@ -237880,12 +544932,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -237896,230 +544944,205 @@
Parameters:
- executable + width -string +number - - - - - - - - - - - - - + width of virtual desktop (in px) - args + height -array +number - - - <optional>
- - - - - - - - - - [] - - - - + height of virtual desktop (in px) + + - - - workingDirectory - - - - -string - - - - - - <optional>
- - +
- - - + - - - - working container - - - + - - + - - - captureOutput - + - - - -boolean + + - - + - - - - <optional>
- + - + - - - + - - - - false - - - + - - + +
Source:
+
+ - - - wait - + - - - -boolean + +
- - - - - - <optional>
- - - - - - - - - false - - + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +VirtualDesktop + + +
+
+ + + + + + + + - - + +

withDriver(driver) → {SoundDriver}

+ + + + + + +
+ Specifies the used sound driver +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + - + - - - - - + @@ -238160,7 +545183,7 @@
Parameters:
Source:
@@ -238189,7 +545212,7 @@
Returns:
- output + This
@@ -238200,7 +545223,7 @@
Returns:
-String +SoundDriver
@@ -238218,13 +545241,17 @@
Returns:
-

runInsidePrefix(executable, argsopt, waitopt)

+

withExtension(extension) → {NativeApplication}

+
+ Specifies the file extension +
+ @@ -238246,12 +545273,8 @@
Parameters:
- - - - @@ -238262,7 +545285,7 @@
Parameters:
- + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -238409,7 +545342,7 @@
Parameters:
Source:
@@ -238434,6 +545367,28 @@
Parameters:
+
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +NativeApplication + + +
+
+ + @@ -238445,7 +545400,7 @@
Parameters:
- +

withHdpi(hdpi) → {HDPI}

@@ -238453,7 +545408,7 @@ - + + @@ -238546,7 +545501,7 @@
Parameters:
Source:
@@ -238575,7 +545530,7 @@
Returns:
- The WineShortcut object + This
@@ -238586,7 +545541,7 @@
Returns:
-WineShortcut +HDPI
@@ -238604,7 +545559,7 @@
Returns:
-

stop() → {void}

+

withManaged(managed) → {Managed}

@@ -238612,7 +545567,7 @@

stop - Stops the running shortcut + Specifies the global managed state @@ -238623,212 +545578,53 @@

stop - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
+

NameTypeDescription
userDatadriver -map +string - - <optional>
- - - - - -
- - empty - - alsa or pulse
TypeAttributesDefaultDescription
executableextension @@ -238275,100 +545298,10 @@
Parameters:
- - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - - The file extension (pdf, txt, rtf)
searchhdpi -string +boolean @@ -238505,7 +545460,7 @@
Parameters:
-
The executable nametrue if hdpi shall be enabled
+ + -void - - - - - - - - - - - + - - - - - -

system32directory() → {string}

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

system64directory() → {string}

- + + - - - - - - - - - + +
NameTypeDescription
managed + + +boolean + + True if it shall be managed
@@ -238864,7 +545660,7 @@

syst
Source:
@@ -238893,7 +545689,7 @@

Returns:
- system64 directory + This
@@ -238904,7 +545700,7 @@
Returns:
-string +Managed
@@ -238922,7 +545718,7 @@
Returns:
-

to(localDestination) → {Downloader}

+

withManagedApplication(application, managed) → {Managed}

@@ -238930,7 +545726,7 @@

to - Sets the download destination + Specifies the managed state for a given application @@ -238966,7 +545762,7 @@
Parameters:
- localDestination + application @@ -238982,7 +545778,30 @@
Parameters:
- The destination of the download. If it is a directory, the file will be placed inside + The application + + + + + + + managed + + + + + +boolean + + + + + + + + + + True if the application shall be managed @@ -239023,7 +545842,7 @@
Parameters:
Source:
@@ -239052,7 +545871,7 @@
Returns:
- The Downloader object + This
@@ -239063,7 +545882,7 @@
Returns:
-Downloader +Managed
@@ -239081,7 +545900,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

withMemSize(memSize) → {Dosbox}

@@ -239089,7 +545908,8 @@

trustLevel<
- Sets the trust level + Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D
@@ -239125,13 +545945,13 @@

Parameters:
- trustLevel + memSize -string +int @@ -239141,7 +545961,7 @@
Parameters:
- The trust level + The memory size @@ -239182,7 +546002,7 @@
Parameters:
Source:
@@ -239211,7 +546031,7 @@
Returns:
- The WineShortcut object + This
@@ -239222,7 +546042,7 @@
Returns:
-WineShortcut +Dosbox
@@ -239240,7 +546060,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

withMode(mode) → {FontSmoothing}

@@ -239248,7 +546068,7 @@

trustLevel<
- set trust level + Specifies the used font smoothing mode
@@ -239284,7 +546104,7 @@

Parameters:
- trustlevel + mode @@ -239300,7 +546120,7 @@
Parameters:
- + "RGB", "BGR" or "Gray Scale" @@ -239341,7 +546161,7 @@
Parameters:
Source:
@@ -239370,7 +546190,7 @@
Returns:
- QuickScript object + This
@@ -239381,7 +546201,7 @@
Returns:
-QuickScript +FontSmoothing
@@ -239399,7 +546219,7 @@
Returns:
-

type(type) → {WineShortcut}

+

withMode(mode) → {GLSL}

@@ -239407,7 +546227,7 @@

type - Sets the shortcut type + Specifies the mode @@ -239443,7 +546263,7 @@
Parameters:
- type + mode @@ -239459,7 +546279,7 @@
Parameters:
- The shortcut type + enabled or disabled @@ -239500,7 +546320,7 @@
Parameters:
Source:
@@ -239529,7 +546349,7 @@
Returns:
- The WineShortcut object + This
@@ -239540,7 +546360,7 @@
Returns:
-WineShortcut +GLSL
@@ -239558,7 +546378,7 @@
Returns:
-

uninstall(name) → {bool}

+

withMode(mode) → {TakeFocus}

@@ -239566,7 +546386,7 @@

uninstall - uninstall application + Specifies the mode @@ -239602,7 +546422,7 @@
Parameters:
- name + mode @@ -239618,7 +546438,7 @@
Parameters:
- of the application which shall be uninstalled + "Y" or "N" @@ -239659,7 +546479,7 @@
Parameters:
Source:
@@ -239688,7 +546508,7 @@
Returns:
- true if an application has been uninstalled, false otherwise + This
@@ -239699,7 +546519,7 @@
Returns:
-bool +TakeFocus
@@ -239717,7 +546537,7 @@
Returns:
-

uninstall() → {void}

+

withMode(mode) → {DirectDrawRenderer}

@@ -239725,7 +546545,7 @@

uninstall - Uninstalls the shortcut + Selects the used direct draw mode (either gdi or opengl) @@ -239736,6 +546556,55 @@

uninstallParameters:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + gdi or opengl
+ + @@ -239769,7 +546638,7 @@

uninstallSource:
@@ -239797,6 +546666,10 @@

uninstallReturns:

+
+ This +
+
@@ -239805,7 +546678,7 @@
Returns:
-void +DirectDrawRenderer
@@ -239823,7 +546696,7 @@
Returns:
-

url(url) → {Downloader}

+

withRenderAspect(renderAspect) → {Dosbox}

@@ -239831,7 +546704,8 @@

url - Sets the URL which shall be used for the download + Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D @@ -239867,13 +546741,13 @@
Parameters:
- url + renderAspect -string +boolean @@ -239883,7 +546757,7 @@
Parameters:
- The URL + The render aspect @@ -239924,7 +546798,7 @@
Parameters:
Source:
@@ -239953,7 +546827,7 @@
Returns:
- The Downloader object + This
@@ -239964,7 +546838,7 @@
Returns:
-Downloader +Dosbox
@@ -239982,7 +546856,7 @@
Returns:
-

url(url) → {Resource}

+

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

@@ -239990,7 +546864,8 @@

url - Sets the resource URL + Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D @@ -240026,13 +546901,13 @@
Parameters:
- url + renderFrameSkip -string +int @@ -240042,7 +546917,7 @@
Parameters:
- The URL + The render frameskip @@ -240083,7 +546958,7 @@
Parameters:
Source:
@@ -240112,7 +546987,7 @@
Returns:
- The Resource object + This
@@ -240123,7 +546998,7 @@
Returns:
-Resource +Dosbox
@@ -240141,7 +547016,7 @@
Returns:
-

wait() → {Wine}

+

withScript(command) → {PlainInstaller}

@@ -240149,7 +547024,7 @@

wait - wait until wineserver finishes + Sets the installation script consisting of a lambda function @@ -240160,6 +547035,55 @@

wait + + + + Name + + + Type + + + + + + Description + + + + + + + + + command + + + + + +function + + + + + + + + + + The installation command + + + + + + + @@ -240193,7 +547117,7 @@

waitSource:
@@ -240221,6 +547145,10 @@

wait + The PlainInstaller object + +
@@ -240229,7 +547157,7 @@
Returns:
-Wine +PlainInstaller
@@ -240247,13 +547175,17 @@
Returns:
-

winepath(pathopt) → {String}

+

withSetting(key, value) → {Dosbox}

+
+ Sets a dosbox setting +
+ @@ -240275,8 +547207,6 @@
Parameters:
Type - Attributes - @@ -240289,33 +547219,46 @@
Parameters:
- path + key -String +string - - - <optional>
- - + + + The key of the setting (example dosbox_memsize) + + + + + + + value + + + - +any + + + - + + + The value to be set @@ -240356,7 +547299,7 @@
Parameters:
Source:
@@ -240384,6 +547327,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -240392,7 +547339,7 @@
Returns:
-String +Dosbox
@@ -240410,7 +547357,7 @@
Returns:
-

wineServer(wineserver)

+

withVersion(major, minor) → {OpenGL}

@@ -240418,7 +547365,7 @@

wineServer<
- executes wineserver in current prefix + Specifies the major and minor versions
@@ -240454,13 +547401,13 @@

Parameters:
- wineserver + major -string +number @@ -240470,7 +547417,30 @@
Parameters:
- parameter + The major version + + + + + + + minor + + + + + +number + + + + + + + + + + The minor version @@ -240511,7 +547481,7 @@
Parameters:
Source:
@@ -240536,6 +547506,28 @@
Parameters:
+
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +OpenGL + + +
+
+ + @@ -240547,7 +547539,7 @@
Parameters:
-

withScript(command) → {PlainInstaller}

+

withWindowsVersion(version, servicePack) → {WindowsVersion}

@@ -240555,7 +547547,7 @@

withScript<
- Sets the installation script consisting of a lambda function + Specifies the default windows version
@@ -240591,13 +547583,13 @@

Parameters:
- command + version -function +string @@ -240607,7 +547599,30 @@
Parameters:
- The installation command + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31 + + + + + + + servicePack + + + + + +string + + + + + + + + + + e.g. sp3 @@ -240648,7 +547663,7 @@
Parameters:
Source:
@@ -240677,7 +547692,7 @@
Returns:
- The PlainInstaller object + This
@@ -240688,7 +547703,7 @@
Returns:
-PlainInstaller +WindowsVersion
@@ -240865,17 +547880,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -240897,6 +547908,8 @@
Parameters:
Type + Attributes + @@ -240922,10 +547935,20 @@
Parameters:
+ + + <optional>
+ + + + + - The setup wizard + + + @@ -240966,7 +547989,7 @@
Parameters:
Source:
@@ -240994,10 +548017,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -241006,7 +548025,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -241024,13 +548046,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -241052,8 +548078,6 @@
Parameters:
Type - Attributes - @@ -241079,20 +548103,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -241133,7 +548147,7 @@
Parameters:
Source:
@@ -241161,6 +548175,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -241169,10 +548187,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -241206,7 +548221,7 @@
Returns:

default()

-
Tool to repair a Wine prefix
+
Tool to reboot Wine
@@ -241269,7 +548284,7 @@

new defaultSource:
@@ -241633,7 +548648,7 @@
Returns:
-

algorithm(algorithm) → {Resource}

+

algorithm(algorithm) → {Downloader}

@@ -241641,7 +548656,7 @@

algorithm - Sets the checksum algorithm + Sets the algorithm which shall be used to verify the checksum @@ -241693,7 +548708,7 @@
Parameters:
- The algorithm to verify the checksum (e.g. "SHA") + The checksum algorithm (e.g. "SHA") @@ -241734,7 +548749,7 @@
Parameters:
Source:
@@ -241763,7 +548778,7 @@
Returns:
- The Resource object + The Downloader object
@@ -241774,7 +548789,7 @@
Returns:
-Resource +Downloader
@@ -241792,7 +548807,7 @@
Returns:
-

algorithm(algorithm) → {Downloader}

+

algorithm(algorithm) → {Resource}

@@ -241800,7 +548815,7 @@

algorithm - Sets the algorithm which shall be used to verify the checksum + Sets the checksum algorithm @@ -241852,7 +548867,7 @@
Parameters:
- The checksum algorithm (e.g. "SHA") + The algorithm to verify the checksum (e.g. "SHA") @@ -241893,7 +548908,7 @@
Parameters:
Source:
@@ -241922,7 +548937,7 @@
Returns:
- The Downloader object + The Resource object
@@ -241933,7 +548948,7 @@
Returns:
-Downloader +Resource
@@ -243081,7 +550096,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -243089,7 +550104,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -243141,7 +550156,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -243182,7 +550197,7 @@
Parameters:
Source:
@@ -243211,7 +550226,7 @@
Returns:
- The Downloader object + The Resource object
@@ -243222,7 +550237,7 @@
Returns:
-Downloader +Resource
@@ -243240,7 +550255,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -243248,7 +550263,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -243300,7 +550315,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -243341,117 +550356,7 @@
Parameters:
Source:
- - - - - - - -

- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
@@ -243480,7 +550385,7 @@
Returns:
- The Wine object + The Downloader object
@@ -243491,7 +550396,7 @@
Returns:
-Wine +Downloader
@@ -243615,7 +550520,7 @@
Returns:
-

description(description) → {WineShortcut}

+

create() → {Wine}

@@ -243623,7 +550528,7 @@

descriptio
- Sets the shortcut description + runs "wineboot"
@@ -243634,55 +550539,6 @@

descriptio -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - @@ -243716,7 +550572,7 @@
Parameters:
Source:
@@ -243745,7 +550601,7 @@
Returns:
- The WineShortcut object + The Wine object
@@ -243756,7 +550612,7 @@
Returns:
-WineShortcut +Wine
@@ -243774,7 +550630,7 @@
Returns:
-

directory(directory) → {Resource}

+

description(description) → {WineShortcut}

@@ -243782,7 +550638,7 @@

directory - Sets the directory inside the resources directory where the Resource is stored + Sets the shortcut description @@ -243818,7 +550674,7 @@
Parameters:
- directory + description @@ -243834,166 +550690,7 @@
Parameters:
- 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:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -244034,7 +550731,7 @@
Parameters:
Source:
@@ -244063,7 +550760,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + The WineShortcut object
@@ -244074,7 +550771,7 @@
Returns:
-String +WineShortcut
@@ -244092,7 +550789,7 @@
Returns:
-

environment(environment) → {WineShortcut}

+

directory(directory) → {Resource}

@@ -244100,7 +550797,7 @@

environmen
- Sets the shortcut environment variables + Sets the directory inside the resources directory where the Resource is stored
@@ -244136,7 +550833,7 @@

Parameters:
- + + @@ -244193,7 +550890,7 @@
Parameters:
Source:
@@ -244222,7 +550919,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -244233,7 +550930,7 @@
Returns:
-WineShortcut +Resource
@@ -244251,7 +550948,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

dosConfigFile() → {string}

@@ -244259,7 +550956,7 @@

environmen
- set environment + Fetch the prefix dosbox configuration file
@@ -244270,55 +550967,6 @@

environmen -

Parameters:
- - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizardThe shortcut description
environmentdirectory @@ -244152,7 +550849,7 @@
Parameters:
-
The environment variablesThe directory path
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - @@ -244352,7 +551000,7 @@
Parameters:
Source:
@@ -244381,7 +551029,7 @@
Returns:
- QuickScript object + The dosbox configuration file path
@@ -244392,7 +551040,7 @@
Returns:
-QuickScript +string
@@ -244410,7 +551058,7 @@
Returns:
-

executable(executable, args)

+

download(setupWizard) → {String}

@@ -244418,7 +551066,7 @@

executable<
- set executable + Download the setup resources in the same directory, and returns the path of the .exe
@@ -244454,28 +551102,15 @@

Parameters:
- executable + setupWizard - - - - - - - executable without path (e.g. "Steam.exe") - - - + +SetupWizard - - - args - - @@ -244483,7 +551118,7 @@
Parameters:
- use array (e.g. ["-applaunch", 409160]) + The setup wizard @@ -244524,7 +551159,7 @@
Parameters:
Source:
@@ -244549,19 +551184,26 @@
Parameters:
+
Returns:
+ +
+ The .exe file entry that can be used to continue the installation +
- +
+
+ Type +
+
- +String - - -

fontDirectory() → {string}

- +
+
@@ -244569,120 +551211,79 @@

fontDire - - - - - - - - - - -
+ + - +

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 +
- - - - - - -
Source:
-
- - - +
Parameters:
-
- - - - - - - - - - - - - - - -

Returns:
+ + + + + -
- font directory -
- + -
-
- Type -
-
-string + -
-
+ + + + + + + + + - - + - -

get() → {string}

- + + - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - + +
NameTypeDescription
wine + + +Wine + + The wine engine object
@@ -244718,7 +551319,7 @@

getSource:
@@ -244747,7 +551348,7 @@
Returns:
- The path leading to the downloaded resource + True if the download has finished, false otherwise
@@ -244758,7 +551359,7 @@
Returns:
-string +boolean
@@ -244776,7 +551377,7 @@
Returns:
-

get() → {String}

+

downloadStarted(wine) → {boolean}

@@ -244784,7 +551385,7 @@

get - Gets the content of the downloaded file + Checks whether the software download has started @@ -244795,6 +551396,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + wine + + + + + +Wine + + + + + + + + + + The wine engine object + + + + + + + @@ -244828,7 +551478,7 @@

getSource:
@@ -244857,7 +551507,7 @@
Returns:
- The content of downloaded file + True if the download has started, false otherwise
@@ -244868,7 +551518,7 @@
Returns:
-String +boolean
@@ -244886,7 +551536,7 @@
Returns:
-

get(resourceName) → {Resource}

+

environment(environment) → {WineShortcut}

@@ -244894,7 +551544,7 @@

get - Returns the searched resource + Sets the shortcut environment variables @@ -244930,7 +551580,7 @@
Parameters:
- resourceName + environment @@ -244946,7 +551596,7 @@
Parameters:
- The name of the resource + The environment variables @@ -244987,7 +551637,7 @@
Parameters:
Source:
@@ -245016,7 +551666,7 @@
Returns:
- The found resource + The WineShortcut object
@@ -245027,7 +551677,7 @@
Returns:
-Resource +WineShortcut
@@ -245045,7 +551695,7 @@
Returns:
-

getContainer() → {string}

+

environment(environment) → {QuickScript}

@@ -245053,7 +551703,7 @@

getContai
- Returns the name of the container belonging to a shortcut + set environment
@@ -245064,6 +551714,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + @@ -245097,7 +551796,7 @@

getContai
Source:
@@ -245126,7 +551825,7 @@

Returns:
- The container name + QuickScript object
@@ -245137,7 +551836,7 @@
Returns:
-string +QuickScript
@@ -245155,7 +551854,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

executable(executable, args)

@@ -245163,7 +551862,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + set executable
@@ -245199,23 +551898,36 @@

Parameters:
- setupFileName + executable - -string + + + + executable without path (e.g. "Steam.exe") + + + + + + + args + + + + - The setup file name + use array (e.g. ["-applaunch", 409160]) @@ -245256,7 +551968,91 @@
Parameters:
Source:
+ + + + + + + +

+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -245285,7 +552081,7 @@
Returns:
- This + font directory
@@ -245296,7 +552092,7 @@
Returns:
-GogScript +string
@@ -245314,7 +552110,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

get(resourceName) → {Resource}

@@ -245322,7 +552118,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Returns the searched resource
@@ -245358,13 +552154,13 @@

Parameters:
- setupFileNames + resourceName -Array.<string> +string @@ -245374,7 +552170,7 @@
Parameters:
- The setup file name(s) + The name of the resource @@ -245415,7 +552211,7 @@
Parameters:
Source:
@@ -245444,7 +552240,7 @@
Returns:
- This + The found resource
@@ -245455,7 +552251,7 @@
Returns:
-GogScript +Resource
@@ -245473,7 +552269,7 @@
Returns:
-

headers(headers) → {Downloader}

+

get() → {String}

@@ -245481,7 +552277,7 @@

headers - Sets the http headers + Gets the content of the downloaded file @@ -245492,55 +552288,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -245574,7 +552321,7 @@
Parameters:
Source:
@@ -245603,7 +552350,7 @@
Returns:
- The Downloader object + The content of downloaded file
@@ -245614,7 +552361,7 @@
Returns:
-Downloader +String
@@ -245632,7 +552379,7 @@
Returns:
-

json() → {any}

+

get() → {string}

@@ -245640,7 +552387,7 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Fetches the Resource and returns the path leading to the downloaded resource @@ -245684,7 +552431,7 @@

jsonSource:
@@ -245713,7 +552460,7 @@
Returns:
- The json value + The path leading to the downloaded resource
@@ -245724,7 +552471,7 @@
Returns:
-any +string
@@ -245742,7 +552489,7 @@
Returns:
-

kill() → {Wine}

+

getContainer() → {string}

@@ -245750,7 +552497,7 @@

kill - kill wine server + Returns the name of the container belonging to a shortcut @@ -245794,7 +552541,7 @@

killSource:
@@ -245822,6 +552569,10 @@

kill + The container name + +
@@ -245830,7 +552581,7 @@
Returns:
-Wine +string
@@ -245848,7 +552599,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

getSettings() → {object}

@@ -245856,8 +552607,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 + Fetch all prefix dosbox sttings
@@ -245868,55 +552618,6 @@

loginToGog< -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - @@ -245950,7 +552651,7 @@
Parameters:
Source:
@@ -245979,7 +552680,7 @@
Returns:
- This + All the settings
@@ -245990,7 +552691,7 @@
Returns:
-GogScript +object
@@ -246008,7 +552709,7 @@
Returns:
-

message(message) → {Downloader}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -246016,7 +552717,7 @@

message - Sets the download message text + Sets one setup file name so that the script can fetch it from gog.com @@ -246052,7 +552753,7 @@
Parameters:
- message + setupFileName @@ -246068,7 +552769,7 @@
Parameters:
- The download message + The setup file name @@ -246109,7 +552810,7 @@
Parameters:
Source:
@@ -246138,7 +552839,7 @@
Returns:
- The Downloader object + This
@@ -246149,7 +552850,7 @@
Returns:
-Downloader +GogScript
@@ -246167,7 +552868,7 @@
Returns:
-

miniature(miniature) → {WineShortcut}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -246175,7 +552876,7 @@

miniature - Sets the miniature for the shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com @@ -246211,16 +552912,13 @@
Parameters:
- miniature + setupFileNames Array.<string> -| - -URI @@ -246230,7 +552928,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The setup file name(s) @@ -246271,7 +552969,7 @@
Parameters:
Source:
@@ -246300,7 +552998,7 @@
Returns:
- The WineShortcut object + This
@@ -246311,7 +553009,7 @@
Returns:
-WineShortcut +GogScript
@@ -246329,7 +553027,7 @@
Returns:
-

miniature(miniatureopt)

+

headers(headers) → {Downloader}

@@ -246337,7 +553035,7 @@

miniature - get/set miniature (for the installation and the shortcut) + Sets the http headers @@ -246361,8 +553059,6 @@
Parameters:
Type - Attributes - @@ -246375,33 +553071,23 @@
Parameters:
- miniature + headers -URI +Object - - - <optional>
- - - - - - - - path to the miniature file + The http headers @@ -246442,7 +553128,7 @@
Parameters:
Source:
@@ -246467,83 +553153,56 @@
Parameters:
+
Returns:
+ +
+ The Downloader object +
- +
+
+ Type +
+
- +Downloader - - -

name(name) → {Resource}

- +
+
-
- Sets the resource name -
- - - - - - - -
Parameters:
- - - - - - - + - + - + +

isHdpi() → {boolean}

+ - + - - - - - - - - - +
+ Fetches whether hdpi is enabled or not +
- - - - - - - -
NameTypeDescription
name - - -string - - The name of the resource
@@ -246579,7 +553238,7 @@
Parameters:
Source:
@@ -246608,7 +553267,7 @@
Returns:
- The Resource object + True if hdpi is enabled, false otherwise
@@ -246619,7 +553278,7 @@
Returns:
-Resource +boolean
@@ -246637,7 +553296,7 @@
Returns:
-

name(name) → {WineShortcut}

+

json() → {any}

@@ -246645,7 +553304,7 @@

name - Sets the shortcut name + Gets the content of the downloaded file and returns it as a JSON value @@ -246656,55 +553315,6 @@

name - - - - Name - - - Type - - - - - - Description - - - - - - - - - name - - - - - -string - - - - - - - - - - The shortcut name - - - - - - - @@ -246738,7 +553348,7 @@
Parameters:
Source:
@@ -246767,7 +553377,7 @@
Returns:
- The WineShortcut object + The json value
@@ -246778,7 +553388,7 @@
Returns:
-WineShortcut +any
@@ -246796,7 +553406,7 @@
Returns:
-

of(shortcut) → {void}

+

kill() → {Wine}

@@ -246804,7 +553414,7 @@

of - Sets shortcut + kill wine server @@ -246815,55 +553425,6 @@

of - - - - Name - - - Type - - - - - - Description - - - - - - - - - shortcut - - - - - -string - - - - - - - - - - shortcut - - - - - - - @@ -246897,7 +553458,7 @@
Parameters:
Source:
@@ -246933,7 +553494,7 @@
Returns:
-void +Wine
@@ -246951,7 +553512,7 @@
Returns:
-

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

+

loginToGog(setupWizard) → {GogScript}

@@ -246959,7 +553520,8 @@

- Specifies if the download shall be executed only if a newer version is available + 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
@@ -246995,13 +553557,13 @@

Parameters:
- onlyIfUpdateAvailable + setupWizard -boolean +SetupWizard @@ -247011,7 +553573,7 @@
Parameters:
- true the download shall be executed only if a newer version is available + The setupWizard to use @@ -247052,7 +553614,7 @@
Parameters:
Source:
@@ -247081,7 +553643,7 @@
Returns:
- The Downloader object + This
@@ -247092,7 +553654,7 @@
Returns:
-Downloader +GogScript
@@ -247110,7 +553672,7 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

message(message) → {Downloader}

@@ -247118,7 +553680,7 @@

prefix - Sets the shortcut prefix + Sets the download message text @@ -247154,7 +553716,7 @@
Parameters:
- prefix + message @@ -247170,7 +553732,7 @@
Parameters:
- The shortcut prefix + The download message @@ -247211,7 +553773,7 @@
Parameters:
Source:
@@ -247240,7 +553802,7 @@
Returns:
- The WineShortcut object + The Downloader object
@@ -247251,7 +553813,7 @@
Returns:
-WineShortcut +Downloader
@@ -247269,13 +553831,17 @@
Returns:
-

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

+

miniature(miniatureopt)

+
+ get/set miniature (for the installation and the shortcut) +
+ @@ -247311,112 +553877,13 @@
Parameters:
- prefix - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - distribution - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - architecture - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - version + miniature -string +URI @@ -247436,7 +553903,7 @@
Parameters:
- + path to the miniature file @@ -247477,7 +553944,7 @@
Parameters:
Source:
@@ -247502,55 +553969,86 @@
Parameters:
-
Returns:
- -
-
- Type -
-
- -string -| -Wine + + -
-
+ + +

miniature(miniature) → {WineShortcut}

+ + + + +
+ Sets the miniature for the shortcut +
+ + - - - - -

prefixDirectory() → {string}

- +
Parameters:
+ + + + + + + -
- returns prefix directory -
+ + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
miniature + + +Array.<string> +| +URI + + An array which specifies the application of which the miniature shall be used or URI of the miniature
@@ -247586,7 +554084,7 @@

prefix
Source:
@@ -247614,6 +554112,10 @@

prefix

Returns:
+
+ The WineShortcut object +
+
@@ -247622,7 +554124,7 @@
Returns:
-string +WineShortcut
@@ -247640,13 +554142,16 @@
Returns:
-

programFiles() → {string}

+

name(name) → {Resource}

+
+ Sets the resource name +
@@ -247656,6 +554161,56 @@

programFi +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
name + + +string + + + + The name of the resource
+ + + @@ -247688,7 +554243,7 @@

programFi
Source:
@@ -247717,7 +554272,7 @@

Returns:
- name of "Program Files" + The Resource object
@@ -247728,7 +554283,7 @@
Returns:
-string +Resource
@@ -247746,7 +554301,7 @@
Returns:
-

run(userArguments) → {void}

+

name(name) → {WineShortcut}

@@ -247754,7 +554309,7 @@

run - Runs a shortcut with the given user arguments + Sets the shortcut name @@ -247790,13 +554345,13 @@
Parameters:
- userArguments + name -array +string @@ -247806,7 +554361,7 @@
Parameters:
- The user arguments + The shortcut name @@ -247847,7 +554402,7 @@
Parameters:
Source:
@@ -247875,6 +554430,10 @@
Parameters:
Returns:
+
+ The WineShortcut object +
+
@@ -247883,7 +554442,7 @@
Returns:
-void +WineShortcut
@@ -247901,13 +554460,17 @@
Returns:
-

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

+

of(shortcut) → {void}

+
+ Sets shortcut +
+ @@ -247929,12 +554492,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -247945,7 +554504,7 @@
Parameters:
- executable + shortcut @@ -247958,217 +554517,165 @@
Parameters:
- - - - - - - - - - - - - + shortcut + + - - - args - - - - -array - - - - - - <optional>
- - +
- - - + - - - - [] - - - + - - + - - - workingDirectory - + - - - -string + + - - + - - - - <optional>
- + - + - - - + - - - - working container - - - + - - + +
Source:
+
+ - - - captureOutput - + - - - -boolean + +
- - - - - - <optional>
- - - - - - - - - false - - - - - + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +void + + +
+
- - - wait - - - - -boolean - - + - - - <optional>
- - + - - - + +

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

+ - - - - false - - - + - - + +
+ Specifies if the download shall be executed only if a newer version is available +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + - + - - - - - - + @@ -248209,7 +554716,7 @@
Parameters:
Source:
@@ -248238,7 +554745,7 @@
Returns:
- output + The Downloader object
@@ -248249,7 +554756,7 @@
Returns:
-String +Downloader
@@ -248267,7 +554774,7 @@
Returns:
-

runInsidePrefix(executable, argsopt, waitopt)

+

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

@@ -248299,8 +554806,6 @@
Parameters:
- - @@ -248311,7 +554816,7 @@
Parameters:
- + - @@ -248346,13 +554849,13 @@
Parameters:
- + - @@ -248385,13 +554882,13 @@
Parameters:
- + + + + + + + + + + + + + + + + @@ -248458,7 +554982,7 @@
Parameters:
Source:
@@ -248483,6 +555007,27 @@
Parameters:
+
Returns:
+ + + + +
+
+ Type +
+
+ +string +| + +Wine + + +
+
+ + @@ -248494,7 +555039,7 @@
Parameters:
- +

prefix(prefix) → {WineShortcut}

@@ -248502,7 +555047,7 @@ - + + @@ -248595,117 +555140,7 @@
Parameters:
Source:
- - - - - - - - - - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
@@ -248733,6 +555168,10 @@

stop + The WineShortcut object + +
@@ -248741,7 +555180,7 @@
Returns:
-void +WineShortcut
@@ -248759,13 +555198,17 @@
Returns:
-

system32directory() → {string}

+

prefixDirectory() → {string}

+
+ returns prefix directory +
+ @@ -248807,7 +555250,7 @@

syst
Source:
@@ -248835,10 +555278,6 @@

syst

Returns:
-
- system32 directory -
-
@@ -248865,7 +555304,7 @@
Returns:
-

system64directory() → {string}

+

programFiles() → {string}

@@ -248913,7 +555352,7 @@

syst
Source:
@@ -248942,7 +555381,7 @@

Returns:
- system64 directory + name of "Program Files"
@@ -248971,17 +555410,13 @@
Returns:
-

to(localDestination) → {Downloader}

+

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

-
- Sets the download destination -
- @@ -249003,8 +555438,12 @@
Parameters:

+ + + + @@ -249015,7 +555454,7 @@
Parameters:
- + + - + + + + + - -
NameTypeDescription
userDataonlyIfUpdateAvailable -map +boolean - - <optional>
- - - - -
- - empty - - true the download shall be executed only if a newer version is available
DefaultDescription
executableprefix @@ -248326,6 +554831,8 @@
Parameters:
+ <optional>
+ @@ -248334,10 +554841,6 @@
Parameters:
-
- -
argsdistribution -array +string @@ -248371,12 +554874,6 @@
Parameters:
-
- - [] - -
waitarchitecture -boolean +string @@ -248410,13 +554907,40 @@
Parameters:
-
+ +
version + - false +string + + + + + + <optional>
+ + + +
searchprefix @@ -248554,7 +555099,7 @@
Parameters:
-
The executable nameThe shortcut prefix
TypeAttributesDefaultDescription
localDestinationexecutable @@ -249028,169 +555467,217 @@
Parameters:
+ + + + + The destination of the download. If it is a directory, the file will be placed inside + +
- - + + + args + + + + +array -
+ + - + + + + <optional>
+ - + - + + + - + + + + [] + + + - + + - + + + workingDirectory + - + + + +string - - + + - + + + + <optional>
+ - + - -
Source:
-
- + + + - + + + + working container + + + - + + -
- - - - - - - + + + captureOutput + + + + +boolean + + + + + + <optional>
+ + - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - + + - + + + + false + + + - -

trustLevel(trustLevel) → {WineShortcut}

- + + + + + wait + - -
- Sets the trust level -
- + + + +boolean + + + + + + <optional>
+ + + + + + + + + false + + + + + -
Parameters:
- - - - - - - - - - - - - - - - - - - - - + + - + + + + + @@ -249231,7 +555718,7 @@
Parameters:
Source:
@@ -249260,7 +555747,7 @@
Returns:
- The WineShortcut object + output
@@ -249271,7 +555758,7 @@
Returns:
-WineShortcut +String
@@ -249289,7 +555776,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

run(userArguments) → {void}

@@ -249297,7 +555784,7 @@

trustLevel<
- set trust level + Runs a shortcut with the given user arguments
@@ -249333,13 +555820,13 @@

Parameters:
- + + @@ -249390,7 +555877,7 @@
Parameters:
Source:
@@ -249418,10 +555905,6 @@
Parameters:
Returns:
-
- QuickScript object -
-
@@ -249430,7 +555913,7 @@
Returns:
-QuickScript +void
@@ -249448,17 +555931,13 @@
Returns:
-

type(type) → {WineShortcut}

+

runInsidePrefix(executable, argsopt, waitopt)

-
- Sets the shortcut type -
- @@ -249480,8 +555959,12 @@
Parameters:
+ + + + @@ -249492,7 +555975,7 @@
Parameters:
- + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -249549,7 +556122,7 @@
Parameters:
Source:
@@ -249574,28 +556147,6 @@
Parameters:
-
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - @@ -249607,7 +556158,7 @@
Returns:
-

uninstall(name) → {bool}

+ @@ -249615,7 +556166,7 @@

uninstall - uninstall application + Sets the executable which shall be used @@ -249651,7 +556202,7 @@
Parameters:

- + + @@ -249708,7 +556259,7 @@
Parameters:
Source:
@@ -249737,7 +556288,7 @@
Returns:
- true if an application has been uninstalled, false otherwise + The WineShortcut object
@@ -249748,7 +556299,7 @@
Returns:
-bool +WineShortcut
@@ -249766,7 +556317,7 @@
Returns:
-

uninstall() → {void}

+

stop() → {void}

@@ -249774,7 +556325,7 @@

uninstall - Uninstalls the shortcut + Stops the running shortcut @@ -249818,7 +556369,7 @@

uninstallSource:
@@ -249872,16 +556423,13 @@
Returns:
-

url(url) → {Downloader}

+

system32directory() → {string}

-
- Sets the URL which shall be used for the download -
@@ -249891,53 +556439,109 @@

url + -

NameTypeDescription
trustLeveluserData -string +map + + <optional>
+ + + + +
The trust level + + empty + +
trustleveluserArguments -string +array @@ -249349,7 +555836,7 @@
Parameters:
-
The user arguments
TypeAttributesDefaultDescription
typeexecutable @@ -249505,10 +555988,100 @@
Parameters:
+ + + + + + + + The shortcut type
args + + +array + + + + + + <optional>
+ + + + + +
+ + [] + +
wait + + +boolean + + + + + + <optional>
+ + + + + +
+ + false + +
namesearch @@ -249667,7 +556218,7 @@
Parameters:
-
of the application which shall be uninstalledThe executable name
- - - - - + - + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + + + + + + + + + + + + + + + + + +
Returns:
+
+ system32 directory +
+ + +
+
+ Type +
+
+string -
- - - + + + - - - - - + - + - - + +

system64directory() → {string}

+ - -
NameTypeDescription
url - - -string - - The URL
+ + + + + + + + + @@ -249973,7 +556577,7 @@
Parameters:
Source:
@@ -250002,7 +556606,7 @@
Returns:
- The Downloader object + system64 directory
@@ -250013,7 +556617,7 @@
Returns:
-Downloader +string
@@ -250031,7 +556635,7 @@
Returns:
-

url(url) → {Resource}

+

to(localDestination) → {Downloader}

@@ -250039,7 +556643,7 @@

url - Sets the resource URL + Sets the download destination @@ -250075,7 +556679,7 @@
Parameters:
- url + localDestination @@ -250091,7 +556695,7 @@
Parameters:
- The URL + The destination of the download. If it is a directory, the file will be placed inside @@ -250132,7 +556736,7 @@
Parameters:
Source:
@@ -250161,7 +556765,7 @@
Returns:
- The Resource object + The Downloader object
@@ -250172,7 +556776,7 @@
Returns:
-Resource +Downloader
@@ -250190,7 +556794,7 @@
Returns:
-

wait() → {Wine}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -250198,7 +556802,7 @@

wait - wait until wineserver finishes + Sets the trust level @@ -250209,6 +556813,55 @@

wait + + + + Name + + + Type + + + + + + Description + + + + + + + + + trustLevel + + + + + +string + + + + + + + + + + The trust level + + + + + + + @@ -250242,7 +556895,7 @@

waitSource:
@@ -250270,6 +556923,10 @@

wait + The WineShortcut object + +
@@ -250278,7 +556935,7 @@
Returns:
-Wine +WineShortcut
@@ -250296,13 +556953,17 @@
Returns:
-

winepath(pathopt) → {String}

+

trustLevel(trustlevel) → {QuickScript}

+
+ set trust level +
+ @@ -250324,8 +556985,6 @@
Parameters:
Type - Attributes - @@ -250338,29 +556997,19 @@
Parameters:
- path + trustlevel -String +string - - - <optional>
- - - - - - - @@ -250405,7 +557054,7 @@
Parameters:
Source:
@@ -250433,6 +557082,10 @@
Parameters:
Returns:
+
+ QuickScript object +
+
@@ -250441,7 +557094,7 @@
Returns:
-String +QuickScript
@@ -250459,7 +557112,7 @@
Returns:
-

wineServer(wineserver)

+

type(type) → {WineShortcut}

@@ -250467,7 +557120,7 @@

wineServer<
- executes wineserver in current prefix + Sets the shortcut type
@@ -250503,7 +557156,7 @@

Parameters:
- wineserver + type @@ -250519,7 +557172,7 @@
Parameters:
- parameter + The shortcut type @@ -250560,7 +557213,7 @@
Parameters:
Source:
@@ -250585,6 +557238,28 @@
Parameters:
+
Returns:
+ + +
+ The WineShortcut object +
+ + + +
+
+ Type +
+
+ +WineShortcut + + +
+
+ + @@ -250596,7 +557271,7 @@
Parameters:
-

withScript(command) → {PlainInstaller}

+

uninstall(name) → {bool}

@@ -250604,7 +557279,7 @@

withScript<
- Sets the installation script consisting of a lambda function + uninstall application
@@ -250640,13 +557315,13 @@

Parameters:
- command + name -function +string @@ -250656,7 +557331,7 @@
Parameters:
- The installation command + of the application which shall be uninstalled @@ -250697,7 +557372,7 @@
Parameters:
Source:
@@ -250726,7 +557401,7 @@
Returns:
- The PlainInstaller object + true if an application has been uninstalled, false otherwise
@@ -250737,7 +557412,7 @@
Returns:
-PlainInstaller +bool
@@ -250755,7 +557430,7 @@
Returns:
-

wizard(wizard) → {Resource}

+

uninstall() → {void}

@@ -250763,7 +557438,113 @@

wizard - Sets the setup wizard + Uninstalls the shortcut + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +void + + +
+
+ + + + + + + + + + + + + +

url(url) → {Downloader}

+ + + + + + +
+ Sets the URL which shall be used for the download
@@ -250799,13 +557580,13 @@
Parameters:
- wizard + url -SetupWizard +string @@ -250815,7 +557596,7 @@
Parameters:
- The setup wizard + The URL @@ -250856,7 +557637,7 @@
Parameters:
Source:
@@ -250885,7 +557666,7 @@
Returns:
- The Resource object + The Downloader object
@@ -250896,7 +557677,7 @@
Returns:
-Resource +Downloader
@@ -250914,7 +557695,7 @@
Returns:
-

wizard(wizard) → {Downloader}

+

url(url) → {Resource}

@@ -250922,7 +557703,7 @@

wizard - Sets the setup wizard + Sets the resource URL @@ -250958,13 +557739,13 @@
Parameters:
- wizard + url -SetupWizard +string @@ -250974,7 +557755,7 @@
Parameters:
- The setup wizard + The URL @@ -251015,7 +557796,7 @@
Parameters:
Source:
@@ -251044,7 +557825,7 @@
Returns:
- The Downloader object + The Resource object
@@ -251055,7 +557836,7 @@
Returns:
-Downloader +Resource
@@ -251073,80 +557854,23 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
+

wait() → {Wine}

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard +
+ wait until wineserver finishes +
- -
- - <optional>
- - - -
@@ -251182,7 +557906,7 @@
Parameters:
Source:
@@ -251218,10 +557942,7 @@
Returns:
-SetupWizard -| - -Wine +Wine
@@ -251234,14 +557955,16 @@
Returns:
+ + +

winepath(pathopt) → {String}

+ -

-
@@ -251249,40 +557972,68 @@

Returns:
-
-
+ + +
Parameters:
-

default()

+ + + + -
Tool to reboot Wine
+ - - -
-
- +
+ + + - -

Constructor

- + - -

new default()

- + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
path + + +String + + + + <optional>
+ + + +
@@ -251318,7 +558069,7 @@

new defaultSource:
@@ -251343,30 +558094,28 @@

new defaultReturns:

+ +
+
+ Type +
+
+ +String - - - - - - - - +
+
- - - - -

Methods

@@ -251374,7 +558123,7 @@

Methods

-

_createShortcut(prefixopt)

+

wineServer(wineserver)

@@ -251382,7 +558131,7 @@

_creat
- creates shortcut + executes wineserver in current prefix
@@ -251406,8 +558155,6 @@

Parameters:
Type - Attributes - @@ -251420,7 +558167,7 @@
Parameters:
- prefix + wineserver @@ -251433,20 +558180,10 @@
Parameters:
- - - <optional>
- - - - - - - - prefix name + parameter @@ -251487,7 +558224,7 @@
Parameters:
Source:
@@ -251523,7 +558260,7 @@
Parameters:
-

_fetchFileNameFromUrl(url) → {string}

+

withApplicationWindowsVersion(application, os) → {WindowsVersion}

@@ -251531,7 +558268,7 @@

- Fetches the file name from an URL + Specifies the windows version for a given application
@@ -251567,7 +558304,7 @@

Parameters:
- url + application @@ -251583,7 +558320,30 @@
Parameters:
- The URL + The application executable + + + + + + + os + + + + + +string + + + + + + + + + + The windows version @@ -251624,7 +558384,7 @@
Parameters:
Source:
@@ -251653,7 +558413,7 @@
Returns:
- The file name + This
@@ -251664,7 +558424,7 @@
Returns:
-string +WindowsVersion
@@ -251682,7 +558442,7 @@
Returns:
-

algorithm(algorithm) → {Resource}

+

withCpuCycles(cpuCycles) → {Dosbox}

@@ -251690,7 +558450,8 @@

algorithm - Sets the checksum algorithm + Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D @@ -251726,13 +558487,13 @@
Parameters:
- algorithm + cpuCycles -string +int @@ -251742,7 +558503,7 @@
Parameters:
- The algorithm to verify the checksum (e.g. "SHA") + (example: max 95% limit 33000) @@ -251783,7 +558544,7 @@
Parameters:
Source:
@@ -251812,7 +558573,7 @@
Returns:
- The Resource object + This
@@ -251823,7 +558584,7 @@
Returns:
-Resource +Dosbox
@@ -251841,7 +558602,7 @@
Returns:
-

algorithm(algorithm) → {Downloader}

+

withDimensions(width, height) → {VirtualDesktop}

@@ -251849,7 +558610,7 @@

algorithm - Sets the algorithm which shall be used to verify the checksum + Specifies the dimensions of the virtual desktop @@ -251885,13 +558646,13 @@
Parameters:
- algorithm + width -string +number @@ -251901,7 +558662,30 @@
Parameters:
- The checksum algorithm (e.g. "SHA") + width of virtual desktop (in px) + + + + + + + height + + + + + +number + + + + + + + + + + height of virtual desktop (in px) @@ -251942,7 +558726,7 @@
Parameters:
Source:
@@ -251971,7 +558755,7 @@
Returns:
- The Downloader object + This
@@ -251982,7 +558766,7 @@
Returns:
-Downloader +VirtualDesktop
@@ -252000,7 +558784,7 @@
Returns:
-

application(application) → {AppResource}

+

withDriver(driver) → {SoundDriver}

@@ -252008,7 +558792,7 @@

applicatio
- Sets the application containing the resources + Specifies the used sound driver
@@ -252044,7 +558828,7 @@

Parameters:
- application + driver @@ -252060,7 +558844,7 @@
Parameters:
- The application with the resource + alsa or pulse @@ -252101,7 +558885,7 @@
Parameters:
Source:
@@ -252130,7 +558914,7 @@
Returns:
- The AppResource object + This
@@ -252141,7 +558925,7 @@
Returns:
-AppResource +SoundDriver
@@ -252159,19 +558943,72 @@
Returns:
-

architecture() → {string}

+

withExtension(extension) → {NativeApplication}

+ + + + +
+ Specifies the file extension +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
extension + + +string + + + + The file extension (pdf, txt, rtf)
@@ -252207,7 +559044,7 @@

architect
Source:
@@ -252236,7 +559073,7 @@

Returns:
- architecture ("x86" or "amd64") + This
@@ -252247,7 +559084,7 @@
Returns:
-string +NativeApplication
@@ -252265,7 +559102,7 @@
Returns:
-

arguments(args) → {WineShortcut}

+

withHdpi(hdpi) → {HDPI}

@@ -252273,7 +559110,7 @@

arguments - Sets the shortcut arguments + Specifies whether hdpi should be enabled or not @@ -252309,13 +559146,13 @@
Parameters:
- args + hdpi -array +boolean @@ -252325,7 +559162,7 @@
Parameters:
- The shortcut arguments + true if hdpi shall be enabled @@ -252366,7 +559203,7 @@
Parameters:
Source:
@@ -252395,7 +559232,7 @@
Returns:
- The WineShortcut object + This
@@ -252406,7 +559243,7 @@
Returns:
-WineShortcut +HDPI
@@ -252424,13 +559261,17 @@
Returns:
-

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

+

withManaged(managed) → {Managed}

+
+ Specifies the global managed state +
+ @@ -252452,12 +559293,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -252468,39 +559305,23 @@
Parameters:
- architecture + managed -string +boolean - - - <optional>
- - - - - - - - - current architecture - - - - - + True if it shall be managed @@ -252541,7 +559362,7 @@
Parameters:
Source:
@@ -252569,6 +559390,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -252577,7 +559402,7 @@
Returns:
-Array.<string> +Managed
@@ -252595,13 +559420,17 @@
Returns:
-

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

+

withManagedApplication(application, managed) → {Managed}

+
+ Specifies the managed state for a given application +
+ @@ -252623,12 +559452,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -252639,7 +559464,7 @@
Parameters:
- distribution name + application @@ -252652,26 +559477,33 @@
Parameters:
- - - <optional>
- - + - - + The application + + + + + + + managed + - - current distribution - - +boolean + + + - + + + + + True if the application shall be managed @@ -252712,7 +559544,7 @@
Parameters:
Source:
@@ -252740,6 +559572,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -252748,7 +559584,7 @@
Returns:
-Array.<string> +Managed
@@ -252766,7 +559602,7 @@
Returns:
-

binPath(subCategoryopt, versionopt) → {string}

+

withMemSize(memSize) → {Dosbox}

@@ -252774,8 +559610,8 @@

binPath - returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used + Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D @@ -252799,8 +559635,6 @@
Parameters:
Type - Attributes - @@ -252813,66 +559647,23 @@
Parameters:
- subCategory - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - Wine sub-category - - - - - - - version + memSize -string +int - - - <optional>
- - - - - - - - Wine version + The memory size @@ -252913,7 +559704,7 @@
Parameters:
Source:
@@ -252942,7 +559733,7 @@
Returns:
- path to "wine" binary + This
@@ -252953,7 +559744,7 @@
Returns:
-string +Dosbox
@@ -252971,7 +559762,7 @@
Returns:
-

category(category) → {WineShortcut}

+

withMode(mode) → {FontSmoothing}

@@ -252979,7 +559770,7 @@

category - Sets the shortcut category + Specifies the used font smoothing mode @@ -253015,7 +559806,7 @@
Parameters:
- category + mode @@ -253031,7 +559822,7 @@
Parameters:
- The shortcut category + "RGB", "BGR" or "Gray Scale" @@ -253072,7 +559863,7 @@
Parameters:
Source:
@@ -253101,7 +559892,7 @@
Returns:
- The WineShortcut object + This
@@ -253112,7 +559903,7 @@
Returns:
-WineShortcut +FontSmoothing
@@ -253130,7 +559921,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

withMode(mode) → {GLSL}

@@ -253138,7 +559929,7 @@

checksum - Sets the checksum + Specifies the mode @@ -253174,7 +559965,7 @@
Parameters:
- checksum + mode @@ -253190,7 +559981,7 @@
Parameters:
- The checksum which shall be used to verify the download + enabled or disabled @@ -253231,7 +560022,7 @@
Parameters:
Source:
@@ -253260,7 +560051,7 @@
Returns:
- The Downloader object + This
@@ -253271,7 +560062,7 @@
Returns:
-Downloader +GLSL
@@ -253289,7 +560080,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

withMode(mode) → {TakeFocus}

@@ -253297,7 +560088,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Specifies the mode @@ -253333,7 +560124,7 @@
Parameters:
- checksum + mode @@ -253349,7 +560140,7 @@
Parameters:
- The checksum + "Y" or "N" @@ -253390,7 +560181,7 @@
Parameters:
Source:
@@ -253419,7 +560210,7 @@
Returns:
- The Resource object + This
@@ -253430,7 +560221,7 @@
Returns:
-Resource +TakeFocus
@@ -253448,7 +560239,7 @@
Returns:
-

create() → {Wine}

+

withMode(mode) → {DirectDrawRenderer}

@@ -253456,7 +560247,7 @@

create - runs "wineboot" + Selects the used direct draw mode (either gdi or opengl) @@ -253467,114 +560258,53 @@

create - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The Wine object -
- + -
-
- Type -
-
-Wine + -
-
+ + + + + + + + + - - + - -

create() → {void}

- + + - - - -
- Creates a new shortcut -
- - - - - - - + +
NameTypeDescription
mode + + +string + + gdi or opengl
@@ -253610,7 +560340,7 @@

createSource:
@@ -253638,6 +560368,10 @@

createReturns:

+
+ This +
+
@@ -253646,7 +560380,7 @@
Returns:
-void +DirectDrawRenderer
@@ -253664,7 +560398,7 @@
Returns:
-

description(description) → {WineShortcut}

+

withRenderAspect(renderAspect) → {Dosbox}

@@ -253672,7 +560406,8 @@

descriptio
- Sets the shortcut description + Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -253708,13 +560443,13 @@

Parameters:
- description + renderAspect -string +boolean @@ -253724,7 +560459,7 @@
Parameters:
- The shortcut description + The render aspect @@ -253765,7 +560500,7 @@
Parameters:
Source:
@@ -253794,7 +560529,7 @@
Returns:
- The WineShortcut object + This
@@ -253805,7 +560540,7 @@
Returns:
-WineShortcut +Dosbox
@@ -253823,7 +560558,7 @@
Returns:
-

directory(directory) → {Resource}

+

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

@@ -253831,7 +560566,8 @@

directory - Sets the directory inside the resources directory where the Resource is stored + Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D @@ -253867,13 +560603,13 @@
Parameters:
- directory + renderFrameSkip -string +int @@ -253883,7 +560619,7 @@
Parameters:
- The directory path + The render frameskip @@ -253924,7 +560660,7 @@
Parameters:
Source:
@@ -253953,7 +560689,7 @@
Returns:
- The Resource object + This
@@ -253964,7 +560700,7 @@
Returns:
-Resource +Dosbox
@@ -253982,7 +560718,7 @@
Returns:
-

download(setupWizard) → {String}

+

withScript(command) → {PlainInstaller}

@@ -253990,7 +560726,7 @@

download - Download the setup resources in the same directory, and returns the path of the .exe + Sets the installation script consisting of a lambda function @@ -254026,13 +560762,13 @@
Parameters:
- setupWizard + command -SetupWizard +function @@ -254042,7 +560778,7 @@
Parameters:
- The setup wizard + The installation command @@ -254083,7 +560819,7 @@
Parameters:
Source:
@@ -254112,7 +560848,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + The PlainInstaller object
@@ -254123,7 +560859,7 @@
Returns:
-String +PlainInstaller
@@ -254141,7 +560877,7 @@
Returns:
-

environment(environment) → {WineShortcut}

+

withSetting(key, value) → {Dosbox}

@@ -254149,7 +560885,7 @@

environmen
- Sets the shortcut environment variables + Sets a dosbox setting
@@ -254185,7 +560921,7 @@

Parameters:
- environment + key @@ -254201,7 +560937,30 @@
Parameters:
- The environment variables + The key of the setting (example dosbox_memsize) + + + + + + + value + + + + + +any + + + + + + + + + + The value to be set @@ -254242,7 +561001,7 @@
Parameters:
Source:
@@ -254271,7 +561030,7 @@
Returns:
- The WineShortcut object + This
@@ -254282,7 +561041,7 @@
Returns:
-WineShortcut +Dosbox
@@ -254300,7 +561059,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

withVersion(major, minor) → {OpenGL}

@@ -254308,7 +561067,7 @@

environmen
- set environment + Specifies the major and minor versions
@@ -254344,13 +561103,13 @@

Parameters:
- environment + major -string +number @@ -254360,7 +561119,30 @@
Parameters:
- variables + The major version + + + + + + + minor + + + + + +number + + + + + + + + + + The minor version @@ -254401,7 +561183,7 @@
Parameters:
Source:
@@ -254430,7 +561212,7 @@
Returns:
- QuickScript object + This
@@ -254441,7 +561223,7 @@
Returns:
-QuickScript +OpenGL
@@ -254459,7 +561241,7 @@
Returns:
-

executable(executable, args)

+

withWindowsVersion(version, servicePack) → {WindowsVersion}

@@ -254467,7 +561249,7 @@

executable<
- set executable + Specifies the default windows version
@@ -254503,36 +561285,46 @@

Parameters:
- executable + version + +string + + + - executable without path (e.g. "Steam.exe") + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31 - args + servicePack + +string + + + - use array (e.g. ["-applaunch", 409160]) + e.g. sp3 @@ -254573,7 +561365,7 @@
Parameters:
Source:
@@ -254598,6 +561390,28 @@
Parameters:
+
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + @@ -254609,19 +561423,72 @@
Parameters:
-

fontDirectory() → {string}

+

wizard(wizard) → {Resource}

+ + + + +
+ Sets the setup wizard +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wizard + + +SetupWizard + + The setup wizard
@@ -254657,7 +561524,7 @@

fontDire
Source:
@@ -254686,7 +561553,7 @@

Returns:
- font directory + The Resource object
@@ -254697,7 +561564,7 @@
Returns:
-string +Resource
@@ -254715,16 +561582,13 @@
Returns:
-

get() → {string}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Fetches the Resource and returns the path leading to the downloaded resource -
@@ -254733,6 +561597,66 @@

get + + + + Name + + + Type + + + Attributes + + + + + Description + + + + + + + + + wizard + + + + + +SetupWizard + + + + + + + + + <optional>
+ + + + + + + + + + + + + + + + + @@ -254767,7 +561691,7 @@

getSource:
@@ -254795,10 +561719,6 @@

get - The path leading to the downloaded resource - -
@@ -254807,7 +561727,10 @@
Returns:
-string +SetupWizard +| + +Wine
@@ -254825,7 +561748,7 @@
Returns:
-

get() → {String}

+

wizard(wizard) → {Downloader}

@@ -254833,7 +561756,7 @@

get - Gets the content of the downloaded file + Sets the setup wizard @@ -254844,6 +561767,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + wizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + @@ -254877,7 +561849,7 @@

getSource:
@@ -254906,7 +561878,7 @@
Returns:
- The content of downloaded file + The Downloader object
@@ -254917,7 +561889,7 @@
Returns:
-String +Downloader
@@ -254930,22 +561902,14 @@
Returns:
- - -

get(resourceName) → {Resource}

- + - - -
- Returns the searched resource -
- +

@@ -254953,54 +561917,40 @@

get - - +

default()

- Name +
Tool to repair a Wine prefix
+ + - Type - +
+
+ - + +

Constructor

+ - Description - - + +

new default()

+ - - - - resourceName - - - - -string - - - - - The name of the resource - - - - + @@ -255036,7 +561986,7 @@
Parameters:
Source:
@@ -255061,32 +562011,30 @@
Parameters:
-
Returns:
- -
- The found resource -
-
-
- Type -
-
- -Resource + +
- - + + + + + + + + + +

Methods

@@ -255094,7 +562042,7 @@
Returns:
-

getContainer() → {string}

+

_createShortcut(prefixopt)

@@ -255102,7 +562050,7 @@

getContai
- Returns the name of the container belonging to a shortcut + creates shortcut
@@ -255113,6 +562061,67 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
prefix + + +string + + + + + + <optional>
+ + + + + +
prefix name
+ + @@ -255146,7 +562155,7 @@

getContai
Source:
@@ -255171,28 +562180,6 @@

getContai -

Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - @@ -255204,7 +562191,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

_fetchFileNameFromUrl(url) → {string}

@@ -255212,7 +562199,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Fetches the file name from an URL
@@ -255248,7 +562235,7 @@

Parameters:
- setupFileName + url @@ -255264,7 +562251,7 @@
Parameters:
- The setup file name + The URL @@ -255305,7 +562292,7 @@
Parameters:
Source:
@@ -255334,7 +562321,7 @@
Returns:
- This + The file name
@@ -255345,7 +562332,7 @@
Returns:
-GogScript +string
@@ -255363,7 +562350,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

algorithm(algorithm) → {Downloader}

@@ -255371,7 +562358,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Sets the algorithm which shall be used to verify the checksum
@@ -255407,13 +562394,13 @@

Parameters:
- setupFileNames + algorithm -Array.<string> +string @@ -255423,7 +562410,7 @@
Parameters:
- The setup file name(s) + The checksum algorithm (e.g. "SHA") @@ -255464,7 +562451,7 @@
Parameters:
Source:
@@ -255493,7 +562480,7 @@
Returns:
- This + The Downloader object
@@ -255504,7 +562491,7 @@
Returns:
-GogScript +Downloader
@@ -255522,7 +562509,7 @@
Returns:
-

headers(headers) → {Downloader}

+

algorithm(algorithm) → {Resource}

@@ -255530,7 +562517,7 @@

headers - Sets the http headers + Sets the checksum algorithm @@ -255566,13 +562553,13 @@
Parameters:
- headers + algorithm -Object +string @@ -255582,7 +562569,7 @@
Parameters:
- The http headers + The algorithm to verify the checksum (e.g. "SHA") @@ -255623,7 +562610,7 @@
Parameters:
Source:
@@ -255652,7 +562639,7 @@
Returns:
- The Downloader object + The Resource object
@@ -255663,7 +562650,7 @@
Returns:
-Downloader +Resource
@@ -255681,7 +562668,7 @@
Returns:
-

json() → {any}

+

application(application) → {AppResource}

@@ -255689,7 +562676,7 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Sets the application containing the resources @@ -255700,6 +562687,55 @@

json + + + + Name + + + Type + + + + + + Description + + + + + + + + + application + + + + + +string + + + + + + + + + + The application with the resource + + + + + + + @@ -255733,7 +562769,7 @@

jsonSource:
@@ -255762,7 +562798,7 @@
Returns:
- The json value + The AppResource object
@@ -255773,7 +562809,7 @@
Returns:
-any +AppResource
@@ -255791,17 +562827,13 @@
Returns:
-

kill() → {Wine}

+

architecture() → {string}

-
- kill wine server -
- @@ -255843,7 +562875,7 @@

killSource:
@@ -255871,6 +562903,10 @@

kill + architecture ("x86" or "amd64") + +
@@ -255879,7 +562915,7 @@
Returns:
-Wine +string
@@ -255897,7 +562933,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

arguments(args) → {WineShortcut}

@@ -255905,8 +562941,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 shortcut arguments
@@ -255942,23 +562977,198 @@

Parameters:
- setupWizard + args + + + + + +array + + + + + + + + + + The shortcut arguments + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The WineShortcut object +
+ + + +
+
+ Type +
+
+ +WineShortcut + + +
+
+ + + + + + + + + + + + + +

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

+ + + + + + + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + @@ -255999,7 +563209,7 @@
Parameters:
Source:
@@ -256027,10 +563237,6 @@
Parameters:
Returns:
-
- This -
-
@@ -256039,7 +563245,7 @@
Returns:
-GogScript +Array.<string>
@@ -256057,17 +563263,13 @@
Returns:
-

message(message) → {Downloader}

+

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

-
- Sets the download message text -
- @@ -256089,8 +563291,12 @@
Parameters:
+ + + + @@ -256101,7 +563307,7 @@
Parameters:
- + + + + + - + @@ -256158,7 +563380,7 @@
Parameters:
Source:
@@ -256186,10 +563408,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -256198,7 +563416,7 @@
Returns:
-Downloader +Array.<string>
@@ -256216,7 +563434,7 @@
Returns:
-

miniature(miniature) → {WineShortcut}

+

binPath(subCategoryopt, versionopt) → {string}

@@ -256224,7 +563442,8 @@

miniature - Sets the miniature for the shortcut + returns the path to the engine binary directory +if no parameters are given, the Wine version of the current prefix is used @@ -256248,6 +563467,8 @@
Parameters:

+ + @@ -256260,26 +563481,66 @@
Parameters:
- + + + + + + + + + + + + + + + + + + + + + - + @@ -256320,7 +563581,7 @@
Parameters:
Source:
@@ -256349,7 +563610,7 @@
Returns:
- The WineShortcut object + path to "wine" binary
@@ -256360,7 +563621,7 @@
Returns:
-WineShortcut +string
@@ -256378,7 +563639,7 @@
Returns:
-

miniature(miniatureopt)

+

category(category) → {WineShortcut}

@@ -256386,7 +563647,7 @@

miniature - get/set miniature (for the installation and the shortcut) + Sets the shortcut category @@ -256410,8 +563671,6 @@
Parameters:

- - @@ -256424,33 +563683,23 @@
Parameters:
- + - - - + @@ -256491,7 +563740,7 @@
Parameters:
Source:
@@ -256516,6 +563765,28 @@
Parameters:
+
Returns:
+ + +
+ The WineShortcut object +
+ + + +
+
+ Type +
+
+ +WineShortcut + + +
+
+ + @@ -256527,7 +563798,7 @@
Parameters:
-

name(name) → {Resource}

+

checksum(checksum) → {Resource}

@@ -256535,7 +563806,7 @@

name - Sets the resource name + Sets the checksum which shall be used to verify the resource @@ -256571,7 +563842,7 @@
Parameters:

- + + @@ -256628,7 +563899,7 @@
Parameters:
Source:
@@ -256686,7 +563957,7 @@
Returns:
-

name(name) → {WineShortcut}

+

checksum(checksum) → {Downloader}

@@ -256694,7 +563965,7 @@

name - Sets the shortcut name + Sets the checksum @@ -256730,7 +564001,7 @@
Parameters:

- + + @@ -256787,7 +564058,7 @@
Parameters:
Source:
@@ -256816,7 +564087,7 @@
Returns:
- The WineShortcut object + The Downloader object
@@ -256827,7 +564098,7 @@
Returns:
-WineShortcut +Downloader
@@ -256845,7 +564116,7 @@
Returns:
-

of(shortcut) → {void}

+

create() → {void}

@@ -256853,7 +564124,7 @@

of - Sets shortcut + Creates a new shortcut @@ -256864,55 +564135,6 @@

of -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture -SetupWizard +string + + <optional>
+ + + + +
The setupWizard to use + + current architecture + +
TypeAttributesDefaultDescription
messagedistribution name @@ -256114,10 +563320,26 @@
Parameters:
+ + <optional>
+ + + + + +
+ + current distribution + + The download message
TypeAttributes
miniaturesubCategory -Array.<string> -| +string -URI + + + + + <optional>
+ + + + + +
Wine sub-category
version + + +string + + <optional>
+ + + + + +
An array which specifies the application of which the miniature shall be used or URI of the miniatureWine version
TypeAttributes
miniaturecategory -URI +string - - <optional>
- - - - - -
path to the miniature fileThe shortcut category
namechecksum @@ -256587,7 +563858,7 @@
Parameters:
-
The name of the resourceThe checksum
namechecksum @@ -256746,7 +564017,7 @@
Parameters:
-
The shortcut nameThe checksum which shall be used to verify the download
NameTypeDescription
shortcut - - -string - - - - shortcut
- - @@ -256946,7 +564168,7 @@
Parameters:
Source:
@@ -257000,7 +564222,7 @@
Returns:
-

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

+

create() → {Wine}

@@ -257008,7 +564230,7 @@

- Specifies if the download shall be executed only if a newer version is available + runs "wineboot"
@@ -257019,55 +564241,6 @@

-

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - @@ -257101,7 +564274,7 @@
Parameters:
Source:
@@ -257130,7 +564303,7 @@
Returns:
- The Downloader object + The Wine object
@@ -257141,7 +564314,7 @@
Returns:
-Downloader +Wine
@@ -257159,7 +564332,7 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

description(description) → {WineShortcut}

@@ -257167,7 +564340,7 @@

prefix - Sets the shortcut prefix + Sets the shortcut description @@ -257203,7 +564376,7 @@
Parameters:
- prefix + description @@ -257219,7 +564392,7 @@
Parameters:
- The shortcut prefix + The shortcut description @@ -257260,7 +564433,7 @@
Parameters:
Source:
@@ -257318,13 +564491,17 @@
Returns:
-

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

+

directory(directory) → {Resource}

+
+ Sets the directory inside the resources directory where the Resource is stored +
+ @@ -257346,8 +564523,6 @@
Parameters:
Type - Attributes - @@ -257360,106 +564535,7 @@
Parameters:
- prefix - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - distribution - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - architecture - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - version + directory @@ -257472,20 +564548,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The directory path @@ -257526,7 +564592,7 @@
Parameters:
Source:
@@ -257554,6 +564620,10 @@
Parameters:
Returns:
+
+ The Resource object +
+
@@ -257562,10 +564632,7 @@
Returns:
-string -| - -Wine +Resource
@@ -257583,7 +564650,7 @@
Returns:
-

prefixDirectory() → {string}

+

dosConfigFile() → {string}

@@ -257591,7 +564658,7 @@

prefix
- returns prefix directory + Fetch the prefix dosbox configuration file
@@ -257635,7 +564702,7 @@

prefix
Source:
@@ -257663,6 +564730,10 @@

prefix

Returns:
+
+ The dosbox configuration file path +
+
@@ -257689,19 +564760,72 @@
Returns:
-

programFiles() → {string}

+

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
@@ -257737,7 +564861,7 @@

programFi
Source:
@@ -257766,7 +564890,7 @@

Returns:
- name of "Program Files" + The .exe file entry that can be used to continue the installation
@@ -257777,7 +564901,7 @@
Returns:
-string +String
@@ -257795,7 +564919,7 @@
Returns:
-

run(userArguments) → {void}

+

downloadFinished(wine) → {boolean}

@@ -257803,7 +564927,8 @@

run - Runs a shortcut with the given user arguments + Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first @@ -257839,13 +564964,13 @@
Parameters:
- userArguments + wine -array +Wine @@ -257855,7 +564980,7 @@
Parameters:
- The user arguments + The wine engine object @@ -257896,7 +565021,7 @@
Parameters:
Source:
@@ -257924,6 +565049,10 @@
Parameters:
Returns:
+
+ True if the download has finished, false otherwise +
+
@@ -257932,7 +565061,7 @@
Returns:
-void +boolean
@@ -257950,13 +565079,17 @@
Returns:
-

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

+

downloadStarted(wine) → {boolean}

+
+ Checks whether the software download has started +
+ @@ -257978,12 +565111,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -257994,230 +565123,182 @@
Parameters:
- executable + wine -string +Wine - - - - - - - - - - - - - + The wine engine object + + - - - args - - - - -array - - - - - - <optional>
- - +
- - - + - - - - [] - - - + - - + - - - workingDirectory - + - - - -string + + - - + - - - - <optional>
- + - + - - - + - - - - working container - - - + - - + +
Source:
+
+ - - - captureOutput - + - - - + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ True if the download has started, false otherwise +
+ + + +
+
+ Type +
+
+ boolean - - +
+
- - - - <optional>
- + - - - - - - - - false - - + + + - - + +

environment(environment) → {WineShortcut}

+ - - - wait - + - - - -boolean - - +
+ Sets the shortcut environment variables +
- - - - <optional>
- - - - - - - - - false - - - - - + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + - + - - - - - - + @@ -258258,7 +565339,7 @@
Parameters:
Source:
@@ -258287,7 +565368,7 @@
Returns:
- output + The WineShortcut object
@@ -258298,7 +565379,7 @@
Returns:
-String +WineShortcut
@@ -258316,13 +565397,17 @@
Returns:
-

runInsidePrefix(executable, argsopt, waitopt)

+

environment(environment) → {QuickScript}

+
+ set environment +
+ @@ -258344,12 +565429,8 @@
Parameters:
- - - - @@ -258360,7 +565441,7 @@
Parameters:
- + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -258507,7 +565498,7 @@
Parameters:
Source:
@@ -258532,6 +565523,28 @@
Parameters:
+
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + @@ -258543,7 +565556,7 @@
Parameters:
- +

executable(executable, args)

@@ -258551,7 +565564,7 @@ - + + + + + + + + + + + + + + + @@ -258603,7 +565629,7 @@
Parameters:
- + @@ -258644,7 +565670,91 @@
Parameters:
Source:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -258673,7 +565783,7 @@
Returns:
- The WineShortcut object + font directory
@@ -258684,7 +565794,7 @@
Returns:
-WineShortcut +string
@@ -258702,7 +565812,7 @@
Returns:
-

stop() → {void}

+

get(resourceName) → {Resource}

@@ -258710,7 +565820,7 @@

stop - Stops the running shortcut + Returns the searched resource @@ -258721,6 +565831,55 @@

stop +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
userDataenvironment -map +string - - <optional>
- - - - -
- - empty - - The environment variables
TypeAttributesDefaultDescription
executableenvironment @@ -258373,100 +565454,10 @@
Parameters:
- - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - - variables
searchexecutable - -string + executable without path (e.g. "Steam.exe")
args The executable nameuse array (e.g. ["-applaunch", 409160])
NameTypeDescription
resourceName + + +string + + + + The name of the resource
+ + @@ -258754,7 +565913,7 @@

stopSource:
@@ -258782,6 +565941,10 @@

stop + The found resource + +
@@ -258790,7 +565953,7 @@
Returns:
-void +Resource
@@ -258808,13 +565971,17 @@
Returns:
-

system32directory() → {string}

+

get() → {String}

+
+ Gets the content of the downloaded file +
+ @@ -258856,7 +566023,7 @@

syst
Source:
@@ -258885,7 +566052,7 @@

Returns:
- system32 directory + The content of downloaded file
@@ -258896,7 +566063,7 @@
Returns:
-string +String
@@ -258914,13 +566081,17 @@
Returns:
-

system64directory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -258962,7 +566133,7 @@

syst
Source:
@@ -258991,7 +566162,7 @@

Returns:
- system64 directory + The path leading to the downloaded resource
@@ -259020,7 +566191,7 @@
Returns:
-

to(localDestination) → {Downloader}

+

getContainer() → {string}

@@ -259028,7 +566199,7 @@

to - Sets the download destination + Returns the name of the container belonging to a shortcut @@ -259039,53 +566210,114 @@

to + - - - - - - + - + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + + + + + + + + + + + + + + + + + +
Returns:
+
+ The container name +
+ + +
+
+ Type +
+
+string -
- - - + + + - - - - - + - + - - + +

getSettings() → {object}

+ - -
NameTypeDescription
localDestination - - -string - - The destination of the download. If it is a directory, the file will be placed inside
+ + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + @@ -259121,7 +566353,7 @@
Parameters:
Source:
@@ -259150,7 +566382,7 @@
Returns:
- The Downloader object + All the settings
@@ -259161,7 +566393,7 @@
Returns:
-Downloader +object
@@ -259179,7 +566411,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -259187,7 +566419,7 @@

trustLevel<
- Sets the trust level + Sets one setup file name so that the script can fetch it from gog.com
@@ -259223,7 +566455,7 @@

Parameters:
- trustLevel + setupFileName @@ -259239,7 +566471,7 @@
Parameters:
- The trust level + The setup file name @@ -259280,7 +566512,7 @@
Parameters:
Source:
@@ -259309,7 +566541,7 @@
Returns:
- The WineShortcut object + This
@@ -259320,7 +566552,7 @@
Returns:
-WineShortcut +GogScript
@@ -259338,7 +566570,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -259346,7 +566578,7 @@

trustLevel<
- set trust level + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -259382,13 +566614,13 @@

Parameters:
- trustlevel + setupFileNames -string +Array.<string> @@ -259398,7 +566630,7 @@
Parameters:
- + The setup file name(s) @@ -259439,7 +566671,7 @@
Parameters:
Source:
@@ -259468,7 +566700,7 @@
Returns:
- QuickScript object + This
@@ -259479,7 +566711,7 @@
Returns:
-QuickScript +GogScript
@@ -259497,7 +566729,7 @@
Returns:
-

type(type) → {WineShortcut}

+

headers(headers) → {Downloader}

@@ -259505,7 +566737,7 @@

type - Sets the shortcut type + Sets the http headers @@ -259541,13 +566773,13 @@
Parameters:
- type + headers -string +Object @@ -259557,7 +566789,7 @@
Parameters:
- The shortcut type + The http headers @@ -259598,7 +566830,117 @@
Parameters:
Source:
+ + + + + + + +

+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The Downloader object +
+ + + +
+
+ Type +
+
+ +Downloader + + +
+
+ + + + + + + + + + + + + +

isHdpi() → {boolean}

+ + + + + + +
+ Fetches whether hdpi is enabled or not +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -259627,7 +566969,7 @@
Returns:
- The WineShortcut object + True if hdpi is enabled, false otherwise
@@ -259638,7 +566980,7 @@
Returns:
-WineShortcut +boolean
@@ -259656,7 +566998,7 @@
Returns:
-

uninstall(name) → {bool}

+

json() → {any}

@@ -259664,7 +567006,7 @@

uninstall - uninstall application + Gets the content of the downloaded file and returns it as a JSON value @@ -259675,55 +567017,6 @@

uninstallParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - @@ -259757,7 +567050,7 @@
Parameters:
Source:
@@ -259786,7 +567079,7 @@
Returns:
- true if an application has been uninstalled, false otherwise + The json value
@@ -259797,7 +567090,7 @@
Returns:
-bool +any
@@ -259815,7 +567108,7 @@
Returns:
-

uninstall() → {void}

+

kill() → {Wine}

@@ -259823,7 +567116,7 @@

uninstall - Uninstalls the shortcut + kill wine server @@ -259867,7 +567160,7 @@

uninstallSource:
@@ -259903,7 +567196,7 @@
Returns:
-void +Wine
@@ -259921,7 +567214,7 @@
Returns:
-

url(url) → {Downloader}

+

loginToGog(setupWizard) → {GogScript}

@@ -259929,7 +567222,8 @@

url - Sets the URL which shall be used for the download + 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 @@ -259965,13 +567259,13 @@
Parameters:
- url + setupWizard -string +SetupWizard @@ -259981,7 +567275,7 @@
Parameters:
- The URL + The setupWizard to use @@ -260022,7 +567316,7 @@
Parameters:
Source:
@@ -260051,7 +567345,7 @@
Returns:
- The Downloader object + This
@@ -260062,7 +567356,7 @@
Returns:
-Downloader +GogScript
@@ -260080,7 +567374,7 @@
Returns:
-

url(url) → {Resource}

+

message(message) → {Downloader}

@@ -260088,7 +567382,7 @@

url - Sets the resource URL + Sets the download message text @@ -260124,7 +567418,7 @@
Parameters:
- url + message @@ -260140,7 +567434,7 @@
Parameters:
- The URL + The download message @@ -260181,7 +567475,7 @@
Parameters:
Source:
@@ -260210,7 +567504,7 @@
Returns:
- The Resource object + The Downloader object
@@ -260221,7 +567515,7 @@
Returns:
-Resource +Downloader
@@ -260239,7 +567533,7 @@
Returns:
-

wait() → {Wine}

+

miniature(miniatureopt)

@@ -260247,7 +567541,7 @@

wait - wait until wineserver finishes + get/set miniature (for the installation and the shortcut) @@ -260258,6 +567552,67 @@

wait + + + + Name + + + Type + + + Attributes + + + + + Description + + + + + + + + + miniature + + + + + +URI + + + + + + + + + <optional>
+ + + + + + + + + + + path to the miniature file + + + + + + + @@ -260291,7 +567646,7 @@

waitSource:
@@ -260316,24 +567671,6 @@

waitWine - - - -

- - @@ -260345,13 +567682,17 @@
Returns:
-

winepath(pathopt) → {String}

+

miniature(miniature) → {WineShortcut}

+
+ Sets the miniature for the shortcut +
+ @@ -260373,8 +567714,6 @@
Parameters:
Type - Attributes - @@ -260387,33 +567726,26 @@
Parameters:
- path + miniature -String +Array.<string> +| + +URI - - - <optional>
- - - - - - - - + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -260454,7 +567786,7 @@
Parameters:
Source:
@@ -260482,6 +567814,10 @@
Parameters:
Returns:
+
+ The WineShortcut object +
+
@@ -260490,7 +567826,7 @@
Returns:
-String +WineShortcut
@@ -260508,7 +567844,7 @@
Returns:
-

wineServer(wineserver)

+

name(name) → {Resource}

@@ -260516,7 +567852,7 @@

wineServer<
- executes wineserver in current prefix + Sets the resource name
@@ -260552,7 +567888,7 @@

Parameters:
- wineserver + name @@ -260568,7 +567904,7 @@
Parameters:
- parameter + The name of the resource @@ -260609,7 +567945,7 @@
Parameters:
Source:
@@ -260634,6 +567970,28 @@
Parameters:
+
Returns:
+ + +
+ The Resource object +
+ + + +
+
+ Type +
+
+ +Resource + + +
+
+ + @@ -260645,7 +568003,7 @@
Parameters:
-

withScript(command) → {PlainInstaller}

+

name(name) → {WineShortcut}

@@ -260653,7 +568011,7 @@

withScript<
- Sets the installation script consisting of a lambda function + Sets the shortcut name
@@ -260689,13 +568047,13 @@

Parameters:
- command + name -function +string @@ -260705,7 +568063,7 @@
Parameters:
- The installation command + The shortcut name @@ -260746,7 +568104,7 @@
Parameters:
Source:
@@ -260775,7 +568133,7 @@
Returns:
- The PlainInstaller object + The WineShortcut object
@@ -260786,7 +568144,7 @@
Returns:
-PlainInstaller +WineShortcut
@@ -260804,7 +568162,7 @@
Returns:
-

wizard(wizard) → {Resource}

+

of(shortcut) → {void}

@@ -260812,7 +568170,7 @@

wizard - Sets the setup wizard + Sets shortcut @@ -260848,13 +568206,13 @@
Parameters:
- wizard + shortcut -SetupWizard +string @@ -260864,7 +568222,7 @@
Parameters:
- The setup wizard + shortcut @@ -260905,7 +568263,7 @@
Parameters:
Source:
@@ -260933,10 +568291,6 @@
Parameters:
Returns:
-
- The Resource object -
-
@@ -260945,7 +568299,7 @@
Returns:
-Resource +void
@@ -260963,7 +568317,7 @@
Returns:
-

wizard(wizard) → {Downloader}

+

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

@@ -260971,7 +568325,7 @@

wizard - Sets the setup wizard + Specifies if the download shall be executed only if a newer version is available @@ -261007,13 +568361,13 @@
Parameters:
- wizard + onlyIfUpdateAvailable -SetupWizard +boolean @@ -261023,7 +568377,7 @@
Parameters:
- The setup wizard + true the download shall be executed only if a newer version is available @@ -261064,7 +568418,7 @@
Parameters:
Source:
@@ -261122,7 +568476,7 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

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

@@ -261164,13 +568518,112 @@
Parameters:
- wizard + prefix -SetupWizard +string + + + + + + + + + <optional>
+ + + + + + + + + + + + + + + + + + distribution + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + + + + + + + + architecture + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + + + + + + + + version + + + + + +string @@ -261231,7 +568684,7 @@
Parameters:
Source:
@@ -261267,10 +568720,10 @@
Returns:
-SetupWizard +string | -Wine +Wine
@@ -261283,55 +568736,77 @@
Returns:
+ + +

prefix(prefix) → {WineShortcut}

+ -

- +
+ Sets the shortcut prefix +
-
-
+ + + +
Parameters:
-

default()

+ + + + -
Tool to kill running Wine processes
+ - - -
-
- +
+ - -

Constructor

- + - -

new default()

- + + + + + + + + + + + + + - + + +
NameTypeDescription
prefix + + +string + + The shortcut prefix
@@ -261367,7 +568842,7 @@

new defaultSource:
@@ -261392,30 +568867,32 @@

new defaultReturns:

+ +
+ The WineShortcut object +
+
+
+ Type +
+
+ +WineShortcut - - - - - - - +
+
- - - - -

Methods

@@ -261423,7 +568900,7 @@

Methods

-

_createShortcut(prefixopt)

+

prefixDirectory() → {string}

@@ -261431,7 +568908,7 @@

_creat
- creates shortcut + returns prefix directory
@@ -261442,67 +568919,6 @@

_creat -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - @@ -261536,7 +568952,7 @@
Parameters:
Source:
@@ -261561,83 +568977,48 @@
Parameters:
+
Returns:
+ - - +
+
+ Type +
+
- +string - - -

_fetchFileNameFromUrl(url) → {string}

- +
+
-
- Fetches the file name from an URL -
- - - - - - - -
Parameters:
- - - - - - - - - - - + - + - - - + +

programFiles() → {string}

+ - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - The URL
+ @@ -261673,7 +569054,7 @@
Parameters:
Source:
@@ -261702,7 +569083,7 @@
Returns:
- The file name + name of "Program Files"
@@ -261731,17 +569112,13 @@
Returns:
-

algorithm(algorithm) → {Resource}

+

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

-
- Sets the checksum algorithm -
- @@ -261763,8 +569140,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -261775,7 +569156,7 @@
Parameters:
- algorithm + executable @@ -261788,10 +569169,217 @@
Parameters:
+ + + + + + + + + + + + - The algorithm to verify the checksum (e.g. "SHA") + + + + + + + + args + + + + + +array + + + + + + + + + <optional>
+ + + + + + + + + + + + [] + + + + + + + + + + + + workingDirectory + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + + working container + + + + + + + + + + + + captureOutput + + + + + +boolean + + + + + + + + + <optional>
+ + + + + + + + + + + + false + + + + + + + + + + + + wait + + + + + +boolean + + + + + + + + + <optional>
+ + + + + + + + + + + + false + + + + + + + + + + + + userData + + + + + +map + + + + + + + + + <optional>
+ + + + + + + + + + + + empty + + + + + @@ -261832,7 +569420,7 @@
Parameters:
Source:
@@ -261861,7 +569449,7 @@
Returns:
- The Resource object + output
@@ -261872,7 +569460,7 @@
Returns:
-Resource +String
@@ -261890,7 +569478,7 @@
Returns:
-

algorithm(algorithm) → {Downloader}

+

run(userArguments) → {void}

@@ -261898,7 +569486,7 @@

algorithm - Sets the algorithm which shall be used to verify the checksum + Runs a shortcut with the given user arguments @@ -261934,13 +569522,13 @@
Parameters:
- algorithm + userArguments -string +array @@ -261950,7 +569538,7 @@
Parameters:
- The checksum algorithm (e.g. "SHA") + The user arguments @@ -261991,7 +569579,7 @@
Parameters:
Source:
@@ -262019,10 +569607,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -262031,7 +569615,7 @@
Returns:
-Downloader +void
@@ -262049,17 +569633,13 @@
Returns:
-

application(application) → {AppResource}

+

runInsidePrefix(executable, argsopt, waitopt)

-
- Sets the application containing the resources -
- @@ -262081,8 +569661,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -262093,7 +569677,7 @@
Parameters:
- application + executable @@ -262106,121 +569690,105 @@
Parameters:
+ + - - - The application with the resource - - - - - - - - - - - -
- - - - + - + + + - + + + + + - + + - + + + args + - + + + +array - - + + - + + + + <optional>
+ - + - -
Source:
-
- + + + - + + + + [] + + + - + + -
- - - - - - - - - - - - - + + + wait + -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - + + + +boolean + + + + + + <optional>
+ + - + + - + + + + false + + + - -

architecture() → {string}

- + + - - - - - - - - - + + @@ -262256,7 +569824,7 @@

architect
Source:
@@ -262281,28 +569849,6 @@

architect -

Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - @@ -262314,7 +569860,7 @@
Returns:
-

arguments(args) → {WineShortcut}

+ @@ -262322,7 +569868,7 @@

arguments - Sets the shortcut arguments + Sets the executable which shall be used @@ -262358,13 +569904,13 @@
Parameters:
- args + search -array +string @@ -262374,7 +569920,7 @@
Parameters:
- The shortcut arguments + The executable name @@ -262415,7 +569961,7 @@
Parameters:
Source:
@@ -262473,88 +570019,23 @@
Returns:
-

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

- - +

stop() → {void}

- - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - +
+ Stops the running shortcut +
- - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - <optional>
- - - - -
- - current architecture - -
@@ -262590,7 +570071,7 @@
Parameters:
Source:
@@ -262626,7 +570107,7 @@
Returns:
-Array.<string> +void
@@ -262644,7 +570125,7 @@
Returns:
-

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

+

system32directory() → {string}

@@ -262659,73 +570140,110 @@

avai -

Parameters:
+ + + + +
+ - - - - - - + - + - - - + - - - + - - - + - - - - - + - + + - - - - - + + + - - + - -
NameTypeAttributesDefaultDescription
distribution name - - + + + + + + + + + +
Source:
+
+ + + + + + + + + + + + + + + + + + + + + + + +
Returns:
+ + +
+ system32 directory +
+ + + +
+
+ Type +
+
+ string - -
- - <optional>
- + - - -
- - current distribution - -
+

system64directory() → {string}

+ + + + + + + + + + + + @@ -262761,7 +570279,7 @@
Parameters:
Source:
@@ -262789,6 +570307,10 @@
Parameters:
Returns:
+
+ system64 directory +
+
@@ -262797,7 +570319,7 @@
Returns:
-Array.<string> +string
@@ -262815,7 +570337,7 @@
Returns:
-

binPath(subCategoryopt, versionopt) → {string}

+

to(localDestination) → {Downloader}

@@ -262823,8 +570345,7 @@

binPath - returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used + Sets the download destination @@ -262848,8 +570369,6 @@
Parameters:
Type - Attributes - @@ -262862,40 +570381,7 @@
Parameters:
- subCategory - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - Wine sub-category - - - - - - - version + localDestination @@ -262908,20 +570394,10 @@
Parameters:
- - - <optional>
- - - - - - - - Wine version + The destination of the download. If it is a directory, the file will be placed inside @@ -262962,7 +570438,7 @@
Parameters:
Source:
@@ -262991,7 +570467,7 @@
Returns:
- path to "wine" binary + The Downloader object
@@ -263002,7 +570478,7 @@
Returns:
-string +Downloader
@@ -263020,7 +570496,7 @@
Returns:
-

category(category) → {WineShortcut}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -263028,7 +570504,7 @@

category - Sets the shortcut category + Sets the trust level @@ -263064,7 +570540,7 @@
Parameters:
- category + trustLevel @@ -263080,7 +570556,7 @@
Parameters:
- The shortcut category + The trust level @@ -263121,7 +570597,7 @@
Parameters:
Source:
@@ -263179,7 +570655,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

trustLevel(trustlevel) → {QuickScript}

@@ -263187,7 +570663,7 @@

checksum - Sets the checksum + set trust level @@ -263223,7 +570699,7 @@
Parameters:
- checksum + trustlevel @@ -263239,7 +570715,7 @@
Parameters:
- The checksum which shall be used to verify the download + @@ -263280,7 +570756,7 @@
Parameters:
Source:
@@ -263309,7 +570785,7 @@
Returns:
- The Downloader object + QuickScript object
@@ -263320,7 +570796,7 @@
Returns:
-Downloader +QuickScript
@@ -263338,7 +570814,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

type(type) → {WineShortcut}

@@ -263346,7 +570822,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the shortcut type @@ -263382,7 +570858,7 @@
Parameters:
- checksum + type @@ -263398,7 +570874,7 @@
Parameters:
- The checksum + The shortcut type @@ -263439,7 +570915,7 @@
Parameters:
Source:
@@ -263468,7 +570944,7 @@
Returns:
- The Resource object + The WineShortcut object
@@ -263479,7 +570955,7 @@
Returns:
-Resource +WineShortcut
@@ -263497,7 +570973,7 @@
Returns:
-

create() → {Wine}

+

uninstall(name) → {bool}

@@ -263505,7 +570981,7 @@

create - runs "wineboot" + uninstall application @@ -263516,6 +570992,55 @@

createParameters:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
name + + +string + + + + of the application which shall be uninstalled
+ + @@ -263549,7 +571074,7 @@

createSource:
@@ -263578,7 +571103,7 @@
Returns:
- The Wine object + true if an application has been uninstalled, false otherwise
@@ -263589,7 +571114,7 @@
Returns:
-Wine +bool
@@ -263607,7 +571132,7 @@
Returns:
-

create() → {void}

+

uninstall() → {void}

@@ -263615,7 +571140,7 @@

create - Creates a new shortcut + Uninstalls the shortcut @@ -263659,7 +571184,7 @@

createSource:
@@ -263713,7 +571238,7 @@
Returns:
-

description(description) → {WineShortcut}

+

url(url) → {Downloader}

@@ -263721,7 +571246,7 @@

descriptio
- Sets the shortcut description + Sets the URL which shall be used for the download
@@ -263757,7 +571282,7 @@

Parameters:
- description + url @@ -263773,7 +571298,7 @@
Parameters:
- The shortcut description + The URL @@ -263814,7 +571339,7 @@
Parameters:
Source:
@@ -263843,7 +571368,7 @@
Returns:
- The WineShortcut object + The Downloader object
@@ -263854,7 +571379,7 @@
Returns:
-WineShortcut +Downloader
@@ -263872,7 +571397,7 @@
Returns:
-

directory(directory) → {Resource}

+

url(url) → {Resource}

@@ -263880,7 +571405,7 @@

directory - Sets the directory inside the resources directory where the Resource is stored + Sets the resource URL @@ -263916,7 +571441,7 @@
Parameters:
- directory + url @@ -263932,7 +571457,7 @@
Parameters:
- The directory path + The URL @@ -263973,7 +571498,7 @@
Parameters:
Source:
@@ -264031,7 +571556,7 @@
Returns:
-

download(setupWizard) → {String}

+

wait() → {Wine}

@@ -264039,7 +571564,7 @@

download - Download the setup resources in the same directory, and returns the path of the .exe + wait until wineserver finishes @@ -264050,55 +571575,6 @@

downloadParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - @@ -264132,7 +571608,7 @@
Parameters:
Source:
@@ -264160,10 +571636,6 @@
Parameters:
Returns:
-
- The .exe file entry that can be used to continue the installation -
-
@@ -264172,7 +571644,7 @@
Returns:
-String +Wine
@@ -264190,17 +571662,13 @@
Returns:
-

environment(environment) → {WineShortcut}

+

winepath(pathopt) → {String}

-
- Sets the shortcut environment variables -
- @@ -264222,6 +571690,8 @@
Parameters:
Type + Attributes + @@ -264234,23 +571704,33 @@
Parameters:
- environment + path -string +String + + + <optional>
+ + + + + + + - The environment variables + @@ -264291,7 +571771,7 @@
Parameters:
Source:
@@ -264319,10 +571799,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -264331,7 +571807,7 @@
Returns:
-WineShortcut +String
@@ -264349,7 +571825,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

wineServer(wineserver)

@@ -264357,7 +571833,7 @@

environmen
- set environment + executes wineserver in current prefix
@@ -264393,7 +571869,7 @@

Parameters:
- environment + wineserver @@ -264409,7 +571885,7 @@
Parameters:
- variables + parameter @@ -264450,7 +571926,7 @@
Parameters:
Source:
@@ -264475,28 +571951,6 @@
Parameters:
-
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - @@ -264508,7 +571962,7 @@
Returns:
-

executable(executable, args)

+

withApplicationWindowsVersion(application, os) → {WindowsVersion}

@@ -264516,7 +571970,7 @@

executable<
- set executable + Specifies the windows version for a given application
@@ -264552,36 +572006,46 @@

Parameters:
- executable + application + +string + + + - executable without path (e.g. "Steam.exe") + The application executable - args + os + +string + + + - use array (e.g. ["-applaunch", 409160]) + The windows version @@ -264622,7 +572086,7 @@
Parameters:
Source:
@@ -264647,19 +572111,26 @@
Parameters:
+
Returns:
+ +
+ This +
- +
+
+ Type +
+
- +WindowsVersion - - -

fontDirectory() → {string}

- +
+
@@ -264667,120 +572138,79 @@

fontDire - - - - - - - - - - -
+ + - +

withCpuCycles(cpuCycles) → {Dosbox}

- - - +
+ Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D +
- - - - - - -
Source:
-
- - - +
Parameters:
-
- - - - - - - - - - - - - - - -

Returns:
+ + + + + -
- font directory -
- + -
-
- Type -
-
-string + -
-
+ + + + + + + + + - - + - -

get() → {string}

- + + - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - + +
NameTypeDescription
cpuCycles + + +int + + (example: max 95% limit 33000)
@@ -264816,7 +572246,7 @@

getSource:
@@ -264845,7 +572275,7 @@
Returns:
- The path leading to the downloaded resource + This
@@ -264856,7 +572286,7 @@
Returns:
-string +Dosbox
@@ -264874,7 +572304,7 @@
Returns:
-

get() → {String}

+

withDimensions(width, height) → {VirtualDesktop}

@@ -264882,7 +572312,7 @@

get - Gets the content of the downloaded file + Specifies the dimensions of the virtual desktop @@ -264893,6 +572323,78 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + width + + + + + +number + + + + + + + + + + width of virtual desktop (in px) + + + + + + + height + + + + + +number + + + + + + + + + + height of virtual desktop (in px) + + + + + + + @@ -264926,7 +572428,7 @@

getSource:
@@ -264955,7 +572457,7 @@
Returns:
- The content of downloaded file + This
@@ -264966,7 +572468,7 @@
Returns:
-String +VirtualDesktop
@@ -264984,7 +572486,7 @@
Returns:
-

get(resourceName) → {Resource}

+

withDriver(driver) → {SoundDriver}

@@ -264992,7 +572494,7 @@

get - Returns the searched resource + Specifies the used sound driver @@ -265028,7 +572530,7 @@
Parameters:
- resourceName + driver @@ -265044,7 +572546,7 @@
Parameters:
- The name of the resource + alsa or pulse @@ -265085,7 +572587,7 @@
Parameters:
Source:
@@ -265114,7 +572616,7 @@
Returns:
- The found resource + This
@@ -265125,7 +572627,7 @@
Returns:
-Resource +SoundDriver
@@ -265143,7 +572645,7 @@
Returns:
-

getContainer() → {string}

+

withExtension(extension) → {NativeApplication}

@@ -265151,7 +572653,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Specifies the file extension
@@ -265162,6 +572664,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
extension + + +string + + + + The file extension (pdf, txt, rtf)
+ + @@ -265195,7 +572746,7 @@

getContai
Source:
@@ -265224,7 +572775,7 @@

Returns:
- The container name + This
@@ -265235,7 +572786,7 @@
Returns:
-string +NativeApplication
@@ -265253,7 +572804,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

withHdpi(hdpi) → {HDPI}

@@ -265261,7 +572812,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Specifies whether hdpi should be enabled or not
@@ -265297,13 +572848,13 @@

Parameters:
- setupFileName + hdpi -string +boolean @@ -265313,7 +572864,7 @@
Parameters:
- The setup file name + true if hdpi shall be enabled @@ -265354,7 +572905,7 @@
Parameters:
Source:
@@ -265394,7 +572945,7 @@
Returns:
-GogScript +HDPI
@@ -265412,7 +572963,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

withManaged(managed) → {Managed}

@@ -265420,7 +572971,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Specifies the global managed state
@@ -265456,13 +573007,13 @@

Parameters:
- setupFileNames + managed -Array.<string> +boolean @@ -265472,7 +573023,7 @@
Parameters:
- The setup file name(s) + True if it shall be managed @@ -265513,7 +573064,7 @@
Parameters:
Source:
@@ -265553,7 +573104,7 @@
Returns:
-GogScript +Managed
@@ -265571,7 +573122,7 @@
Returns:
-

headers(headers) → {Downloader}

+

withManagedApplication(application, managed) → {Managed}

@@ -265579,7 +573130,7 @@

headers - Sets the http headers + Specifies the managed state for a given application @@ -265615,13 +573166,13 @@
Parameters:
- headers + application -Object +string @@ -265631,122 +573182,35 @@
Parameters:
- The http headers + The application - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - + + + managed + + + + +boolean + + - - + - -

json() → {any}

- + True if the application shall be managed + - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - + + @@ -265782,7 +573246,7 @@

jsonSource:
@@ -265811,124 +573275,18 @@
Returns:
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server + This
- - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - -
Type
-Wine +Managed
@@ -265946,7 +573304,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

withMemSize(memSize) → {Dosbox}

@@ -265954,8 +573312,8 @@

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 dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D
@@ -265991,13 +573349,13 @@

Parameters:
- setupWizard + memSize -SetupWizard +int @@ -266007,7 +573365,7 @@
Parameters:
- The setupWizard to use + The memory size @@ -266048,7 +573406,7 @@
Parameters:
Source:
@@ -266088,7 +573446,7 @@
Returns:
-GogScript +Dosbox
@@ -266106,7 +573464,7 @@
Returns:
-

message(message) → {Downloader}

+

withMode(mode) → {FontSmoothing}

@@ -266114,7 +573472,7 @@

message - Sets the download message text + Specifies the used font smoothing mode @@ -266150,7 +573508,7 @@
Parameters:
- message + mode @@ -266166,7 +573524,7 @@
Parameters:
- The download message + "RGB", "BGR" or "Gray Scale" @@ -266207,7 +573565,7 @@
Parameters:
Source:
@@ -266236,7 +573594,7 @@
Returns:
- The Downloader object + This
@@ -266247,7 +573605,7 @@
Returns:
-Downloader +FontSmoothing
@@ -266265,7 +573623,7 @@
Returns:
-

miniature(miniature) → {WineShortcut}

+

withMode(mode) → {GLSL}

@@ -266273,7 +573631,7 @@

miniature - Sets the miniature for the shortcut + Specifies the mode @@ -266309,16 +573667,13 @@
Parameters:
- miniature + mode -Array.<string> -| - -URI +string @@ -266328,7 +573683,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + enabled or disabled @@ -266369,7 +573724,7 @@
Parameters:
Source:
@@ -266398,7 +573753,7 @@
Returns:
- The WineShortcut object + This
@@ -266409,7 +573764,7 @@
Returns:
-WineShortcut +GLSL
@@ -266427,7 +573782,7 @@
Returns:
-

miniature(miniatureopt)

+

withMode(mode) → {TakeFocus}

@@ -266435,7 +573790,7 @@

miniature - get/set miniature (for the installation and the shortcut) + Specifies the mode @@ -266459,8 +573814,6 @@
Parameters:
Type - Attributes - @@ -266473,33 +573826,182 @@
Parameters:
- miniature + mode -URI +string - - - <optional>
- - + + + "Y" or "N" + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +TakeFocus + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {DirectDrawRenderer}

+ + + + + + +
+ Selects the used direct draw mode (either gdi or opengl) +
+ + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +string + + + + + - + @@ -266540,7 +574042,7 @@
Parameters:
Source:
@@ -266565,6 +574067,28 @@
Parameters:
+
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +DirectDrawRenderer + + +
+
+ + @@ -266576,7 +574100,7 @@
Parameters:
-

name(name) → {Resource}

+

withRenderAspect(renderAspect) → {Dosbox}

@@ -266584,7 +574108,8 @@

name - Sets the resource name + Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D @@ -266620,13 +574145,13 @@
Parameters:

- + + @@ -266677,7 +574202,7 @@
Parameters:
Source:
@@ -266706,7 +574231,7 @@
Returns:
- The Resource object + This
@@ -266717,7 +574242,7 @@
Returns:
-Resource +Dosbox
@@ -266735,7 +574260,7 @@
Returns:
-

name(name) → {WineShortcut}

+

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

@@ -266743,7 +574268,8 @@

name - Sets the shortcut name + Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D @@ -266779,13 +574305,13 @@
Parameters:

- + + @@ -266836,7 +574362,7 @@
Parameters:
Source:
@@ -266865,7 +574391,7 @@
Returns:
- The WineShortcut object + This
@@ -266876,7 +574402,7 @@
Returns:
-WineShortcut +Dosbox
@@ -266894,7 +574420,7 @@
Returns:
-

of(shortcut) → {void}

+

withScript(command) → {PlainInstaller}

@@ -266902,7 +574428,7 @@

of - Sets shortcut + Sets the installation script consisting of a lambda function @@ -266938,13 +574464,13 @@
Parameters:

- + + @@ -266995,7 +574521,7 @@
Parameters:
Source:
@@ -267023,6 +574549,10 @@
Parameters:
Returns:
+
+ The PlainInstaller object +
+
@@ -267031,7 +574561,7 @@
Returns:
-void +PlainInstaller
@@ -267049,7 +574579,7 @@
Returns:
-

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

+

withSetting(key, value) → {Dosbox}

@@ -267057,7 +574587,7 @@

- Specifies if the download shall be executed only if a newer version is available + Sets a dosbox setting
@@ -267093,13 +574623,13 @@

Parameters:
- + + + + + + + + + + + + + + + + + + @@ -267150,7 +574703,7 @@
Parameters:
Source:
@@ -267179,7 +574732,7 @@
Returns:
- The Downloader object + This
@@ -267190,7 +574743,7 @@
Returns:
-Downloader +Dosbox
@@ -267208,7 +574761,7 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

withVersion(major, minor) → {OpenGL}

@@ -267216,7 +574769,7 @@

prefix - Sets the shortcut prefix + Specifies the major and minor versions @@ -267252,13 +574805,13 @@
Parameters:

- + + + + + + + + + + + + + + + + + + @@ -267309,7 +574885,7 @@
Parameters:
Source:
@@ -267338,7 +574914,7 @@
Returns:
- The WineShortcut object + This
@@ -267349,7 +574925,7 @@
Returns:
-WineShortcut +OpenGL
@@ -267367,13 +574943,17 @@
Returns:
-

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

+

withWindowsVersion(version, servicePack) → {WindowsVersion}

+
+ Specifies the default windows version +
+ @@ -267395,8 +574975,6 @@
Parameters:
- - @@ -267409,73 +574987,7 @@
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - + - + - - - + @@ -267575,7 +575067,7 @@
Parameters:
Source:
@@ -267603,6 +575095,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -267611,10 +575107,7 @@
Returns:
-string -| - -Wine +WindowsVersion
@@ -267632,7 +575125,7 @@
Returns:
-

prefixDirectory() → {string}

+

wizard(wizard) → {Resource}

@@ -267640,7 +575133,7 @@

prefix
- returns prefix directory + Sets the setup wizard
@@ -267651,6 +575144,55 @@

prefix +

Parameters:
+ + +
NameTypeDescription
mode + - path to the miniature filegdi or opengl
namerenderAspect -string +boolean @@ -266636,7 +574161,7 @@
Parameters:
-
The name of the resourceThe render aspect
namerenderFrameSkip -string +int @@ -266795,7 +574321,7 @@
Parameters:
-
The shortcut nameThe render frameskip
shortcutcommand -string +function @@ -266954,7 +574480,7 @@
Parameters:
-
shortcutThe installation command
onlyIfUpdateAvailablekey -boolean +string @@ -267109,7 +574639,30 @@
Parameters:
-
true the download shall be executed only if a newer version is availableThe key of the setting (example dosbox_memsize)
value + + +any + + + + The value to be set
prefixmajor -string +number @@ -267268,7 +574821,30 @@
Parameters:
-
The shortcut prefixThe major version
minor + + +number + + + + The minor version
TypeAttributes
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architectureversion @@ -267488,27 +575000,17 @@
Parameters:
- - <optional>
- - - - -
win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31
versionservicePack @@ -267521,20 +575023,10 @@
Parameters:
- - <optional>
- - - - - -
e.g. sp3
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
wizard + + +SetupWizard + + + + The setup wizard
+ + @@ -267684,7 +575226,7 @@

prefix
Source:
@@ -267712,6 +575254,10 @@

prefix

Returns:
+
+ The Resource object +
+
@@ -267720,7 +575266,7 @@
Returns:
-string +Resource
@@ -267738,7 +575284,7 @@
Returns:
-

programFiles() → {string}

+

wizard(wizardopt) → {SetupWizard|Wine}

@@ -267753,6 +575299,67 @@

programFi +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
wizard + + +SetupWizard + + + + + + <optional>
+ + + + + +
+ + @@ -267786,7 +575393,7 @@

programFi
Source:
@@ -267814,10 +575421,6 @@

programFi

Returns:
-
- name of "Program Files" -
-
@@ -267826,7 +575429,10 @@
Returns:
-string +SetupWizard +| + +Wine
@@ -267844,7 +575450,7 @@
Returns:
-

run(userArguments) → {void}

+

wizard(wizard) → {Downloader}

@@ -267852,7 +575458,7 @@

run - Runs a shortcut with the given user arguments + Sets the setup wizard @@ -267888,13 +575494,13 @@
Parameters:
- userArguments + wizard -array +SetupWizard @@ -267904,7 +575510,7 @@
Parameters:
- The user arguments + The setup wizard @@ -267945,7 +575551,7 @@
Parameters:
Source:
@@ -267973,6 +575579,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -267981,7 +575591,7 @@
Returns:
-void +Downloader
@@ -267994,16 +575604,46 @@
Returns:
- + -

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

+ + +

+ + + + + + + +
+ +
+ +

default()

+ +
Tool to open the Wine registry editor
+ + +
+ +
+
+ + + + +

Constructor

+

new default()

+ + @@ -268014,233 +575654,149 @@

run - - - - Name - - Type - - Attributes - - - Default - - Description - - +
- - - - executable - + - - - -string + + - - + - - - + - + - - - + - - - - - + - - + - - - args - + + + +
Source:
+
+ + + + + + + +
+ - - - -array - - - - - - <optional>
- - - - - - - - - [] - - - - - - - - - workingDirectory - - - - -string - - - - - - <optional>
- - - - - - - - - working container - - - - - +

- - - captureOutput - + - - - -boolean + + - - + - - - - <optional>
- + - + - - - + - - - - false - - + +

Methods

+ + - - + +

_createShortcut(prefixopt)

+ - - - wait - + - - - -boolean - - +
+ creates shortcut +
- - - - <optional>
- - - - - - - - - false - - - - - + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + - + - - + @@ -268307,7 +575857,7 @@
Parameters:
Source:
@@ -268332,28 +575882,6 @@
Parameters:
-
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - @@ -268365,13 +575893,17 @@
Returns:
-

runInsidePrefix(executable, argsopt, waitopt)

+

_fetchFileNameFromUrl(url) → {string}

+
+ Fetches the file name from an URL +
+ @@ -268393,12 +575925,8 @@
Parameters:
- - - - @@ -268409,7 +575937,7 @@
Parameters:
- + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -268556,7 +575994,7 @@
Parameters:
Source:
@@ -268581,6 +576019,28 @@
Parameters:
+
Returns:
+ + +
+ The file name +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -268592,7 +576052,7 @@
Parameters:
- +

algorithm(algorithm) → {Downloader}

@@ -268600,7 +576060,7 @@ - + + @@ -268693,7 +576153,7 @@
Parameters:
Source:
@@ -268722,7 +576182,7 @@
Returns:
- The WineShortcut object + The Downloader object
@@ -268733,7 +576193,7 @@
Returns:
-WineShortcut +Downloader
@@ -268751,7 +576211,7 @@
Returns:
-

stop() → {void}

+

algorithm(algorithm) → {Resource}

@@ -268759,7 +576219,7 @@

stop - Stops the running shortcut + Sets the checksum algorithm @@ -268770,106 +576230,53 @@

stop - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
- - - - - - - - - - - - - - - - -
Returns:
+

NameTypeAttributesDescription
userDataprefix -map +string @@ -268259,14 +575815,8 @@
Parameters:
-
- - empty - - prefix name
TypeAttributesDefaultDescription
executableurl @@ -268422,100 +575950,10 @@
Parameters:
- - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - - The URL
searchalgorithm @@ -268652,7 +576112,7 @@
Parameters:
-
The executable nameThe checksum algorithm (e.g. "SHA")
+ + + + + -
-
- Type -
-
-void + -
-
+ + + + + + + + + - - + - -

system32directory() → {string}

- + + - - - - - - - - - + +
NameTypeDescription
algorithm + + +string + + The algorithm to verify the checksum (e.g. "SHA")
@@ -268905,7 +576312,7 @@

syst
Source:
@@ -268934,7 +576341,7 @@

Returns:
- system32 directory + The Resource object
@@ -268945,7 +576352,7 @@
Returns:
-string +Resource
@@ -268963,13 +576370,16 @@
Returns:
-

system64directory() → {string}

+

application(application) → {AppResource}

+
+ Sets the application containing the resources +
@@ -268979,6 +576389,56 @@

syst +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
application + + +string + + + + The application with the resource
+ + + @@ -269011,7 +576471,7 @@

syst
Source:
@@ -269040,7 +576500,7 @@

Returns:
- system64 directory + The AppResource object
@@ -269051,7 +576511,7 @@
Returns:
-string +AppResource
@@ -269069,72 +576529,19 @@
Returns:
-

to(localDestination) → {Downloader}

- - +

architecture() → {string}

- - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - The destination of the download. If it is a directory, the file will be placed inside
@@ -269170,7 +576577,7 @@
Parameters:
Source:
@@ -269199,7 +576606,7 @@
Returns:
- The Downloader object + architecture ("x86" or "amd64")
@@ -269210,7 +576617,7 @@
Returns:
-Downloader +string
@@ -269228,7 +576635,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

arguments(args) → {WineShortcut}

@@ -269236,7 +576643,7 @@

trustLevel<
- Sets the trust level + Sets the shortcut arguments
@@ -269272,13 +576679,13 @@

Parameters:
- trustLevel + args -string +array @@ -269288,7 +576695,7 @@
Parameters:
- The trust level + The shortcut arguments @@ -269329,7 +576736,7 @@
Parameters:
Source:
@@ -269387,17 +576794,13 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

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

-
- set trust level -
- @@ -269419,8 +576822,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -269431,7 +576838,7 @@
Parameters:
- trustlevel + architecture @@ -269444,7 +576851,23 @@
Parameters:
+ + + <optional>
+ + + + + + + + + + + current architecture + + @@ -269488,7 +576911,7 @@
Parameters:
Source:
@@ -269516,10 +576939,6 @@
Parameters:
Returns:
-
- QuickScript object -
-
@@ -269528,7 +576947,7 @@
Returns:
-QuickScript +Array.<string>
@@ -269546,17 +576965,13 @@
Returns:
-

type(type) → {WineShortcut}

+

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

-
- Sets the shortcut type -
- @@ -269578,8 +576993,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -269590,7 +577009,7 @@
Parameters:
- type + distribution name @@ -269603,10 +577022,26 @@
Parameters:
+ + + <optional>
+ + + + + - The shortcut type + + + + current distribution + + + + + @@ -269647,7 +577082,7 @@
Parameters:
Source:
@@ -269675,10 +577110,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -269687,7 +577118,7 @@
Returns:
-WineShortcut +Array.<string>
@@ -269705,7 +577136,7 @@
Returns:
-

uninstall(name) → {bool}

+

binPath(subCategoryopt, versionopt) → {string}

@@ -269713,7 +577144,8 @@

uninstall - uninstall application + returns the path to the engine binary directory +if no parameters are given, the Wine version of the current prefix is used @@ -269737,6 +577169,8 @@
Parameters:
Type + Attributes + @@ -269749,7 +577183,7 @@
Parameters:
- name + subCategory @@ -269762,10 +577196,53 @@
Parameters:
+ + + <optional>
+ + + + + - of the application which shall be uninstalled + + + Wine sub-category + + + + + + + version + + + + + +string + + + + + + + + + <optional>
+ + + + + + + + + + + Wine version @@ -269806,7 +577283,7 @@
Parameters:
Source:
@@ -269835,7 +577312,7 @@
Returns:
- true if an application has been uninstalled, false otherwise + path to "wine" binary
@@ -269846,7 +577323,7 @@
Returns:
-bool +string
@@ -269864,7 +577341,7 @@
Returns:
-

uninstall() → {void}

+

category(category) → {WineShortcut}

@@ -269872,7 +577349,7 @@

uninstall - Uninstalls the shortcut + Sets the shortcut category @@ -269883,6 +577360,55 @@

uninstallParameters:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
category + + +string + + + + The shortcut category
+ + @@ -269916,7 +577442,7 @@

uninstallSource:
@@ -269944,6 +577470,10 @@

uninstallReturns:

+
+ The WineShortcut object +
+
@@ -269952,7 +577482,7 @@
Returns:
-void +WineShortcut
@@ -269970,7 +577500,7 @@
Returns:
-

url(url) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -269978,7 +577508,7 @@

url - Sets the URL which shall be used for the download + Sets the checksum which shall be used to verify the resource @@ -270014,7 +577544,7 @@
Parameters:
- url + checksum @@ -270030,7 +577560,7 @@
Parameters:
- The URL + The checksum @@ -270071,7 +577601,7 @@
Parameters:
Source:
@@ -270100,7 +577630,7 @@
Returns:
- The Downloader object + The Resource object
@@ -270111,7 +577641,7 @@
Returns:
-Downloader +Resource
@@ -270129,7 +577659,7 @@
Returns:
-

url(url) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -270137,7 +577667,7 @@

url - Sets the resource URL + Sets the checksum @@ -270173,7 +577703,7 @@
Parameters:
- url + checksum @@ -270189,7 +577719,7 @@
Parameters:
- The URL + The checksum which shall be used to verify the download @@ -270230,7 +577760,7 @@
Parameters:
Source:
@@ -270259,7 +577789,7 @@
Returns:
- The Resource object + The Downloader object
@@ -270270,7 +577800,7 @@
Returns:
-Resource +Downloader
@@ -270288,7 +577818,7 @@
Returns:
-

wait() → {Wine}

+

create() → {void}

@@ -270296,7 +577826,7 @@

wait - wait until wineserver finishes + Creates a new shortcut @@ -270340,7 +577870,7 @@

waitSource:
@@ -270376,7 +577906,7 @@
Returns:
-Wine +void
@@ -270394,13 +577924,16 @@
Returns:
-

winepath(pathopt) → {String}

+

create() → {Wine}

+
+ runs "wineboot" +
@@ -270409,66 +577942,6 @@

winepathParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- @@ -270503,7 +577976,7 @@
Parameters:
Source:
@@ -270531,6 +578004,10 @@
Parameters:
Returns:
+
+ The Wine object +
+
@@ -270539,7 +578016,7 @@
Returns:
-String +Wine
@@ -270557,7 +578034,7 @@
Returns:
-

wineServer(wineserver)

+

description(description) → {WineShortcut}

@@ -270565,7 +578042,7 @@

wineServer<
- executes wineserver in current prefix + Sets the shortcut description
@@ -270601,7 +578078,7 @@

Parameters:
- wineserver + description @@ -270617,7 +578094,7 @@
Parameters:
- parameter + The shortcut description @@ -270658,7 +578135,7 @@
Parameters:
Source:
@@ -270683,6 +578160,28 @@
Parameters:
+
Returns:
+ + +
+ The WineShortcut object +
+ + + +
+
+ Type +
+
+ +WineShortcut + + +
+
+ + @@ -270694,7 +578193,7 @@
Parameters:
-

withScript(command) → {PlainInstaller}

+

directory(directory) → {Resource}

@@ -270702,7 +578201,7 @@

withScript<
- Sets the installation script consisting of a lambda function + Sets the directory inside the resources directory where the Resource is stored
@@ -270738,13 +578237,13 @@

Parameters:
- command + directory -function +string @@ -270754,7 +578253,7 @@
Parameters:
- The installation command + The directory path @@ -270795,7 +578294,7 @@
Parameters:
Source:
@@ -270824,7 +578323,7 @@
Returns:
- The PlainInstaller object + The Resource object
@@ -270835,7 +578334,7 @@
Returns:
-PlainInstaller +Resource
@@ -270853,7 +578352,7 @@
Returns:
-

wizard(wizard) → {Resource}

+

dosConfigFile() → {string}

@@ -270861,7 +578360,7 @@

wizard - Sets the setup wizard + Fetch the prefix dosbox configuration file @@ -270872,55 +578371,6 @@

wizardParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - @@ -270954,7 +578404,7 @@
Parameters:
Source:
@@ -270983,7 +578433,7 @@
Returns:
- The Resource object + The dosbox configuration file path
@@ -270994,7 +578444,7 @@
Returns:
-Resource +string
@@ -271012,7 +578462,7 @@
Returns:
-

wizard(wizard) → {Downloader}

+

download(setupWizard) → {String}

@@ -271020,7 +578470,7 @@

wizard - Sets the setup wizard + Download the setup resources in the same directory, and returns the path of the .exe @@ -271056,7 +578506,7 @@
Parameters:
- wizard + setupWizard @@ -271113,7 +578563,7 @@
Parameters:
Source:
@@ -271142,7 +578592,7 @@
Returns:
- The Downloader object + The .exe file entry that can be used to continue the installation
@@ -271153,7 +578603,7 @@
Returns:
-Downloader +String
@@ -271171,13 +578621,18 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

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 +
+ @@ -271199,8 +578654,6 @@
Parameters:
Type - Attributes - @@ -271213,33 +578666,23 @@
Parameters:
- wizard + wine -SetupWizard +Wine - - - <optional>
- - - - - - - - + The wine engine object @@ -271280,143 +578723,7 @@
Parameters:
Source:
- - - - - - - -

- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

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

default()

- -
Tool to configure Wine
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
@@ -271441,175 +578748,28 @@

new default - - - - - - - - - - - - - - - - -

Methods

+
Returns:
- - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut +
+ True if the download has finished, false otherwise
- - - - - - -
Parameters:
- - - - - - - - - - - - - - - +
+
+ Type +
+
+boolean -
- - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
- - - - - - - - - - - - - - + @@ -271621,7 +578781,7 @@
Parameters:
-

_fetchFileNameFromUrl(url) → {string}

+

downloadStarted(wine) → {boolean}

@@ -271629,7 +578789,7 @@

- Fetches the file name from an URL + Checks whether the software download has started
@@ -271665,13 +578825,13 @@

Parameters:
- url + wine -string +Wine @@ -271681,7 +578841,7 @@
Parameters:
- The URL + The wine engine object @@ -271722,7 +578882,7 @@
Parameters:
Source:
@@ -271751,7 +578911,7 @@
Returns:
- The file name + True if the download has started, false otherwise
@@ -271762,7 +578922,7 @@
Returns:
-string +boolean
@@ -271780,7 +578940,7 @@
Returns:
-

algorithm(algorithm) → {Resource}

+

environment(environment) → {WineShortcut}

@@ -271788,7 +578948,7 @@

algorithm - Sets the checksum algorithm + Sets the shortcut environment variables

@@ -271824,7 +578984,7 @@
Parameters:
- algorithm + environment @@ -271840,7 +579000,7 @@
Parameters:
- The algorithm to verify the checksum (e.g. "SHA") + The environment variables @@ -271881,7 +579041,7 @@
Parameters:
Source:
@@ -271910,7 +579070,7 @@
Returns:
- The Resource object + The WineShortcut object
@@ -271921,7 +579081,7 @@
Returns:
-Resource +WineShortcut
@@ -271939,7 +579099,7 @@
Returns:
-

algorithm(algorithm) → {Downloader}

+

environment(environment) → {QuickScript}

@@ -271947,7 +579107,7 @@

algorithm - Sets the algorithm which shall be used to verify the checksum + set environment

@@ -271983,7 +579143,7 @@
Parameters:
- algorithm + environment @@ -271999,7 +579159,7 @@
Parameters:
- The checksum algorithm (e.g. "SHA") + variables @@ -272040,7 +579200,7 @@
Parameters:
Source:
@@ -272069,7 +579229,7 @@
Returns:
- The Downloader object + QuickScript object
@@ -272080,7 +579240,7 @@
Returns:
-Downloader +QuickScript
@@ -272098,7 +579258,7 @@
Returns:
-

application(application) → {AppResource}

+

executable(executable, args)

@@ -272106,7 +579266,7 @@

applicatio
- Sets the application containing the resources + set executable
@@ -272142,15 +579302,28 @@

Parameters:
- application + executable - -string + + + + + + executable without path (e.g. "Steam.exe") + + + + + + + args + + @@ -272158,7 +579331,7 @@
Parameters:
- The application with the resource + use array (e.g. ["-applaunch", 409160]) @@ -272199,7 +579372,7 @@
Parameters:
Source:
@@ -272224,28 +579397,6 @@
Parameters:
-
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - @@ -272257,7 +579408,7 @@
Returns:
-

architecture() → {string}

+

fontDirectory() → {string}

@@ -272305,7 +579456,7 @@

architect
Source:
@@ -272334,7 +579485,7 @@

Returns:
- architecture ("x86" or "amd64") + font directory
@@ -272363,7 +579514,7 @@
Returns:
-

arguments(args) → {WineShortcut}

+

get(resourceName) → {Resource}

@@ -272371,7 +579522,7 @@

arguments - Sets the shortcut arguments + Returns the searched resource @@ -272407,13 +579558,13 @@
Parameters:
- args + resourceName -array +string @@ -272423,7 +579574,7 @@
Parameters:
- The shortcut arguments + The name of the resource @@ -272464,7 +579615,7 @@
Parameters:
Source:
@@ -272493,7 +579644,7 @@
Returns:
- The WineShortcut object + The found resource
@@ -272504,7 +579655,7 @@
Returns:
-WineShortcut +Resource
@@ -272522,88 +579673,23 @@
Returns:
-

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

- - - - - - - - - - - - - - -
Parameters:
+

get() → {String}

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string +
+ Gets the content of the downloaded file +
- -
- - <optional>
- - - -
- - current architecture - -
@@ -272639,7 +579725,7 @@
Parameters:
Source:
@@ -272667,6 +579753,10 @@
Parameters:
Returns:
+
+ The content of downloaded file +
+
@@ -272675,7 +579765,7 @@
Returns:
-Array.<string> +String
@@ -272693,88 +579783,23 @@
Returns:
-

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

- - - - - - - - - - - - - - -
Parameters:
+

get() → {string}

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string +
+ Fetches the Resource and returns the path leading to the downloaded resource +
- -
- - <optional>
- - - -
- - current distribution - -
@@ -272810,7 +579835,7 @@
Parameters:
Source:
@@ -272838,6 +579863,10 @@
Parameters:
Returns:
+
+ The path leading to the downloaded resource +
+
@@ -272846,7 +579875,7 @@
Returns:
-Array.<string> +string
@@ -272864,7 +579893,7 @@
Returns:
-

binPath(subCategoryopt, versionopt) → {string}

+

getContainer() → {string}

@@ -272872,8 +579901,7 @@

binPath - returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used + Returns the name of the container belonging to a shortcut @@ -272884,98 +579912,114 @@

binPathParameters:

- - - - - - - - - - - - +
-
- - + - - - - - + - + - - - + - + - - + - - - - + +
Source:
+
+ - + + - - - + + + - - + - -
NameTypeAttributesDescription
subCategory - - -string + + - - - - <optional>
- + - + - -
Wine sub-category
version - - + + + + + + + + + + + + + + + + + + + + + +
Returns:
+ + +
+ The container name +
+ + + +
+
+ Type +
+
+ string - -
- - <optional>
- + - - -
Wine version
+

getSettings() → {object}

+ + + + + + +
+ Fetch all prefix dosbox sttings +
+ + + + + + + @@ -273011,7 +580055,7 @@
Parameters:
Source:
@@ -273040,7 +580084,7 @@
Returns:
- path to "wine" binary + All the settings
@@ -273051,7 +580095,7 @@
Returns:
-string +object
@@ -273069,7 +580113,7 @@
Returns:
-

category(category) → {WineShortcut}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -273077,7 +580121,7 @@

category - Sets the shortcut category + Sets one setup file name so that the script can fetch it from gog.com @@ -273113,7 +580157,7 @@
Parameters:
- category + setupFileName @@ -273129,7 +580173,7 @@
Parameters:
- The shortcut category + The setup file name @@ -273170,7 +580214,7 @@
Parameters:
Source:
@@ -273199,7 +580243,7 @@
Returns:
- The WineShortcut object + This
@@ -273210,7 +580254,7 @@
Returns:
-WineShortcut +GogScript
@@ -273228,7 +580272,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -273236,7 +580280,7 @@

checksum - Sets the checksum + Sets the setup file(s) name so that the script can fetch it from gog.com @@ -273272,13 +580316,13 @@
Parameters:
- checksum + setupFileNames -string +Array.<string> @@ -273288,7 +580332,7 @@
Parameters:
- The checksum which shall be used to verify the download + The setup file name(s) @@ -273329,7 +580373,7 @@
Parameters:
Source:
@@ -273358,7 +580402,7 @@
Returns:
- The Downloader object + This
@@ -273369,7 +580413,7 @@
Returns:
-Downloader +GogScript
@@ -273387,7 +580431,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

headers(headers) → {Downloader}

@@ -273395,7 +580439,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the http headers @@ -273431,13 +580475,13 @@
Parameters:
- checksum + headers -string +Object @@ -273447,7 +580491,7 @@
Parameters:
- The checksum + The http headers @@ -273488,7 +580532,7 @@
Parameters:
Source:
@@ -273517,7 +580561,7 @@
Returns:
- The Resource object + The Downloader object
@@ -273528,7 +580572,7 @@
Returns:
-Resource +Downloader
@@ -273546,7 +580590,7 @@
Returns:
-

create() → {Wine}

+

isHdpi() → {boolean}

@@ -273554,7 +580598,7 @@

create - runs "wineboot" + Fetches whether hdpi is enabled or not @@ -273598,7 +580642,7 @@

createSource:
@@ -273627,7 +580671,117 @@
Returns:
- The Wine object + True if hdpi is enabled, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + + + + + + + + + + + + +

json() → {any}

+ + + + + + +
+ Gets the content of the downloaded file and returns it as a JSON value +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The json value
@@ -273638,7 +580792,113 @@
Returns:
-Wine +any + + +
+

+ + + + + + + + + + + + + +

kill() → {Wine}

+ + + + + + +
+ kill wine server +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +Wine
@@ -273656,7 +580916,7 @@
Returns:
-

create() → {void}

+

loginToGog(setupWizard) → {GogScript}

@@ -273664,7 +580924,8 @@

create - Creates a new 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 @@ -273675,6 +580936,55 @@

createParameters:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupWizard + + +SetupWizard + + + + The setupWizard to use
+ + @@ -273708,7 +581018,7 @@

createSource:
@@ -273736,6 +581046,10 @@

createReturns:

+
+ This +
+
@@ -273744,7 +581058,7 @@
Returns:
-void +GogScript
@@ -273762,7 +581076,7 @@
Returns:
-

description(description) → {WineShortcut}

+

message(message) → {Downloader}

@@ -273770,7 +581084,7 @@

descriptio
- Sets the shortcut description + Sets the download message text
@@ -273806,7 +581120,7 @@

Parameters:
- description + message @@ -273822,7 +581136,7 @@
Parameters:
- The shortcut description + The download message @@ -273863,7 +581177,7 @@
Parameters:
Source:
@@ -273892,7 +581206,7 @@
Returns:
- The WineShortcut object + The Downloader object
@@ -273903,7 +581217,7 @@
Returns:
-WineShortcut +Downloader
@@ -273921,7 +581235,7 @@
Returns:
-

directory(directory) → {Resource}

+

miniature(miniatureopt)

@@ -273929,7 +581243,7 @@

directory - Sets the directory inside the resources directory where the Resource is stored + get/set miniature (for the installation and the shortcut) @@ -273953,6 +581267,8 @@
Parameters:
Type + Attributes + @@ -273965,23 +581281,33 @@
Parameters:
- directory + miniature -string +URI + + + <optional>
+ + + + + - The directory path + + + path to the miniature file @@ -274022,7 +581348,147 @@
Parameters:
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:
+
@@ -274051,7 +581517,7 @@
Returns:
- The Resource object + The WineShortcut object
@@ -274062,7 +581528,7 @@
Returns:
-Resource +WineShortcut
@@ -274080,7 +581546,7 @@
Returns:
-

download(setupWizard) → {String}

+

name(name) → {Resource}

@@ -274088,7 +581554,7 @@

download - Download the setup resources in the same directory, and returns the path of the .exe + Sets the resource name @@ -274124,13 +581590,13 @@
Parameters:
- setupWizard + name -SetupWizard +string @@ -274140,7 +581606,7 @@
Parameters:
- The setup wizard + The name of the resource @@ -274181,7 +581647,7 @@
Parameters:
Source:
@@ -274210,7 +581676,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + The Resource object
@@ -274221,7 +581687,7 @@
Returns:
-String +Resource
@@ -274239,7 +581705,7 @@
Returns:
-

environment(environment) → {WineShortcut}

+

name(name) → {WineShortcut}

@@ -274247,7 +581713,7 @@

environmen
- Sets the shortcut environment variables + Sets the shortcut name
@@ -274283,7 +581749,7 @@

Parameters:
- environment + name @@ -274299,7 +581765,7 @@
Parameters:
- The environment variables + The shortcut name @@ -274340,7 +581806,7 @@
Parameters:
Source:
@@ -274398,7 +581864,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

of(shortcut) → {void}

@@ -274406,7 +581872,7 @@

environmen
- set environment + Sets shortcut
@@ -274442,7 +581908,7 @@

Parameters:
- environment + shortcut @@ -274458,7 +581924,7 @@
Parameters:
- variables + shortcut @@ -274499,7 +581965,7 @@
Parameters:
Source:
@@ -274527,10 +581993,6 @@
Parameters:
Returns:
-
- QuickScript object -
-
@@ -274539,7 +582001,7 @@
Returns:
-QuickScript +void
@@ -274557,7 +582019,7 @@
Returns:
-

executable(executable, args)

+

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

@@ -274565,7 +582027,7 @@

executable<
- set executable + Specifies if the download shall be executed only if a newer version is available
@@ -274601,28 +582063,15 @@

Parameters:
- executable + onlyIfUpdateAvailable - - - - - + +boolean - executable without path (e.g. "Steam.exe") - - - - - - args - - - @@ -274630,7 +582079,7 @@
Parameters:
- use array (e.g. ["-applaunch", 409160]) + true the download shall be executed only if a newer version is available @@ -274671,7 +582120,7 @@
Parameters:
Source:
@@ -274696,19 +582145,26 @@
Parameters:
+
Returns:
+ +
+ The Downloader object +
- +
+
+ Type +
+
- +Downloader - - -

fontDirectory() → {string}

- +
+
@@ -274716,9 +582172,16 @@

fontDire + + + + +

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

+ + @@ -274726,110 +582189,168 @@

fontDire -
- - - - - - - - - +
Parameters:
- + + + + + + - + - + + + - + - + + + - -
Source:
-
+ - + + + + - + + + + + + + + + + + + + + + + -
Returns:
+ - -
- font directory -
+ + + + + + + -
-
- Type -
-
- +
+ + - + - -

get() → {string}

- + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
prefix + + +string - - + + + + <optional>
+ + + +
distribution + + +string + + + + <optional>
+ + + +
architecture + + string - - - - - - + + + + <optional>
+ + - + +
version + + +string -
- Fetches the Resource and returns the path leading to the downloaded resource -
+ +
+ + <optional>
+ + + +
@@ -274865,7 +582386,7 @@

getSource:
@@ -274893,10 +582414,6 @@

get - The path leading to the downloaded resource - -
@@ -274906,6 +582423,9 @@
Returns:
string +| + +Wine
@@ -274923,7 +582443,7 @@
Returns:
-

get() → {String}

+

prefix(prefix) → {WineShortcut}

@@ -274931,7 +582451,7 @@

get - Gets the content of the downloaded file + Sets the shortcut prefix @@ -274942,6 +582462,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + prefix + + + + + +string + + + + + + + + + + The shortcut prefix + + + + + + + @@ -274975,7 +582544,7 @@

getSource:
@@ -275004,7 +582573,7 @@
Returns:
- The content of downloaded file + The WineShortcut object
@@ -275015,7 +582584,7 @@
Returns:
-String +WineShortcut
@@ -275033,7 +582602,7 @@
Returns:
-

get(resourceName) → {Resource}

+

prefixDirectory() → {string}

@@ -275041,7 +582610,7 @@

get - Returns the searched resource + returns prefix directory @@ -275052,55 +582621,6 @@

get - - - - Name - - - Type - - - - - - Description - - - - - - - - - resourceName - - - - - -string - - - - - - - - - - The name of the resource - - - - - - - @@ -275134,7 +582654,7 @@
Parameters:
Source:
@@ -275162,10 +582682,6 @@
Parameters:
Returns:
-
- The found resource -
-
@@ -275174,7 +582690,7 @@
Returns:
-Resource +string
@@ -275192,17 +582708,13 @@
Returns:
-

getContainer() → {string}

+

programFiles() → {string}

-
- Returns the name of the container belonging to a shortcut -
- @@ -275244,7 +582756,7 @@

getContai
Source:
@@ -275273,7 +582785,7 @@

Returns:
- The container name + name of "Program Files"
@@ -275302,17 +582814,13 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

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

-
- Sets one setup file name so that the script can fetch it from gog.com -
- @@ -275334,8 +582842,12 @@
Parameters:
Type + Attributes + + Default + Description @@ -275346,7 +582858,7 @@
Parameters:
- setupFileName + executable @@ -275359,169 +582871,217 @@
Parameters:
+ + + + + + - The setup file name + + + + + + + - - - - + + + args + + + + +array -
+ + - + + + + <optional>
+ - + - + + + - + + + + [] + + + - + + - + + + workingDirectory + - + + + +string - - + + - + + + + <optional>
+ - + - -
Source:
-
- + + + - + + + + working container + + + - + + -
+ + + captureOutput + + + + +boolean + + + + + + <optional>
+ + - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - + + - + + + + false + + + - -

gogSetupFileNames(setupFileNames) → {GogScript}

- + + + + + wait + - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - + + + +boolean -
Parameters:
- + + - - - - - - + + + - + + + - + + + - - - + + - - + + - + + + + + @@ -275562,7 +583122,7 @@
Parameters:
Source:
@@ -275591,7 +583151,7 @@
Returns:
- This + output
@@ -275602,7 +583162,7 @@
Returns:
-GogScript +String
@@ -275620,7 +583180,7 @@
Returns:
-

headers(headers) → {Downloader}

+

run(userArguments) → {void}

@@ -275628,7 +583188,7 @@

headers - Sets the http headers + Runs a shortcut with the given user arguments @@ -275664,13 +583224,13 @@
Parameters:

- + + @@ -275721,7 +583281,7 @@
Parameters:
Source:
@@ -275749,10 +583309,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -275761,7 +583317,7 @@
Returns:
-Downloader +void
@@ -275779,16 +583335,13 @@
Returns:
-

json() → {any}

+

runInsidePrefix(executable, argsopt, waitopt)

-
- Gets the content of the downloaded file and returns it as a JSON value -
@@ -275797,115 +583350,147 @@

json - - - - - - - - - - - - - - - - - - - +
Parameters:
- +

Name + + <optional>
+ -
Type + + false + + Description
setupFileNamesuserData -Array.<string> +map + + <optional>
+ + + + +
The setup file name(s) + + empty + +
headersuserArguments -Object +array @@ -275680,7 +583240,7 @@
Parameters:
-
The http headersThe user arguments
+ + + + + - + - -
Source:
-
- + + + - + + + - + + + + - - - - - - - - - - - + + + + + -
Returns:
+ + + + + + -
-
- Type -
-
- -any +
+ + - - + + + + - + + + - + + + - -

kill() → {Wine}

- + + + + + + + + + + + + + + + + + +
NameTypeAttributesDefaultDescription
executable + + +string + + + - -
- The json value -
+ + +
+ +
args + + +array + + + + <optional>
+ + - + +
+ + [] + +
wait + + +boolean -
- kill wine server -
+ +
+ + <optional>
+ + + +
+ + false + +
@@ -275941,7 +583526,7 @@

killSource:
@@ -275966,24 +583551,6 @@

killWine - - - -

- - @@ -275995,7 +583562,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+ @@ -276003,8 +583570,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 executable which shall be used
@@ -276040,13 +583606,13 @@

Parameters:
- setupWizard + search -SetupWizard +string @@ -276056,7 +583622,7 @@
Parameters:
- The setupWizard to use + The executable name @@ -276097,7 +583663,7 @@
Parameters:
Source:
@@ -276126,7 +583692,7 @@
Returns:
- This + The WineShortcut object
@@ -276137,7 +583703,7 @@
Returns:
-GogScript +WineShortcut
@@ -276155,7 +583721,7 @@
Returns:
-

message(message) → {Downloader}

+

stop() → {void}

@@ -276163,7 +583729,7 @@

message - Sets the download message text + Stops the running shortcut @@ -276174,53 +583740,106 @@

messageParameters:

+ + + + +
+ - - - - - - + - + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + + + + + + + + + + + + + + + + + +
Returns:
+ +
+
+ Type +
+
+void -
- - - + + + - - - - - + - + - - + +

system32directory() → {string}

+ - -
NameTypeDescription
message - - -string - - The download message
+ + + + + + + + + @@ -276256,7 +583875,7 @@
Parameters:
Source:
@@ -276285,7 +583904,7 @@
Returns:
- The Downloader object + system32 directory
@@ -276296,7 +583915,7 @@
Returns:
-Downloader +string
@@ -276314,16 +583933,13 @@
Returns:
-

miniature(miniature) → {WineShortcut}

+

system64directory() → {string}

-
- Sets the miniature for the shortcut -
@@ -276333,59 +583949,6 @@

miniatureParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - @@ -276418,7 +583981,7 @@
Parameters:
Source:
@@ -276447,7 +584010,7 @@
Returns:
- The WineShortcut object + system64 directory
@@ -276458,7 +584021,7 @@
Returns:
-WineShortcut +string
@@ -276476,7 +584039,7 @@
Returns:
-

miniature(miniatureopt)

+

to(localDestination) → {Downloader}

@@ -276484,7 +584047,7 @@

miniature - get/set miniature (for the installation and the shortcut) + Sets the download destination @@ -276508,8 +584071,6 @@
Parameters:
Type - Attributes - @@ -276522,33 +584083,23 @@
Parameters:
- miniature + localDestination -URI +string - - - <optional>
- - - - - - - - path to the miniature file + The destination of the download. If it is a directory, the file will be placed inside @@ -276589,7 +584140,7 @@
Parameters:
Source:
@@ -276614,6 +584165,28 @@
Parameters:
+
Returns:
+ + +
+ The Downloader object +
+ + + +
+
+ Type +
+
+ +Downloader + + +
+
+ + @@ -276625,7 +584198,7 @@
Parameters:
-

name(name) → {Resource}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -276633,7 +584206,7 @@

name - Sets the resource name + Sets the trust level @@ -276669,7 +584242,7 @@
Parameters:
- name + trustLevel @@ -276685,7 +584258,7 @@
Parameters:
- The name of the resource + The trust level @@ -276726,7 +584299,7 @@
Parameters:
Source:
@@ -276755,7 +584328,7 @@
Returns:
- The Resource object + The WineShortcut object
@@ -276766,7 +584339,7 @@
Returns:
-Resource +WineShortcut
@@ -276784,7 +584357,7 @@
Returns:
-

name(name) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -276792,7 +584365,7 @@

name - Sets the shortcut name + set trust level @@ -276828,7 +584401,7 @@
Parameters:
- name + trustlevel @@ -276844,7 +584417,7 @@
Parameters:
- The shortcut name + @@ -276885,7 +584458,7 @@
Parameters:
Source:
@@ -276914,7 +584487,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -276925,7 +584498,7 @@
Returns:
-WineShortcut +QuickScript
@@ -276943,7 +584516,7 @@
Returns:
-

of(shortcut) → {void}

+

type(type) → {WineShortcut}

@@ -276951,7 +584524,7 @@

of - Sets shortcut + Sets the shortcut type @@ -276987,7 +584560,7 @@
Parameters:
- shortcut + type @@ -277003,7 +584576,7 @@
Parameters:
- shortcut + The shortcut type @@ -277044,7 +584617,7 @@
Parameters:
Source:
@@ -277072,6 +584645,10 @@
Parameters:
Returns:
+
+ The WineShortcut object +
+
@@ -277080,7 +584657,7 @@
Returns:
-void +WineShortcut
@@ -277098,7 +584675,7 @@
Returns:
-

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

+

uninstall(name) → {bool}

@@ -277106,7 +584683,7 @@

- Specifies if the download shall be executed only if a newer version is available + uninstall application
@@ -277142,13 +584719,13 @@

Parameters:
- onlyIfUpdateAvailable + name -boolean +string @@ -277158,7 +584735,7 @@
Parameters:
- true the download shall be executed only if a newer version is available + of the application which shall be uninstalled @@ -277199,7 +584776,7 @@
Parameters:
Source:
@@ -277228,7 +584805,7 @@
Returns:
- The Downloader object + true if an application has been uninstalled, false otherwise
@@ -277239,7 +584816,7 @@
Returns:
-Downloader +bool
@@ -277257,7 +584834,7 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

uninstall() → {void}

@@ -277265,7 +584842,113 @@

prefix - Sets the shortcut prefix + Uninstalls the shortcut + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +void + + +
+
+ + + + + + + + + + + + + +

url(url) → {Downloader}

+ + + + + + +
+ Sets the URL which shall be used for the download
@@ -277301,7 +584984,7 @@
Parameters:
- prefix + url @@ -277317,7 +585000,7 @@
Parameters:
- The shortcut prefix + The URL @@ -277358,7 +585041,7 @@
Parameters:
Source:
@@ -277387,7 +585070,7 @@
Returns:
- The WineShortcut object + The Downloader object
@@ -277398,7 +585081,7 @@
Returns:
-WineShortcut +Downloader
@@ -277416,13 +585099,17 @@
Returns:
-

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

+

url(url) → {Resource}

+
+ Sets the resource URL +
+ @@ -277444,8 +585131,6 @@
Parameters:
Type - Attributes - @@ -277458,106 +585143,7 @@
Parameters:
- prefix - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - distribution - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - architecture - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - version + url @@ -277570,20 +585156,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The URL @@ -277624,7 +585200,7 @@
Parameters:
Source:
@@ -277652,6 +585228,10 @@
Parameters:
Returns:
+
+ The Resource object +
+
@@ -277660,10 +585240,7 @@
Returns:
-string -| - -Wine +Resource
@@ -277681,7 +585258,7 @@
Returns:
-

prefixDirectory() → {string}

+

wait() → {Wine}

@@ -277689,7 +585266,7 @@

prefix
- returns prefix directory + wait until wineserver finishes
@@ -277733,7 +585310,7 @@

prefix
Source:
@@ -277769,7 +585346,7 @@

Returns:
-string +Wine
@@ -277787,7 +585364,7 @@
Returns:
-

programFiles() → {string}

+

winepath(pathopt) → {String}

@@ -277802,6 +585379,67 @@

programFi +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
path + + +String + + + + + + <optional>
+ + + + + +
+ + @@ -277835,7 +585473,7 @@

programFi
Source:
@@ -277863,10 +585501,6 @@

programFi

Returns:
-
- name of "Program Files" -
-
@@ -277875,7 +585509,7 @@
Returns:
-string +String
@@ -277893,7 +585527,7 @@
Returns:
-

run(userArguments) → {void}

+

wineServer(wineserver)

@@ -277901,7 +585535,7 @@

run - Runs a shortcut with the given user arguments + executes wineserver in current prefix @@ -277937,13 +585571,13 @@
Parameters:
- userArguments + wineserver -array +string @@ -277953,7 +585587,7 @@
Parameters:
- The user arguments + parameter @@ -277994,7 +585628,7 @@
Parameters:
Source:
@@ -278019,24 +585653,6 @@
Parameters:
-
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - @@ -278048,13 +585664,17 @@
Returns:
-

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

+

withApplicationWindowsVersion(application, os) → {WindowsVersion}

+
+ Specifies the windows version for a given application +
+ @@ -278076,12 +585696,8 @@
Parameters:
Type - Attributes - - Default - Description @@ -278092,7 +585708,7 @@
Parameters:
- executable + application @@ -278105,217 +585721,193 @@
Parameters:
- - - - - - - - - - - - - + The application executable - args + os -array +string - - - <optional>
- - - - - - - - - - - [] - - - + The windows version + + - - - workingDirectory - - - - -string - - - - - - <optional>
- - +
- - - + - - - - working container - - - + - - + - - - captureOutput - + - - - -boolean + + - - + - - - - <optional>
- + - + - - - + - - - - false - - - + - - + +
Source:
+
+ - - - wait - + - - - -boolean + +
- - - - - - <optional>
- - - - - - - - - false - - + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +WindowsVersion + + +
+
+ + + + + + + + - - + + + +

withCpuCycles(cpuCycles) → {Dosbox}

+ + + + + + +
+ Sets CPU cycles in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + - + - - - - - + @@ -278356,7 +585948,7 @@
Parameters:
Source:
@@ -278385,7 +585977,7 @@
Returns:
- output + This
@@ -278396,7 +585988,7 @@
Returns:
-String +Dosbox
@@ -278414,13 +586006,17 @@
Returns:
-

runInsidePrefix(executable, argsopt, waitopt)

+

withDimensions(width, height) → {VirtualDesktop}

+
+ Specifies the dimensions of the virtual desktop +
+ @@ -278442,12 +586038,8 @@
Parameters:
- - - - @@ -278458,113 +586050,46 @@
Parameters:
- - - - - - - - - - - - - - - - - - - - - + - - - - - - + - + - - - - - + @@ -278605,7 +586130,7 @@
Parameters:
Source:
@@ -278630,6 +586155,28 @@
Parameters:
+
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +VirtualDesktop + + +
+
+ + @@ -278641,7 +586188,7 @@
Parameters:
- +

withDriver(driver) → {SoundDriver}

@@ -278649,7 +586196,7 @@ - + + @@ -278742,7 +586289,7 @@
Parameters:
Source:
@@ -278771,7 +586318,7 @@
Returns:
- The WineShortcut object + This
@@ -278782,7 +586329,7 @@
Returns:
-WineShortcut +SoundDriver
@@ -278800,7 +586347,7 @@
Returns:
-

stop() → {void}

+

withExtension(extension) → {NativeApplication}

@@ -278808,7 +586355,7 @@

stop - Stops the running shortcut + Specifies the file extension @@ -278819,106 +586366,53 @@

stop - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
- - - - - - - - - - - - - - - - -
Returns:
+

NameTypeDescription
userDatacpuCycles -map +int - - <optional>
- - - - - -
- - empty - - (example: max 95% limit 33000)
TypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
argswidth -array +number - - <optional>
- - - - -
- - [] - - width of virtual desktop (in px)
waitheight -boolean +number - - <optional>
- - - - - -
- - false - - height of virtual desktop (in px)
searchdriver @@ -278701,7 +586248,7 @@
Parameters:
-
The executable namealsa or pulse
+ + + + + -
-
- Type -
-
-void + -
-
+ + + + + + + + + - - + - -

system32directory() → {string}

- + + - - - - - - - - - + +
NameTypeDescription
extension + + +string + + The file extension (pdf, txt, rtf)
@@ -278954,7 +586448,7 @@

syst
Source:
@@ -278983,7 +586477,7 @@

Returns:
- system32 directory + This
@@ -278994,7 +586488,7 @@
Returns:
-string +NativeApplication
@@ -279012,19 +586506,72 @@
Returns:
-

system64directory() → {string}

+

withHdpi(hdpi) → {HDPI}

+
+ Specifies whether hdpi should be enabled or not +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
hdpi + + +boolean + + true if hdpi shall be enabled
@@ -279060,7 +586607,7 @@

syst
Source:
@@ -279089,7 +586636,7 @@

Returns:
- system64 directory + This
@@ -279100,7 +586647,7 @@
Returns:
-string +HDPI
@@ -279118,7 +586665,7 @@
Returns:
-

to(localDestination) → {Downloader}

+

withManaged(managed) → {Managed}

@@ -279126,7 +586673,7 @@

to - Sets the download destination + Specifies the global managed state @@ -279162,13 +586709,13 @@
Parameters:
- localDestination + managed -string +boolean @@ -279178,7 +586725,7 @@
Parameters:
- The destination of the download. If it is a directory, the file will be placed inside + True if it shall be managed @@ -279219,7 +586766,7 @@
Parameters:
Source:
@@ -279248,7 +586795,7 @@
Returns:
- The Downloader object + This
@@ -279259,7 +586806,7 @@
Returns:
-Downloader +Managed
@@ -279277,7 +586824,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

withManagedApplication(application, managed) → {Managed}

@@ -279285,7 +586832,7 @@

trustLevel<
- Sets the trust level + Specifies the managed state for a given application
@@ -279321,7 +586868,7 @@

Parameters:
- trustLevel + application @@ -279337,7 +586884,30 @@
Parameters:
- The trust level + The application + + + + + + + managed + + + + + +boolean + + + + + + + + + + True if the application shall be managed @@ -279378,7 +586948,7 @@
Parameters:
Source:
@@ -279407,7 +586977,7 @@
Returns:
- The WineShortcut object + This
@@ -279418,7 +586988,7 @@
Returns:
-WineShortcut +Managed
@@ -279436,7 +587006,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

withMemSize(memSize) → {Dosbox}

@@ -279444,7 +587014,8 @@

trustLevel<
- set trust level + Sets dosbox_memsize parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D
@@ -279480,7 +587051,166 @@

Parameters:
- trustlevel + memSize + + + + + +int + + + + + + + + + + The memory size + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +Dosbox + + +
+
+ + + + + + + + + + + + + +

withMode(mode) → {FontSmoothing}

+ + + + + + +
+ Specifies the used font smoothing mode +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -279537,7 +587267,7 @@
Parameters:
Source:
@@ -279566,7 +587296,7 @@
Returns:
- QuickScript object + This
@@ -279577,7 +587307,7 @@
Returns:
-QuickScript +FontSmoothing
@@ -279595,7 +587325,7 @@
Returns:
-

type(type) → {WineShortcut}

+

withMode(mode) → {GLSL}

@@ -279603,7 +587333,7 @@

type - Sets the shortcut type + Specifies the mode @@ -279639,7 +587369,7 @@
Parameters:

- + + @@ -279696,7 +587426,7 @@
Parameters:
Source:
@@ -279725,7 +587455,7 @@
Returns:
- The WineShortcut object + This
@@ -279736,7 +587466,7 @@
Returns:
-WineShortcut +GLSL
@@ -279754,7 +587484,7 @@
Returns:
-

uninstall(name) → {bool}

+

withMode(mode) → {TakeFocus}

@@ -279762,7 +587492,7 @@

uninstall - uninstall application + Specifies the mode @@ -279798,7 +587528,7 @@
Parameters:

- + + @@ -279855,7 +587585,7 @@
Parameters:
Source:
@@ -279884,7 +587614,7 @@
Returns:
- true if an application has been uninstalled, false otherwise + This
@@ -279895,7 +587625,7 @@
Returns:
-bool +TakeFocus
@@ -279913,7 +587643,7 @@
Returns:
-

uninstall() → {void}

+

withMode(mode) → {DirectDrawRenderer}

@@ -279921,7 +587651,7 @@

uninstall - Uninstalls the shortcut + Selects the used direct draw mode (either gdi or opengl) @@ -279932,6 +587662,55 @@

uninstallParameters:

+ + +

NameTypeDescription
mode @@ -279496,7 +587226,7 @@
Parameters:
-
"RGB", "BGR" or "Gray Scale"
typemode @@ -279655,7 +587385,7 @@
Parameters:
-
The shortcut typeenabled or disabled
namemode @@ -279814,7 +587544,7 @@
Parameters:
-
of the application which shall be uninstalled"Y" or "N"
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
mode + + +string + + + + gdi or opengl
+ + @@ -279965,7 +587744,7 @@

uninstallSource:
@@ -279993,6 +587772,10 @@

uninstallReturns:

+
+ This +
+
@@ -280001,7 +587784,7 @@
Returns:
-void +DirectDrawRenderer
@@ -280019,7 +587802,7 @@
Returns:
-

url(url) → {Downloader}

+

withRenderAspect(renderAspect) → {Dosbox}

@@ -280027,7 +587810,8 @@

url - Sets the URL which shall be used for the download + Sets render_aspect parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D @@ -280063,13 +587847,13 @@
Parameters:
- url + renderAspect -string +boolean @@ -280079,7 +587863,7 @@
Parameters:
- The URL + The render aspect @@ -280120,7 +587904,7 @@
Parameters:
Source:
@@ -280149,7 +587933,7 @@
Returns:
- The Downloader object + This
@@ -280160,7 +587944,7 @@
Returns:
-Downloader +Dosbox
@@ -280178,7 +587962,7 @@
Returns:
-

url(url) → {Resource}

+

withRenderFrameSkip(renderFrameSkip) → {Dosbox}

@@ -280186,7 +587970,8 @@

url - Sets the resource URL + Sets render_frameskip parameter in the current prefix +https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D @@ -280222,13 +588007,13 @@
Parameters:
- url + renderFrameSkip -string +int @@ -280238,7 +588023,7 @@
Parameters:
- The URL + The render frameskip @@ -280279,7 +588064,7 @@
Parameters:
Source:
@@ -280308,7 +588093,7 @@
Returns:
- The Resource object + This
@@ -280319,7 +588104,7 @@
Returns:
-Resource +Dosbox
@@ -280337,7 +588122,7 @@
Returns:
-

wait() → {Wine}

+

withScript(command) → {PlainInstaller}

@@ -280345,7 +588130,7 @@

wait - wait until wineserver finishes + Sets the installation script consisting of a lambda function @@ -280356,6 +588141,55 @@

wait + + + + Name + + + Type + + + + + + Description + + + + + + + + + command + + + + + +function + + + + + + + + + + The installation command + + + + + + + @@ -280389,7 +588223,7 @@

waitSource:
@@ -280417,6 +588251,10 @@

wait + The PlainInstaller object + +
@@ -280425,7 +588263,7 @@
Returns:
-Wine +PlainInstaller
@@ -280443,13 +588281,17 @@
Returns:
-

winepath(pathopt) → {String}

+

withSetting(key, value) → {Dosbox}

+
+ Sets a dosbox setting +
+ @@ -280471,8 +588313,6 @@
Parameters:
Type - Attributes - @@ -280485,33 +588325,46 @@
Parameters:
- path + key -String +string - - - <optional>
- - + + The key of the setting (example dosbox_memsize) + + + + + + + value + + + + - +any + + + - + + + The value to be set @@ -280552,7 +588405,7 @@
Parameters:
Source:
@@ -280580,6 +588433,10 @@
Parameters:
Returns:
+
+ This +
+
@@ -280588,7 +588445,7 @@
Returns:
-String +Dosbox
@@ -280606,7 +588463,7 @@
Returns:
-

wineServer(wineserver)

+

withVersion(major, minor) → {OpenGL}

@@ -280614,7 +588471,7 @@

wineServer<
- executes wineserver in current prefix + Specifies the major and minor versions
@@ -280650,13 +588507,13 @@

Parameters:
- wineserver + major -string +number @@ -280666,7 +588523,30 @@
Parameters:
- parameter + The major version + + + + + + + minor + + + + + +number + + + + + + + + + + The minor version @@ -280707,7 +588587,7 @@
Parameters:
Source:
@@ -280732,6 +588612,28 @@
Parameters:
+
Returns:
+ + +
+ This +
+ + + +
+
+ Type +
+
+ +OpenGL + + +
+
+ + @@ -280743,7 +588645,7 @@
Parameters:
-

withScript(command) → {PlainInstaller}

+

withWindowsVersion(version, servicePack) → {WindowsVersion}

@@ -280751,7 +588653,7 @@

withScript<
- Sets the installation script consisting of a lambda function + Specifies the default windows version
@@ -280787,13 +588689,13 @@

Parameters:
- command + version -function +string @@ -280803,7 +588705,30 @@
Parameters:
- The installation command + win7, vista, win2003, winxp, win2k, winnt, winme, win98, win95, win31 + + + + + + + servicePack + + + + + +string + + + + + + + + + + e.g. sp3 @@ -280844,7 +588769,7 @@
Parameters:
Source:
@@ -280873,7 +588798,7 @@
Returns:
- The PlainInstaller object + This
@@ -280884,7 +588809,7 @@
Returns:
-PlainInstaller +WindowsVersion
@@ -281061,17 +588986,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -281093,6 +589014,8 @@
Parameters:
Type + Attributes + @@ -281118,10 +589041,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -281162,7 +589095,7 @@
Parameters:
Source:
@@ -281190,10 +589123,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -281202,7 +589131,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -281220,13 +589152,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -281248,8 +589184,6 @@
Parameters:
Type - Attributes - @@ -281275,20 +589209,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -281329,7 +589253,7 @@
Parameters:
Source:
@@ -281357,6 +589281,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -281365,10 +589293,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -281396,7 +589321,7 @@
Returns:

diff --git a/i18n/Messages.properties b/i18n/Messages.properties index 77444c6aee..13a7b79a76 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:411 +#: Engines/Wine/Engine/Implementation/script.js:414 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Engines/Wine/Engine/Implementation/script.js:492 +#: Engines/Wine/Engine/Implementation/script.js:498 Change\ {0}\ container\ Wine\ version=Change {0} container Wine version #: Utils/Functions/Filesystem/Files/script.js:215 @@ -280,7 +280,7 @@ 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 +#: Engines/Wine/Plugins/native application/script.js:32 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" #: Engines/Wine/Engine/Object/script.js:190 @@ -347,7 +347,7 @@ 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/hdpi/script.js:10 #: 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 @@ -359,14 +359,14 @@ Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Dow #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader -#: Engines/Wine/Engine/Implementation/script.js:220 +#: Engines/Wine/Engine/Implementation/script.js:223 Downloading\ amd64\ runtime...=Downloading amd64 runtime... -#: Engines/Wine/Engine/Implementation/script.js:130 -#: Engines/Wine/Engine/Implementation/script.js:161 +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 Downloading\ runtime\ json...=Downloading runtime json... -#: Engines/Wine/Engine/Implementation/script.js:251 +#: Engines/Wine/Engine/Implementation/script.js:254 Downloading\ x86\ runtime...=Downloading x86 runtime... #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed @@ -382,11 +382,11 @@ 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: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/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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). +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -405,7 +405,7 @@ Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ im #: 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/hdpi/script.js:10 #: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always #: offscreen/script.js:11 Engines/Wine/Settings/strict draw #: ordering/script.js:11 @@ -491,9 +491,12 @@ 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:321 +#: Engines/Wine/Engine/Implementation/script.js:324 Fetching\ available\ Wine\ versions...=Fetching available Wine versions... +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -563,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=Games +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -661,11 +667,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:62 +#: Engines/Wine/Engine/Implementation/script.js:65 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 -#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309 +#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94 #: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installing {0}... @@ -832,7 +838,7 @@ 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 +#: Engines/Wine/Plugins/Font smoothing/script.js:50 No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! #: i18n/tmp/Applications/Development/Notepad++/application.js:1 @@ -847,7 +853,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:15 2/Local/script.js:16 +#: Applications/Games/Wildlife Park 2/Steam/script.js:17 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 @@ -958,10 +964,10 @@ PhysX=PhysX #: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 Plain\ Installer=Plain Installer -#: Engines/Wine/QuickScript/Uplay Script/script.js:85 +#: Engines/Wine/QuickScript/Uplay Script/script.js:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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 @@ -979,13 +985,13 @@ Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ #: 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:139 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: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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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 @@ -997,7 +1003,7 @@ Please\ select\ the\ .zip\ file.=Please select the .zip file. #: 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:520 +#: Engines/Wine/Engine/Implementation/script.js:526 Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. #: Engines/Wine/QuickScript/Online Installer Script/script.js:34 @@ -1009,14 +1015,14 @@ 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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:522 +#: Engines/Wine/Engine/Implementation/script.js:528 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 +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 Please\ select\ the\ version.=Please select the version. #: Engines/Wine/QuickScript/Installer Script/script.js:36 @@ -1028,10 +1034,10 @@ 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:174 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:77 +#: Engines/Wine/QuickScript/Uplay Script/script.js:102 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... #: Utils/Functions/Net/Resource/script.js:89 @@ -1042,63 +1048,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:46 +#: Engines/Wine/Verbs/dotnet472/script.js:44 #: 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/dotnet20sp2/script.js:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 #: Engines/Wine/Verbs/vcrun2013/script.js:26 #: Engines/Wine/Verbs/vcrun2013/script.js:40 -#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/dotnet462/script.js:44 #: Engines/Wine/Verbs/vcrun2017/script.js:28 #: Engines/Wine/Verbs/vcrun2017/script.js:42 -#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/dotnet46/script.js:44 #: Engines/Wine/Verbs/vcrun2005/script.js:26 -#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/dotnet452/script.js:44 #: 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/dotnet461/script.js:44 #: Engines/Wine/Verbs/vcrun2015/script.js:26 #: Engines/Wine/Verbs/vcrun2015/script.js:40 -#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:48 #: 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/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 #: 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 +#: Engines/Wine/Verbs/dotnet20/script.js:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:144 -#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 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/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 #: 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/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 #: 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 +#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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 +#: Script/script.js:91 Script/script.js:115 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 @@ -1190,7 +1196,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:15 +#: Engines/Wine/Settings/hdpi/script.js:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1255,10 +1261,10 @@ Science=Science Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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:33 +#: 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 @@ -1612,22 +1618,22 @@ This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ #: 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 +#: Engines/Wine/Verbs/dotnet472/script.js:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:26 -#: Engines/Wine/Verbs/dotnet40/script.js:91 -#: Engines/Wine/Verbs/dotnet45/script.js:28 -#: Engines/Wine/Verbs/dotnet45/script.js:84 +#: Engines/Wine/Verbs/dotnet40/script.js:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 @@ -1694,7 +1700,7 @@ 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 +#: Engines/Wine/Plugins/Font smoothing/script.js:42 Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 @@ -1720,7 +1726,7 @@ Use\ Take\ Focus=Use Take Focus #: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 UseTakeFocus=UseTakeFocus -#: Engines/Wine/Verbs/gallium9/script.js:42 +#: Engines/Wine/Verbs/gallium9/script.js:44 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 @@ -1781,7 +1787,7 @@ When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ #: 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:80 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82 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 @@ -1867,13 +1873,13 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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\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:44 +#: Applications/Games/Space Engineers/Steam/script.js:49 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 @@ -2070,8 +2076,8 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet45/script.js:70 +#: Engines/Wine/Verbs/dotnet452/script.js:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..ae268f5a63 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:414 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:498 +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:32 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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -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:10 +#: 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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +518,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 +543,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 @@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=Games +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -525,6 +578,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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1205,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 +1230,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,14 +1261,13 @@ Science=Science Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..ae268f5a63 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:414 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:498 +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:32 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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -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:10 +#: 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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +518,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 +543,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 @@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=Games +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -525,6 +578,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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1205,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 +1230,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,14 +1261,13 @@ Science=Science Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..8b532bf53e 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,11 +64,14 @@ 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. #: i18n/tmp/Applications/Accessories/category.js:1 -Accessories=Accessories +Accessories=Aksessuarlar #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/application.js:1 Adobe\ Acrobat\ Reader\ DC=Adobe Acrobat Reader DC @@ -86,8 +92,8 @@ 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 -Always\ offscreen=Always offscreen +#: Engines/Wine/Settings/always offscreen/script.js:17 +Always\ offscreen=H\u0259mi\u015f\u0259 ba\u011fl\u0131 ekran #: i18n/tmp/Applications/Games/Prince of Persia: The Sands #: Time/application.js:2 @@ -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:414 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:498 +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,11 +280,11 @@ 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:32 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 -Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! +#: Engines/Wine/Engine/Object/script.js:190 +Could\ not\ uninstall\ {0}\!={0} silin\u0259 bilmir\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 Crayon\ Physics=Crayon Physics @@ -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 @@ -290,7 +311,7 @@ DC\ Universe\ Online=DC Universe Online DOOM\ (2016)=DOOM (2016) #: i18n/tmp/Engines/Wine/Plugins/DOS support/script.js:1 -DOS\ support=DOS support +DOS\ support=DOS d\u0259st\u0259yi #: 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. @@ -298,18 +319,20 @@ 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 -Default=Default +#: 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=\u0130lkin #: 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. @@ -317,24 +340,34 @@ 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 -Disabled=Disabled +#: 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:10 +#: 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=L\u0259\u011fv edildi -#: 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 +Downloader=Endirici + +#: Engines/Wine/Engine/Implementation/script.js:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +Downloading\ x86\ runtime...=Downloading x86 runtime... #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 @@ -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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -368,12 +403,13 @@ 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 -Enabled=Enabled +#: 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:10 +#: 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=F\u0259alla\u015fd\u0131r\u0131ld\u0131 #: i18n/tmp/Applications/Games/Enderal/application.js:1 Enderal=Enderal @@ -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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +518,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,15 +543,15 @@ 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 -GLSL\ support=GLSL support +#: Engines/Wine/Settings/GLSL/script.js:17 +GLSL\ support=GLSL d\u0259st\u0259yi #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 #: i18n/tmp/Applications/Games/Teenagent/GOG/script.js:1 @@ -514,7 +564,10 @@ GOG\ GALAXY\ is\ a\ fully\ optional\ Steam-like\ client\ for\ GOG.com\ to\ insta GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 -Games=Games +Games=Oyunlar + +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -523,7 +576,10 @@ GoG\ Script=GoG Script Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 -Graphics=Graphics +Graphics=Qrafika + +#: 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 +627,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,16 +667,16 @@ 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:65 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 -Installing\ {0}...=Installing {0}... +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309 +#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 +Installing\ {0}...={0} qura\u015fd\u0131r\u0131l\u0131r... #: i18n/tmp/Applications/Internet/category.js:1 -Internet=Internet +Internet=\u0130nternet #: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:1 Internet\ Explorer\ 6.0=Internet Explorer 6.0 @@ -628,8 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +850,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:17 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,24 +902,28 @@ 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 +Online\ Installer=Online Qura\u015fd\u0131r\u0131c\u0131 #: 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 +Open\ a\ terminal=Terminal a\u00e7 -#: 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 +OpenGL_version=OpenGL versiyas\u0131 +#: 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 @@ -865,7 +937,7 @@ Origin\ is\ EA's\ PC\ games\ portal.=Origin is EA's PC games portal. Orwell\:\ Keeping\ an\ Eye\ On\ You=Orwell\: Keeping an Eye On You #: i18n/tmp/Applications/Other/category.js:1 -Other=Other +Other=Dig\u0259r #: i18n/tmp/Applications/Games/Overwatch/application.js:1 Overwatch=Overwatch @@ -876,6 +948,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 +961,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:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1205,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 +1230,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 @@ -1163,20 +1255,19 @@ STAR\ WARS™\:\ The\ Old\ Republic=STAR WARS\u2122\: The Old Republic 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 +Science=Elm #: 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 +#: (1.0->1.6)/script.js:16 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 -Select\ your\ region\:=Select your region\: +#: Applications/Games/League of Legends/Online/script.js:34 +Select\ your\ region\:=Regionunu se\u00e7\: -#: 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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. @@ -1754,11 +1895,14 @@ Your\ car\ is\ your\ avatar\ -\ fine\ tune\ your\ ride\ as\ you\ level\ up\ and\ Zip\ Script=Zip Script #: i18n/tmp/Engines/Wine/Settings/always offscreen/script.js:1 -always\ offscreen=always offscreen +always\ offscreen=h\u0259mi\u015f\u0259 ba\u011fl\u0131 ekran #: 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 +1930,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 +1967,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,17 +1997,17 @@ 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 -readtext=readtext +#: Engines/Wine/Settings/render target lock mode/script.js:11 +readtext=m\u0259tnoxuma #: 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 +register\ font=qeydiyyat yaz\u0131 n\u00f6v\u00fc #: i18n/tmp/Engines/Wine/Plugins/regsvr32/script.js:1 regsvr32=regsvr32 @@ -1863,14 +2022,11 @@ sandbox=sandbox secur32=secur32 #: i18n/tmp/Engines/Wine/Plugins/sound driver/script.js:1 -sound\ driver=sound driver +sound\ driver=s\u0259s s\u00fcr\u00fcc\u00fcs\u00fc #: 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,11 +2060,15 @@ 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 +video\ memory\ size=video yadda\u015f h\u0259cmi -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 -virtual\ desktop=virtual desktop +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual +virtual\ desktop=\u0259yani masa\u00fcst\u00fc #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 vulkanSDK=vulkanSDK @@ -1916,11 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..ae268f5a63 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:414 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:498 +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:32 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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -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:10 +#: 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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +518,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 +543,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 @@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=Games +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -525,6 +578,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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1205,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 +1230,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,14 +1261,13 @@ Science=Science Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..f09a1a385b 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,11 +64,14 @@ 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. #: i18n/tmp/Applications/Accessories/category.js:1 -Accessories=Accessories +Accessories=P\u0159\u00edslu\u0161enstv\u00ed #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/application.js:1 Adobe\ Acrobat\ Reader\ DC=Adobe Acrobat Reader DC @@ -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:414 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:498 +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 @@ -260,15 +275,15 @@ Command\ or\ corrupt\ an\ entire\ galaxy\ in\ the\ definitive\ Star\ Wars\ strat Command\ prompt=Command prompt #: i18n/tmp/Engines/Wine/Tools/Configure Wine/script.js:1 -Configure\ Wine=Configure Wine +Configure\ Wine=Nastaven\u00ed 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:32 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 @@ -278,10 +293,16 @@ Crayon\ Physics=Crayon Physics 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 +Custom=Vlastn\u00ed #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 -Custom\ Installer\ Script=Custom Installer Script +Custom\ Installer\ Script=Vlastn\u00ed instala\u010dn\u00ed 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 @@ -290,7 +311,7 @@ DC\ Universe\ Online=DC Universe Online DOOM\ (2016)=DOOM (2016) #: i18n/tmp/Engines/Wine/Plugins/DOS support/script.js:1 -DOS\ support=DOS support +DOS\ support=Podpora DOSu #: 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. @@ -298,43 +319,55 @@ 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 -Default=Default +#: 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=V\u00fdchoz\u00ed #: 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 +Development=V\u00fdvoj -#: 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 -Disabled=Disabled +#: 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:10 +#: 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=Neaktivn\u00ed -#: 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 +Downloader=Stahova\u010d + +#: Engines/Wine/Engine/Implementation/script.js:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +Downloading\ x86\ runtime...=Downloading x86 runtime... #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 @@ -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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -368,12 +403,13 @@ 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 -Enabled=Enabled +#: 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:10 +#: 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=Aktivov\u00e1no #: i18n/tmp/Applications/Games/Enderal/application.js:1 Enderal=Enderal @@ -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,8 +447,8 @@ 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 -Executable\ {0}\ not\ found\!=Executable {0} not found\! +#: Engines/Wine/Shortcuts/Wine/script.js:153 +Executable\ {0}\ not\ found\!=Spustiteln\u00fd {0} nebyl nalezen\! #: 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\! @@ -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 -Extracting\ {0}...=Extracting {0}... +#: 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}...=Extrahuji {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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +518,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 +543,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 @@ -514,7 +564,10 @@ GOG\ GALAXY\ is\ a\ fully\ optional\ Steam-like\ client\ for\ GOG.com\ to\ insta GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 -Games=Games +Games=Hry + +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -523,7 +576,10 @@ GoG\ Script=GoG Script Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 -Graphics=Graphics +Graphics=Zobrazen\u00ed + +#: 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 +627,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 @@ -609,15 +665,15 @@ In\ a\ time\ of\ chaotic\ upheaval,\ the\ player\ takes\ the\ role\ of\ a\ great 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 +Installer\ Script=Instala\u010dn\u00ed skript -#: Engines/Wine/Engine/Implementation/script.js:48 -Installing\ version\:\ {0}=Installing version\: {0} +#: Engines/Wine/Engine/Implementation/script.js:65 +Installing\ version\:\ {0}=Instaluji verzi\: {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 -Installing\ {0}...=Installing {0}... +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309 +#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 +Installing\ {0}...=Instaluji {0}... #: i18n/tmp/Applications/Internet/category.js:1 Internet=Internet @@ -628,8 +684,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 @@ -651,7 +707,7 @@ Jedi\ Knight\:\ Dark\ Forces\ II\ picks\ up\ where\ the\ award-winning\ Dark\ Fo 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 +Kill\ processes=Zab\u00edt proces #: 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. @@ -660,7 +716,7 @@ Launcher\ for\ Unreal\ Engine,\ Unreal\ Tournament,\ Paragon\ etc.=Launcher for 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. +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 je svi\u017en\u00e1 sout\u011b\u017en\u00ed online hra, v n\u00ed\u017e se rychlost a intenzita boj\u016f z RTS m\u00eds\u00ed s tradi\u010dn\u00edmi RPG prvky. Na \u0159ad\u011b boji\u0161\u0165 v rozli\u010dn\u00fdch hern\u00edch re\u017eimech se zde st\u0159et\u00e1vaj\u00ed dva t\u00fdmy mocn\u00fdch \u0161ampion\u016f, z nich\u017e ka\u017ed\u00fd je jin\u00fd a vy\u017eaduje odli\u0161n\u00fd hern\u00ed styl. D\u00edky neust\u00e1le se rozr\u016fstaj\u00edc\u00edmu seznamu \u0161ampion\u016f, \u010dast\u00fdm aktualizac\u00edm a velice \u017eiv\u00e9 sout\u011b\u017en\u00ed sc\u00e9n\u011b nab\u00edz\u00ed hra League of Legends nekone\u010dnou z\u00e1bavu pro hr\u00e1\u010de v\u0161ech \u00farovn\u00ed. #: i18n/tmp/Applications/Games/Lego Rock Raiders/application.js:1 Lego\ Rock\ Raiders=Lego Rock Raiders @@ -669,26 +725,29 @@ 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 -Local=Local +#: 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=Lok\u00e1ln\u00ed #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local #: (1.0->1.6)/script.js:1 @@ -713,6 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +850,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:17 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 +902,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 @@ -841,17 +913,17 @@ Online\ Installer=Online Installer Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 -Open\ a\ terminal=Open a terminal +Open\ a\ terminal=Otev\u0159it termin\u00e1l -#: 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 @@ -865,7 +937,7 @@ Origin\ is\ EA's\ PC\ games\ portal.=Origin is EA's PC games portal. Orwell\:\ Keeping\ an\ Eye\ On\ You=Orwell\: Keeping an Eye On You #: i18n/tmp/Applications/Other/category.js:1 -Other=Other +Other=Ostatn\u00ed #: i18n/tmp/Applications/Games/Overwatch/application.js:1 Overwatch=Overwatch @@ -876,6 +948,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 +961,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:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1205,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 +1230,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 @@ -1163,24 +1255,23 @@ STAR\ WARS™\:\ The\ Old\ Republic=STAR WARS\u2122\: The Old Republic 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 +Science=V\u011bda #: 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 +#: (1.0->1.6)/script.js:16 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 -Select\ your\ region\:=Select your region\: +#: Applications/Games/League of Legends/Online/script.js:34 +Select\ your\ region\:=Vyberte 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 -Settings\ for\ Wine.=Settings for Wine. +Settings\ for\ Wine.=Nastaven\u00ed 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. @@ -1189,7 +1280,7 @@ Sheathe\ your\ sword,\ draw\ your\ deck,\ and\ get\ ready\ for\ Hearthstone\ -\ Shortcut\ Reader=Shortcut Reader #: i18n/tmp/Engines/Wine/Shortcuts/application.js:2 -Shortcuts\ for\ Wine.=Shortcuts for Wine. +Shortcuts\ for\ Wine.=Z\u00e1stupce pro WINE. #: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You #: Still Shower Dad/application.js:1 @@ -1210,9 +1301,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 +1325,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 +1453,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 +1474,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,12 +1569,12 @@ 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 -The\ Wine\ engine.=The Wine engine. +The\ Wine\ engine.=Modul WINE. #: i18n/tmp/Applications/Games/The Witcher 3: Wild Hunt/application.js:1 The\ Witcher\ 3\:\ Wild\ Hunt=The Witcher 3\: Wild Hunt @@ -1477,7 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 @@ -1558,7 +1671,7 @@ Tomb\ Raider\:\ Underworld=Tomb Raider\: Underworld 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. +Tools\ for\ Wine.=N\u00e1stroje pro WINE. #: i18n/tmp/Applications/Games/Total War Rome II/application.js:1 Total\ War\:\ ROME\ II=Total War\: ROME II @@ -1587,14 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 @@ -1677,38 +1806,47 @@ Windows\ version=Windows version Wine=Wine #: i18n/tmp/Engines/Wine/Engine/application.js:1 -Wine\ Engine=Wine Engine +Wine\ Engine=WINE Modul #: i18n/tmp/Engines/Wine/Plugins/application.js:1 -Wine\ Plugins=Wine Plugins +Wine\ Plugins=WINE Plugin #: i18n/tmp/Engines/Wine/Settings/application.js:1 -Wine\ Settings=Wine Settings +Wine\ Settings=WINE Nastaven\u00ed #: i18n/tmp/Engines/Wine/Shortcuts/Wine/script.js:1 -Wine\ Shortcut=Wine Shortcut +Wine\ Shortcut=WINE Z\u00e1stupce #: i18n/tmp/Engines/Wine/Shortcuts/application.js:1 -Wine\ Shortcuts=Wine Shortcuts +Wine\ Shortcuts=WINE Z\u00e1stupci #: i18n/tmp/Engines/Wine/Tools/application.js:1 -Wine\ Tools=Wine Tools +Wine\ Tools=WINE N\u00e1stroje #: 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 +Wine\ engine=WINE modul #: 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 +Wine\ uninstaller=WINE odinstal\u00e1tor + +#: 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 @@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..ae268f5a63 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:414 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:498 +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:32 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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -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:10 +#: 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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +518,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 +543,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 @@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=Games +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -525,6 +578,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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1205,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 +1230,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,14 +1261,13 @@ Science=Science Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..7f0fb4ed87 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:414 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:498 +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:32 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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -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:10 +#: 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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=Datei-Extraktoren @@ -474,14 +518,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 +543,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 @@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=Spiele +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -525,6 +578,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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=Bitte schlie\u00dfen Sie Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1205,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 +1230,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,14 +1261,13 @@ Science=Lernprogramme Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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:34 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=Wir schreiben das Jahr 2047. Ein gigantischer, nuklearer Feuerball explodiert hoch am Nachthimmel und l\u00e4utet den dramatischen Beginn des Dritten Tiberium Kriegs ein und zeitigt die Wiederkehr des revolution\u00e4rsten RTS-Franchise aller Zeiten. #: Applications/Games/Subnautica Below Zero/Steam/script.js:20 -#: Applications/Games/Subnautica/Steam/script.js:20 +#: Applications/Games/Subnautica/Steam/script.js:22 You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=Sie k\u00f6nnen das Spiel fl\u00fcssiger machen, indem Sie dieser Anleitung folgen\: 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\!=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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..ae268f5a63 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:414 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:498 +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:32 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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -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:10 +#: 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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +518,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 +543,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 @@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=Games +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -525,6 +578,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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1205,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 +1230,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,14 +1261,13 @@ Science=Science Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..722a8b7a6a 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,11 +64,14 @@ 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. #: i18n/tmp/Applications/Accessories/category.js:1 -Accessories=Accessories +Accessories=Accesorios #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/application.js:1 Adobe\ Acrobat\ Reader\ DC=Adobe Acrobat Reader DC @@ -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 @@ -103,10 +109,10 @@ Anno\ 2070=Anno 2070 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 +App\ Resources=Recursos de la App #: i18n/tmp/Utils/Functions/Apps/application.js:1 -App\ Utils=App Utils +App\ Utils=Utilidades de Aplicaciones #: 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\! @@ -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 @@ -166,7 +175,7 @@ Batman™\:\ Arkham\ Origins\ is\ the\ next\ installment\ in\ the\ blockbuster\ 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. +Because\ we\ are\ nostalgic\ people.=Porque somos personas nost\u00e1lgicas. #: 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\! @@ -200,7 +209,7 @@ Black\ Mesa=Black Mesa #: i18n/tmp/Applications/Games/Blizzard app/application.js:1 #: app/Online/script.js:1 -Blizzard\ app=Blizzard app +Blizzard\ app=Aplicaci\u00f3n Blizzard #: i18n/tmp/Applications/Games/Borderlands/application.js:1 Borderlands=Borderlands @@ -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,11 +239,14 @@ 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:414 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 -Checking\ file\ consistency...=Checking file consistency... +#: Engines/Wine/Engine/Implementation/script.js:498 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 +Checking\ file\ consistency...=Comprobando coherencia de archivo... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 ChromaGun=ChromaGun @@ -257,19 +272,19 @@ Command\ and\ Conquer\ -\ Tiberium\ Wars=Command and Conquer - Tiberium Wars 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 +Command\ prompt=Cursor de l\u00ednea de comandos #: i18n/tmp/Engines/Wine/Tools/Configure Wine/script.js:1 -Configure\ Wine=Configure Wine +Configure\ Wine=Configurar 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:32 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 -Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! +#: Engines/Wine/Engine/Object/script.js:190 +Could\ not\ uninstall\ {0}\!=No se pudo desinstalar {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 Crayon\ Physics=Crayon Physics @@ -278,10 +293,16 @@ Crayon\ Physics=Crayon Physics 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 +Custom=Personalizar #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 -Custom\ Installer\ Script=Custom Installer Script +Custom\ Installer\ Script=Script de instalaci\u00f3n personalizado + +#: 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 puede no funcionar correctamente en macOS. Esto depende del soporte de la Api de Metal y el grado de avance de la capa de compatibilidad MoltenVK #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -290,7 +311,7 @@ DC\ Universe\ Online=DC Universe Online DOOM\ (2016)=DOOM (2016) #: i18n/tmp/Engines/Wine/Plugins/DOS support/script.js:1 -DOS\ support=DOS support +DOS\ support=Compatible con DOS #: 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. @@ -298,43 +319,55 @@ 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 -Default=Default +#: 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=Por defecto #: 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 +Development=Desarrollo -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw -DirectDraw\ renderer=DirectDraw renderer +#: 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=Renderizado DirectDraw -#: 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 -Disabled=Disabled +#: 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:10 +#: 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=Desactivado -#: Engines/Wine/QuickScript/Origin Script/script.js:50 -Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed +#: Engines/Wine/QuickScript/Origin Script/script.js:46 +Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Descargar "{0}" en Origen y cerrarlo una vez que "{0}" est\u00e9 instalado #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 -Downloader=Downloader +Downloader=Descargador + +#: Engines/Wine/Engine/Implementation/script.js:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +Downloading\ x86\ runtime...=Downloading x86 runtime... #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 @@ -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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -368,12 +403,13 @@ 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 -Enabled=Enabled +#: 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:10 +#: 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=Habilitado #: i18n/tmp/Applications/Games/Enderal/application.js:1 Enderal=Enderal @@ -384,11 +420,14 @@ 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 -Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} +#: Utils/Functions/Net/Download/script.js:155 +Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error al calcular la suma de verificaci\u00f3n para "{0}". \n\nEsperado \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 Ether\ One\ Redux=Ether One Redux @@ -408,8 +447,8 @@ 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 -Executable\ {0}\ not\ found\!=Executable {0} not found\! +#: Engines/Wine/Shortcuts/Wine/script.js:153 +Executable\ {0}\ not\ found\!=\u00a1No se ha encontrado el ejecutable {0}\! #: 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\! @@ -417,29 +456,28 @@ 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 -Extracting\ {0}...=Extracting {0}... +#: 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}...=Extrayendo {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 -Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. +#: 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 por Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 Far\ Cry=Far Cry @@ -453,20 +491,26 @@ 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:324 +Fetching\ available\ Wine\ versions...=Obteniendo versiones disponibles de Wine... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 -File\ Extractors=File Extractors +File\ Extractors=Extractores de archivo #: i18n/tmp/Utils/Functions/Filesystem/Files/script.js:1 -File\ Utilities=File Utilities +File\ Utilities=Utilidades de archivo #: i18n/tmp/Utils/Functions/Filesystem/application.js:1 -Filesystem\ Utils=Filesystem Utils +Filesystem\ Utils=Utilidades sistema de archivos #: 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 +First\ installment\ of\ The\ Elder\ Scrolls=Primera instalaci\u00f3n de The Elder Scrolls #: i18n/tmp/Applications/Games/FlatOut/application.js:1 FlatOut=FlatOut @@ -474,14 +518,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=Suavizado de fuentes + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Suavizado de fuentes + #: 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. +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.=Durante siglos, el planeta Hyllis ha sido bombardeado por una carrera alien\u00edgena implacable. La incapacidad esc\u00e9ptica de su gobierno para repeler a los invasores, un reportero de acci\u00f3n rebelde llamado Jade se propone capturar la verdad. -#: 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 @@ -491,17 +541,17 @@ From\ a\ single\ cell\ to\ a\ galactic\ deity,\ develop\ your\ creation\ in\ the 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 +Functions=Funciones -#: 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 -GLSL\ support=GLSL support +#: Engines/Wine/Settings/GLSL/script.js:17 +GLSL\ support=Soporte GLSL #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 #: i18n/tmp/Applications/Games/Teenagent/GOG/script.js:1 @@ -514,16 +564,22 @@ GOG\ GALAXY\ is\ a\ fully\ optional\ Steam-like\ client\ for\ GOG.com\ to\ insta GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 -Games=Games +Games=Juegos + +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 -GoG\ Script=GoG Script +GoG\ Script=Script GoG #: i18n/tmp/Applications/Games/Goodbye Deponia/application.js:1 Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 -Graphics=Graphics +Graphics=Gr\u00e1ficos + +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Escala de grises #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +627,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 @@ -584,7 +640,7 @@ If\ you\ have\ sound\ issues,\ please\ edit\ the\ BIOEngine.ini\ and/or\ BaseEng 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. +ImgBurn\ is\ a\ lightweight\ CD\ /\ DVD\ /\ HD\ DVD\ /\ Blu-ray\ burning\ application.=ImgBurn es una aplicaci\u00f3n de grabaci\u00f3n de CD / DVD / HD / Blu-ray. #: i18n/tmp/Applications/Games/Age of Empires III: Complete #: Collection/application.js:2 @@ -609,15 +665,15 @@ In\ a\ time\ of\ chaotic\ upheaval,\ the\ player\ takes\ the\ role\ of\ a\ great 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 +Installer\ Script=Script de instalaci\u00f3n -#: Engines/Wine/Engine/Implementation/script.js:48 -Installing\ version\:\ {0}=Installing version\: {0} +#: Engines/Wine/Engine/Implementation/script.js:65 +Installing\ version\:\ {0}=Instalando versi\u00f3n\: {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 -Installing\ {0}...=Installing {0}... +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309 +#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 +Installing\ {0}...=Instalando {0}... #: i18n/tmp/Applications/Internet/category.js:1 Internet=Internet @@ -628,12 +684,12 @@ 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 -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/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 es un navegador web antiguo.
Puede que lo necesites si deseas probar cierta compatibilidad de un sitio web, aunque no deber\u00edas usarlo para navegar. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 -Internet\ Resource=Internet Resource +Internet\ Resource=Recursos de Internet #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:1 @@ -651,10 +707,10 @@ Jedi\ Knight\:\ Dark\ Forces\ II\ picks\ up\ where\ the\ award-winning\ Dark\ Fo 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 +Kill\ processes=Terminar procesos #: 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. +Launcher\ for\ Unreal\ Engine,\ Unreal\ Tournament,\ Paragon\ etc.=Lanzador para Unreal Engine, Unreal Tournament, Paragon etc. #: i18n/tmp/Applications/Games/League of Legends/application.js:1 League\ of\ Legends=League of Legends @@ -669,25 +725,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 @@ -702,10 +761,10 @@ Local\ (Demo)=Local (Demo) Local\ (Legacy)=Local (Legacy) #: i18n/tmp/Applications/Custom/LocalInstaller/application.js:1 -Local\ Installer=Local Installer +Local\ Installer=Instalador local #: i18n/tmp/Engines/Wine/QuickScript/Local Installer Script/script.js:1 -Local\ Installer\ Script=Local Installer Script +Local\ Installer\ Script=Script de instalaci\u00f3n local #: 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. @@ -713,6 +772,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 @@ -729,13 +794,13 @@ Michel\ Ancel,\ the\ celebrated\ creator\ of\ Rayman®,\ Beyond\ Good\ &\ Evil® 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. +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 es una versi\u00f3n de Microsoft Office, una suite de productividad para Microsoft Windows, que es el sucesor de 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. +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 es una versi\u00f3n de Microsoft Office, una suite de productividad para Microsoft Windows. #: i18n/tmp/Applications/Graphics/Microsoft Paint/application.js:1 Microsoft\ Paint=Microsoft Paint @@ -744,12 +809,12 @@ Microsoft\ Paint=Microsoft Paint 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\! +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\!=M\u00e1s caos, m\u00e1s destrucci\u00f3n, m\u00e1s Rufus. \u00a1No uno, no dos, sino tres Rufus causan todo tipo de alocado caos en la esperada aventura de la comedia Goodbye Deponia\! #: 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,11 +826,11 @@ 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 -Net\ Utils=Net Utils +Net\ Utils=Utilidades de red #: 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\! @@ -773,6 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No se especific\u00f3 ning\u00fan modo de suavizado de fuente\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -780,89 +848,96 @@ Notepad++=Notepad++ 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 +Office=Oficina -#: 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:17 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 -Online=Online +#: 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 l\u00ednea #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online #: (Demo)/script.js:1 -Online\ (Demo)=Online (Demo) +Online\ (Demo)=En l\u00ednea (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 -Online\ (Legacy)=Online (Legacy) +Online\ (Legacy)=En l\u00ednea (Legacy) + +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=En l\u00ednea (Prueba) #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 -Online\ Installer=Online Installer +Online\ Installer=Instalador en l\u00ednea #: i18n/tmp/Engines/Wine/QuickScript/Online Installer Script/script.js:1 -Online\ Installer\ Script=Online Installer Script +Online\ Installer\ Script=Script de instalaci\u00f3n en l\u00ednea #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 -Open\ a\ terminal=Open a terminal +Open\ a\ terminal=Abrir una 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 #: i18n/tmp/Engines/Wine/QuickScript/Origin Script/script.js:1 -Origin\ Script=Origin Script +Origin\ Script=Script de Origin #: i18n/tmp/Applications/Games/Origin/application.js:2 -Origin\ is\ EA's\ PC\ games\ portal.=Origin is EA's PC games portal. +Origin\ is\ EA's\ PC\ games\ portal.=Origin es el portal de juegos de PC de EA. #: 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 +Other=Otros #: i18n/tmp/Applications/Games/Overwatch/application.js:1 Overwatch=Overwatch @@ -873,6 +948,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,142 +961,157 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 -Please\ close\ Uplay.=Please close Uplay. +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Instalador simple + +#: Engines/Wine/QuickScript/Uplay Script/script.js:110 +Please\ close\ Uplay.=Por favor cierre 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. +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 +Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Por favor, aseg\u00farese de que winbind est\u00e1 instalado antes de continuar. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 -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. +#: 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.=Por favor aseg\u00farese de que tiene los \u00faltimos controladores (415.25 m\u00ednimo para NVIDIA y mesa 19 para AMD) o de lo contrario este juego no funcionar\u00e1. -#: Engines/Wine/Verbs/DXVK/script.js:21 -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/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.=Por favor aseg\u00farese de que tiene los \u00faltimos controladores (418.30 m\u00ednimo para NVIDIA y mesa 19 para AMD) o de lo contrario D9VK podr\u00eda no funcionar correctamente. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: 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.=Por favor aseg\u00farese de que tiene los \u00faltimos controladores (418.30 m\u00ednimo para NVIDIA y la mesa 19 para AMD) o de lo contrario DXVK no puede funcionar correctamente. + +#: 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 -Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. +#: Engines/Wine/QuickScript/Installer Script/script.js:22 +Please\ enter\ the\ name\ of\ your\ application.=Por favor, introduzca el nombre de su aplicaci\u00f3n. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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 -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/GoG Script/script.js:44 +Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Por favor, inicia sesi\u00f3n en tu cuenta de GoG.com para que podamos descargar el juego para ti\: + +#: Engines/Wine/QuickScript/Zip Script/script.js:44 +Please\ select\ the\ .zip\ file.=Por favor, seleccione el archivo .zip. -#: Engines/Wine/QuickScript/Zip Script/script.js:45 -Please\ select\ the\ .zip\ file.=Please select the .zip file. +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 +Please\ select\ the\ SP3\ file.=Por favor, seleccione el archivo SP3. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 -Please\ select\ the\ SP3\ file.=Please select the SP3 file. +#: Engines/Wine/Engine/Implementation/script.js:526 +Please\ select\ the\ distribution\ of\ wine.=Por favor, seleccione la distribuci\u00f3n de wine. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:36 -Please\ select\ the\ download\ URL.=Please select the download URL. +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 +Please\ select\ the\ download\ URL.=Por favor, seleccione la URL de descarga. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 -Please\ select\ the\ executable.=Please select the executable. +#: Engines/Wine/QuickScript/Installer Script/script.js:93 +Please\ select\ the\ executable.=Por favor, seleccione el ejecutable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:27 -Please\ select\ the\ installation\ file.=Please select the installation file. +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 +Please\ select\ the\ installation\ file.=Por favor, seleccione el archivo de instalaci\u00f3n. -#: 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. +#: Applications/Office/ElsterFormular/Online/script.js:12 +Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Por favor, seleccione el archivo de instalaci\u00f3n.\nPuede descargarlo desde 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 -Please\ select\ the\ version.=Please select the version. +#: Engines/Wine/Engine/Implementation/script.js:528 +Please\ select\ the\ version\ of\ wine.=Por favor, seleccione la versi\u00f3n de wine. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 -Please\ select\ the\ wine\ architecture.=Please select the wine architecture. +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 +Please\ select\ the\ version.=Por favor, seleccione la versi\u00f3n. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 -Please\ select\ the\ wine\ distribution.=Please select the wine distribution. +#: Engines/Wine/QuickScript/Installer Script/script.js:36 +Please\ select\ the\ wine\ architecture.=Por favor, seleccione la arquitectura de wine. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 -Please\ select\ the\ wine\ version.=Please select the wine version. +#: Engines/Wine/QuickScript/Installer Script/script.js:52 +Please\ select\ the\ wine\ distribution.=Por favor, seleccione la distribuci\u00f3n de wine. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 +Please\ select\ the\ wine\ version.=Por favor, seleccione la versi\u00f3n de wine. + +#: Engines/Wine/QuickScript/Steam Script/script.js:174 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:102 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 -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 -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 -Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... - -#: Engines/Wine/Engine/Object/script.js:191 -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 -Please\ wait...=Please wait... +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 +Please\ wait\ while\ {0}\ is\ downloaded...=Por favor, espere mientras {0} se descarga... + +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 +Please\ wait\ while\ {0}\ is\ extracted...=Por favor, espere mientras {0} se extrae... + +#: Engines/Wine/Verbs/dotnet472/script.js:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 +Please\ wait\ while\ {0}\ is\ installed...=Por favor, espere mientras {0} est\u00e1 instal\u00e1ndose... + +#: Engines/Wine/Engine/Object/script.js:185 +Please\ wait\ while\ {0}\ is\ uninstalled...=Por favor, espere mientras {0} se desinstala... + +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 +Please\ wait...=Por favor espere... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 -Plugins\ for\ Wine.=Plugins for Wine. +Plugins\ for\ Wine.=Complementos para Wine. -#: Engines/Wine/Engine/Object/script.js:327 -Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits +#: Engines/Wine/Engine/Object/script.js:340 +Prefix\ seems\ to\ be\ 32bits=El prefijo parece ser de 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 Prehistorik=Prehistorik @@ -1052,11 +1145,14 @@ Quick\ Script=Quick Script QuickScript=QuickScript #: i18n/tmp/Engines/Wine/QuickScript/application.js:2 -QuickScripts\ for\ Wine.=QuickScripts for Wine. +QuickScripts\ for\ Wine.=QuickScripts para 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,23 +1172,20 @@ 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 +Registry\ Editor=Editor de registro #: 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 +Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Revive Half-Life en esta recreaci\u00f3n de gran prestigio y hecha por los fans #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 -Remove\ Mono=Remove Mono +Remove\ Mono=Eliminar 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 -Repair\ virtual\ drive=Repair virtual drive +Repair\ virtual\ drive=Reparar unidad virtual #: i18n/tmp/Applications/Games/Resident Evil 3/application.js:1 Resident\ Evil\ 3=Resident Evil 3 @@ -1103,8 +1196,8 @@ 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 -Retina\ support=Retina support +#: Engines/Wine/Settings/hdpi/script.js:14 +Retina\ support=Compatible con Retina #: 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? @@ -1112,6 +1205,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 +1230,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 @@ -1160,24 +1255,23 @@ STAR\ WARS™\:\ The\ Old\ Republic=STAR WARS\u2122\: The Old Republic 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 +Science=Ciencias #: 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). +#: (1.0->1.6)/script.js:16 +Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Seleccione su regi\u00f3n para el parche (1.0 a 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 -Select\ your\ region\:=Select your region\: +#: Applications/Games/League of Legends/Online/script.js:34 +Select\ your\ region\:=Seleccione su regi\u00f3n\: -#: 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 -Settings\ for\ Wine.=Settings for Wine. +Settings\ for\ Wine.=Configuraci\u00f3n para 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. @@ -1186,7 +1280,7 @@ Sheathe\ your\ sword,\ draw\ your\ deck,\ and\ get\ ready\ for\ Hearthstone\ -\ Shortcut\ Reader=Shortcut Reader #: i18n/tmp/Engines/Wine/Shortcuts/application.js:2 -Shortcuts\ for\ Wine.=Shortcuts for Wine. +Shortcuts\ for\ Wine.=Atajos para Wine. #: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You #: Still Shower Dad/application.js:1 @@ -1207,9 +1301,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 +1325,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 @@ -1340,12 +1448,12 @@ Steam\ (GOTY)=Steam (GOTY) Steam\ (Gold)=Steam (Gold) #: i18n/tmp/Engines/Wine/QuickScript/Steam Script/script.js:1 -Steam\ Script=Steam Script +Steam\ Script=Script de 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 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 +1474,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=Utilidades del sistema + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1382,7 +1493,7 @@ Take\ control\ of\ your\ own\ starship\ in\ a\ cutthroat\ galaxy.\ Elite\ Danger 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 +Task\ manager=Gestor de tareas #: i18n/tmp/Applications/Internet/TeamSpeak 3/application.js:1 TeamSpeak\ 3=TeamSpeak 3 @@ -1458,12 +1569,12 @@ 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 -The\ Wine\ engine.=The Wine engine. +The\ Wine\ engine.=El motor Wine. #: i18n/tmp/Applications/Games/The Witcher 3: Wild Hunt/application.js:1 The\ Witcher\ 3\:\ Wild\ Hunt=The Witcher 3\: Wild Hunt @@ -1474,7 +1585,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 +1594,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 +1612,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 -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 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=Este juego requiere winebind (para Ubuntu) o samba y libwbclient/lib32-libwbclient (para Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 +This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=Este paquete ({0}) no funciona actualmente. \u00a1\u00dasalo s\u00f3lo para probar\! + +#: Engines/Wine/Verbs/dotnet40/script.js:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 @@ -1555,7 +1671,7 @@ Tomb\ Raider\:\ Underworld=Tomb Raider\: Underworld 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. +Tools\ for\ Wine.=Herramientas para Wine. #: i18n/tmp/Applications/Games/Total War Rome II/application.js:1 Total\ War\:\ ROME\ II=Total War\: ROME II @@ -1584,45 +1700,61 @@ 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:42 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Modo de suavizado de fuentes desconocido\: "{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 -Uplay\ Script=Uplay Script +Uplay\ Script=Script de Uplay #: i18n/tmp/Applications/Games/Uplay/application.js:2 -Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay es el portal de juegos de PC de 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:44 +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).=El uso de Gallium 9 requiere tener un controlador que soporte el rastreador de estado Gallium 9, as\u00ed como d3dapater9.so instalado (ej\: paquete libd3d9adapter-mesa). Por favor aseg\u00farese de que est\u00e9 instalado (sea en sus versiones de 32 y 64 bits). #: i18n/tmp/Utils/Functions/Apps/application.js:2 -Utils\ for\ apps.=Utils for apps. +Utils\ for\ apps.=Utilidades para aplicaciones. #: i18n/tmp/Utils/Functions/Filesystem/application.js:2 -Utils\ for\ file\ system\ interaction.=Utils for file system interaction. +Utils\ for\ file\ system\ interaction.=Utilidades para la interacci\u00f3n del sistema de archivos. #: i18n/tmp/Utils/Functions/Net/application.js:2 -Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +Utils\ for\ interaction\ with\ the\ Internet.=Utilidades para la interacci\u00f3n con Internet. + +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utilidades para la interacci\u00f3n del sistema. #: 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 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. +Verbs\ for\ Wine.=Verbs para Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 -Video\ memory\ size=Video memory size +#: Engines/Wine/Settings/video memory size/script.js:17 +Video\ memory\ size=Tama\u00f1o de memoria de v\u00eddeo #: 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. @@ -1645,18 +1777,18 @@ 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 -Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82 +Which\ language\ version\ would\ you\ like\ to\ install?=\u00bfQu\u00e9 versi\u00f3n de idioma desea instalar? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 Wildlife\ Park\ 2=Wildlife Park 2 @@ -1665,47 +1797,56 @@ Wildlife\ Park\ 2=Wildlife Park 2 Windows\ XP\ Service\ Pack\ 3=Windows XP Service Pack 3 #: i18n/tmp/Engines/Wine/Tools/Reboot Wine/script.js:1 -Windows\ reboot=Windows reboot +Windows\ reboot=Reinicio de Windows #: i18n/tmp/Engines/Wine/Plugins/Windows version/script.js:1 -Windows\ version=Windows version +Windows\ version=Versi\u00f3n de Windows #: i18n/tmp/Engines/Wine/category.js:1 Wine=Wine #: i18n/tmp/Engines/Wine/Engine/application.js:1 -Wine\ Engine=Wine Engine +Wine\ Engine=Motor de Wine #: i18n/tmp/Engines/Wine/Plugins/application.js:1 -Wine\ Plugins=Wine Plugins +Wine\ Plugins=Complementos de Wine #: i18n/tmp/Engines/Wine/Settings/application.js:1 -Wine\ Settings=Wine Settings +Wine\ Settings=Ajustes de Wine #: i18n/tmp/Engines/Wine/Shortcuts/Wine/script.js:1 -Wine\ Shortcut=Wine Shortcut +Wine\ Shortcut=Acceso directo a Wine #: i18n/tmp/Engines/Wine/Shortcuts/application.js:1 -Wine\ Shortcuts=Wine Shortcuts +Wine\ Shortcuts=Atajos de Wine #: i18n/tmp/Engines/Wine/Tools/application.js:1 -Wine\ Tools=Wine Tools +Wine\ Tools=Herramientas de Wine #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Constantes Wine + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 -Wine\ engine=Wine engine +Wine\ engine=Motor de Wine #: i18n/tmp/Engines/Wine/Engine/Implementation/script.js:1 -Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation of Java interface) +Wine\ engine\ (implementation\ of\ Java\ interface)=Motor de Wine (implementaci\u00f3n de interfaz Java) #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 -Wine\ uninstaller=Wine uninstaller +Wine\ uninstaller=Desinstalador de Wine + +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Versiones Wine #: 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 @@ -1732,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=Debe instalar libjpeg62 y libjpeg62-dev o, de lo contrario, las miniaturas en el men\u00fa de Juego Nuego se mostrar\u00e1n como rect\u00e1ngulos en color magenta. + #: 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. @@ -1748,7 +1892,7 @@ You\ wake\ up,\ alone,\ on\ a\ strange\ island\ full\ of\ puzzles\ that\ will\ c 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 +Zip\ Script=Script de Zip #: i18n/tmp/Engines/Wine/Settings/always offscreen/script.js:1 always\ offscreen=always offscreen @@ -1756,6 +1900,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 +1930,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 -fonts=fonts +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 +fonts=fuentes + +#: 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 @@ -1800,7 +1953,7 @@ luna=luna mIRC=mIRC #: i18n/tmp/Engines/Wine/Plugins/managed/script.js:1 -managed=managed +managed=administrado #: i18n/tmp/Engines/Wine/Verbs/mfc42/script.js:1 mfc42=mfc42 @@ -1814,12 +1967,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,17 +1997,17 @@ 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 regedit=regedit #: i18n/tmp/Engines/Wine/Plugins/register font/script.js:1 -register\ font=register font +register\ font=registrar fuente #: i18n/tmp/Engines/Wine/Plugins/regsvr32/script.js:1 regsvr32=regsvr32 @@ -1860,14 +2022,11 @@ sandbox=sandbox secur32=secur32 #: i18n/tmp/Engines/Wine/Plugins/sound driver/script.js:1 -sound\ driver=sound driver +sound\ driver=controlador de sonido #: 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,11 +2060,15 @@ 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 +video\ memory\ size=tama\u00f1o de memoria de v\u00eddeo -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 -virtual\ desktop=virtual desktop +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual +virtual\ desktop=escritorio virtual #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 vulkanSDK=vulkanSDK @@ -1913,11 +2076,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 -{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" +#: Engines/Wine/Verbs/dotnet452/script.js:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 +{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} aplicaciones pueden tener problemas cuando la versi\u00f3n de Windows no est\u00e1 configurada para "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..ae268f5a63 --- /dev/null +++ b/i18n/Messages_fa.properties @@ -0,0 +1,2085 @@ +#: 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:414 +Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. + +#: Engines/Wine/Engine/Implementation/script.js:498 +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:32 +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: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 + +#: 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: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 +#: 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:10 +#: 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: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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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:10 +#: 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: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: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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + +#: 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/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + +#: 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: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 +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:65 +Installing\ version\:\ {0}=Installing version\: {0} + +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309 +#: 6.0/Online/script.js:151 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 +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:50 +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:17 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 +#: 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:110 +Please\ close\ Uplay.=Please close Uplay. + +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 +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: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: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:139 +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: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:74 +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:44 +Please\ select\ the\ .zip\ file.=Please select the .zip file. + +#: 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:526 +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:93 +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:12 +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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 +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:174 +Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... + +#: Engines/Wine/QuickScript/Uplay Script/script.js:102 +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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 +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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 +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? + +#: 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:14 +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:16 +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: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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 +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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 +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:42 +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:44 +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: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 +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: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: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:82 +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:22 +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:49 +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: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 + +#: 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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 +{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..ae268f5a63 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:414 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:498 +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:32 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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -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:10 +#: 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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +518,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 +543,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 @@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=Games +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -525,6 +578,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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1205,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 +1230,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,14 +1261,13 @@ Science=Science Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..e8c570b158 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:414 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:498 +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:32 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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -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:10 +#: 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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=Extracteurs de fichier @@ -474,14 +518,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 +543,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 @@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=Jeux +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=Script GoG @@ -525,6 +578,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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,46 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=Veuillez fermer Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1112,6 +1205,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 +1230,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 @@ -1166,14 +1261,13 @@ Science=Science Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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:34 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1732,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=Vous commandez les arm\u00e9es du GDI ou du NOD, le sort de la Terre est dans la balance. #: Applications/Games/Subnautica Below Zero/Steam/script.js:20 -#: Applications/Games/Subnautica/Steam/script.js:20 +#: Applications/Games/Subnautica/Steam/script.js:22 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\!=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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..ae268f5a63 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:414 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:498 +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:32 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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -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:10 +#: 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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +518,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 +543,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 @@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=Games +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -525,6 +578,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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1205,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 +1230,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,14 +1261,13 @@ Science=Science Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..2d1a29217f 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:414 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:498 +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:32 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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -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:10 +#: 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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=F\u00e1jl kicsomagol\u00e1sok @@ -474,14 +518,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 +543,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 @@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=J\u00e1t\u00e9k +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -525,6 +578,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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=A folytat\u00e1shoz z\u00e1rja be az Uplay programot. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1205,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 +1230,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,14 +1261,13 @@ Science=Tudom\u00e1ny Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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:34 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..106c9ff00e 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 @@ -34,13 +37,13 @@ 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. +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 \u00e8 un archiviatore di file con un rapporto di compressione elevato. 7-zip \u00e8 software open source. La maggior parte del codice sorgente \u00e8 sotto la licenza GNU LGPL. Il codice unRAR \u00e8 sotto una licenza mista\: GNU LGPL + restrizioni unRAR. \u00c8 possibile utilizzare 7-Zip su qualsiasi computer, tra cui un computer in un'organizzazione commerciale. Non devi registrarsi o pagare per 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. +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.=Introduzione
PhotoFiltre Studio \u00e8 un programma di ritocco immagine completa. Ti permette di fare regolazioni semplici o avanzati a un'immagine e applicare una vasta gamma di filtri su di esso. \u00c8 semplice e intuitivo da usare, ed ha un facile curva di apprendimento. La barra degli strumenti, che vi d\u00e0 accesso ai filtri standard con pochi clic, offre PhotoFiltre Studio un aspetto robusto. PhotoFiltre Studio \u00e8 anche strato manager (con canale alfa) pennelli, avanzati ugelli (o tubi), occhi rossi correttore, modulo batch e molti altri potenti strumenti. #: 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.

@@ -61,14 +64,17 @@ 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. #: i18n/tmp/Applications/Accessories/category.js:1 -Accessories=Accessories +Accessories=Accessori #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/application.js:1 -Adobe\ Acrobat\ Reader\ DC=Adobe Acrobat Reader DC +Adobe\ Acrobat\ Reader\ DC=Lettore Adobe Acrobat 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. @@ -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 @@ -103,7 +109,7 @@ Anno\ 2070=Anno 2070 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 +App\ Resources=Risorse app #: i18n/tmp/Utils/Functions/Apps/application.js:1 App\ Utils=App Utils @@ -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 @@ -154,7 +163,7 @@ Batman\:\ Arkham\ City\ builds\ upon\ the\ intense,\ atmospheric\ foundation\ of Batman™\:\ Arkham\ Asylum=Batman\u2122\: Arkham Asylum #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:1 -Batman™\:\ Arkham\ City=Batman\u2122\: Arkham City +Batman™\:\ Arkham\ City=Batman\u2122\: Arkham Asylum #: i18n/tmp/Applications/Games/Batman™: Arkham Origins/application.js:1 Batman™\:\ Arkham\ Origins=Batman\u2122\: Arkham Origins @@ -175,7 +184,7 @@ Become\ a\ zoo\ manager\ and\ take\ good\ care\ of\ your\ animals.\ Wildlife\ Pa 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. +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.=Sotto Zero \u00e8 un gioco di avventura subacquea ambientato in un mondo alieno. Un nuovo capitolo nell'universo di Subnautica \u00e8 attualmente in sviluppo di mondi sconosciuti.
ritorno al pianeta 4546B
immersioni in una gelida avventura subacquea. Sotto Zero \u00e8 situato in una regione artica del pianeta 4546B. Come uno scienziato \u00e8 inviato ad una stazione di ricerca sulla superficie del pianeta, hanno il compito di studiare i manufatti alieni. La stazione spaziale di Vesper orbita alta sopra voi, invio forniture, istruzioni, e raccogliendo campioni si avvia dalla superficie. Quando il disastro colpisce la stazione di ricerca, si deve improvvisare per sopravvivere\: costruire habitat, lo scavenging per le risorse, a caccia di cibo e attrezzature del mestiere.
Esplora nuovi biomi
nuotate sotto l'illuminata di blu, inarcando la crescita di Twisty ponti. Navigare infidi lastroni di ghiaccio sulla superficie dell'oceano. Inerpicano cime innevate e avventurarsi in grotte ghiacciate. Manovra tra bocche termali fumanti. Sotto Zero presenta ambienti completamente nuovi per poter sopravvivere, studiare ed esplorare. Scoprire nuove forme di vita in profondit\u00e0 ghiacciate del 4546B. Nuotare attraverso il gigante Titan Holefish, fuga dallo squalo bruta aggressivo e visitare il Pengwings adorabile. Alcuni residenti dell'oceano ghiacciato vi aiuter\u00e0, e alcuni potrebbero tentare di farti del male. #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:1 Beyond\ Good\ and\ Evil™=Beyond Good and Evil\u2122 @@ -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:414 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:498 +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 @@ -260,15 +275,15 @@ Command\ or\ corrupt\ an\ entire\ galaxy\ in\ the\ definitive\ Star\ Wars\ strat Command\ prompt=Command prompt #: i18n/tmp/Engines/Wine/Tools/Configure Wine/script.js:1 -Configure\ Wine=Configure Wine +Configure\ Wine=Configura 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:32 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 @@ -278,11 +293,17 @@ Crayon\ Physics=Crayon Physics 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 +Custom=Personalizzato #: 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 @@ -290,7 +311,7 @@ DC\ Universe\ Online=DC Universe Online DOOM\ (2016)=DOOM (2016) #: i18n/tmp/Engines/Wine/Plugins/DOS support/script.js:1 -DOS\ support=DOS support +DOS\ support=Supporto DOS #: 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. @@ -298,18 +319,20 @@ 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 -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 -Default=Default +#: 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 potrebbe non funzionare correttamente su macOS. Questo dipende dal supporto api e dall'avanzamento e dal livello di compatibilit\u00e0 MoltenVK + +#: 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=Predefinito #: 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. @@ -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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -368,12 +403,13 @@ 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 -Enabled=Enabled +#: 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:10 +#: 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=Abilitato #: i18n/tmp/Applications/Games/Enderal/application.js:1 Enderal=Enderal @@ -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,11 +491,17 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Recupero elenco versioni... + #: 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 +File\ Utilities=Utilit\u00e0 file #: i18n/tmp/Utils/Functions/Filesystem/application.js:1 Filesystem\ Utils=Filesystem Utils @@ -474,14 +518,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 -Force=Force +#: Engines/Wine/Settings/mouse warp override/script.js:11 +Force=Forza -#: 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,15 +543,15 @@ 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 -GLSL\ support=GLSL support +#: Engines/Wine/Settings/GLSL/script.js:17 +GLSL\ support=Supporto GLSL #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 #: i18n/tmp/Applications/Games/Teenagent/GOG/script.js:1 @@ -514,7 +564,10 @@ GOG\ GALAXY\ is\ a\ fully\ optional\ Steam-like\ client\ for\ GOG.com\ to\ insta GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 -Games=Games +Games=Giochi + +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Rilasci di Github #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -523,7 +576,10 @@ GoG\ Script=GoG Script Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 -Graphics=Graphics +Graphics=Grafica + +#: 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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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 -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/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.=Assicurati di avere gli ultimi driver (418.30 minimo per NVIDIA e mesa 19 per AMD) o altrimenti DXVK potrebbe non funzionare correttamente. -#: 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +Please\ select\ the\ distribution\ of\ wine.=Si prega di selezionare la distribuzione di 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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Si prega di selezionare la versione di wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 @@ -1089,9 +1179,9 @@ Registry\ Editor=Registry Editor 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 +Remove\ Mono=Rimuovi 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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1205,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 +1230,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,14 +1261,13 @@ Science=Science Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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 +1301,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 +1325,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 +1453,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 @@ -1361,7 +1466,7 @@ Styx\:\ Shards\ of\ Darkness=Styx\: Shards of Darkness Subnautica=Subnautica #: i18n/tmp/Applications/Games/Subnautica Below Zero/application.js:1 -Subnautica\ Below\ Zero=Subnautica Below Zero +Subnautica\ Below\ Zero=Subnautica Sotto 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. @@ -1369,6 +1474,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=Utilit\u00e0 di Sistema + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1461,8 +1569,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 +1585,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 +1594,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,26 +1612,29 @@ 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 -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 -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. +#: 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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 +This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=Questo pacchetto ({0}) non funziona attualmente. Utilizzarlo solo per il test\! + +#: Engines/Wine/Verbs/dotnet40/script.js:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 +This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=Questo pacchetto ({0}) potrebbe non funzionare completamente su un''installazione a 64 bit. I prefissi a 32 bit potrebbero funzionare meglio. #: 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. @@ -1547,8 +1661,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 +1700,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:42 +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 +1719,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:44 +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,11 +1738,14 @@ 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.=Utilit\u00e0 per l'interazione del sistema. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 -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 +#: 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 potrebbe non funzionare correttamente su macOS. Questo dipende dal supporto api e dall'avanzamento dello strato di compatibilit\u00e0 MoltenVK #: 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\! @@ -1624,7 +1753,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 +1777,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:82 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 +1826,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=Costanti di Wine + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1706,9 +1838,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=Versioni di Wine + #: 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 @@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..ae268f5a63 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:414 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:498 +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:32 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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -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:10 +#: 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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +518,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 +543,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 @@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=Games +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -525,6 +578,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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,46 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1112,6 +1205,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 +1230,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 @@ -1166,14 +1261,13 @@ Science=Science Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1732,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..ae268f5a63 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:414 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:498 +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:32 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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -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:10 +#: 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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +518,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 +543,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 @@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=Games +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -525,6 +578,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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1205,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 +1230,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,14 +1261,13 @@ Science=Science Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..ae268f5a63 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:414 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:498 +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:32 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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -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:10 +#: 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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +518,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 +543,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 @@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=Games +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -525,6 +578,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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1205,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 +1230,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,14 +1261,13 @@ Science=Science Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..ae268f5a63 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:414 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:498 +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:32 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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -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:10 +#: 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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +518,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 +543,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 @@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=Games +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -525,6 +578,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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,46 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1112,6 +1205,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 +1230,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 @@ -1166,14 +1261,13 @@ Science=Science Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1732,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..ae268f5a63 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:414 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:498 +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:32 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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -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:10 +#: 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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +518,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 +543,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 @@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=Games +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -525,6 +578,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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1205,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 +1230,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,14 +1261,13 @@ Science=Science Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..ae268f5a63 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:414 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:498 +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:32 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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -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:10 +#: 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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +518,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 +543,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 @@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=Games +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -525,6 +578,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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,46 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1112,6 +1205,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 +1230,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 @@ -1166,14 +1261,13 @@ Science=Science Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1732,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..ae268f5a63 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:414 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:498 +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:32 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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -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:10 +#: 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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +518,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 +543,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 @@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=Games +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -525,6 +578,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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,46 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1112,6 +1205,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 +1230,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 @@ -1166,14 +1261,13 @@ Science=Science Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1732,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..ae268f5a63 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:414 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:498 +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:32 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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -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:10 +#: 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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +518,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 +543,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 @@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=Games +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -525,6 +578,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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,46 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1112,6 +1205,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 +1230,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 @@ -1166,14 +1261,13 @@ Science=Science Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1732,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..ae268f5a63 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:414 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:498 +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:32 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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -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:10 +#: 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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +518,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 +543,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 @@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=Games +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -525,6 +578,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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,46 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1112,6 +1205,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 +1230,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 @@ -1166,14 +1261,13 @@ Science=Science Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1732,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..ae268f5a63 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:414 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:498 +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:32 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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -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:10 +#: 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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +518,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 +543,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 @@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=Games +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -525,6 +578,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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,46 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1112,6 +1205,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 +1230,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 @@ -1166,14 +1261,13 @@ Science=Science Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1732,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..ae268f5a63 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:414 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:498 +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:32 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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -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:10 +#: 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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +518,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 +543,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 @@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=Games +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -525,6 +578,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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,46 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1112,6 +1205,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 +1230,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 @@ -1166,14 +1261,13 @@ Science=Science Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1732,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..ae268f5a63 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:414 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:498 +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:32 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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -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:10 +#: 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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +518,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 +543,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 @@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=Games +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -525,6 +578,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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,46 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1112,6 +1205,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 +1230,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 @@ -1166,14 +1261,13 @@ Science=Science Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1732,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..ae268f5a63 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:414 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:498 +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:32 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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -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:10 +#: 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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +518,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 +543,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 @@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=Games +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -525,6 +578,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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1205,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 +1230,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,14 +1261,13 @@ Science=Science Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..ae268f5a63 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:414 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:498 +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:32 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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -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:10 +#: 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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +518,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 +543,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 @@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=Games +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -525,6 +578,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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,46 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1112,6 +1205,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 +1230,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 @@ -1166,14 +1261,13 @@ Science=Science Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1732,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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..ae268f5a63 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:414 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:498 +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:32 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:10 +#: 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:223 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:133 +#: Engines/Wine/Engine/Implementation/script.js:164 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:254 +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 -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). +#: Applications/Games/Space Engineers/Steam/script.js:54 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ 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 multithreading, 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. -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: Applications/Games/Subnautica/Steam/script.js:36 +Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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 @@ -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:10 +#: 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,12 @@ 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:324 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: Utils/Functions/Net/GithubReleases/script.js:20 +Fetching\ versions\ list...=Fetching versions list... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +518,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 +543,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 @@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy #: i18n/tmp/Applications/Games/category.js:1 Games=Games +#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1 +Github\ Releases=Github Releases + #: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 GoG\ Script=GoG Script @@ -525,6 +578,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 +627,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 +667,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:65 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:309 +#: 6.0/Online/script.js:151 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 +684,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 +725,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 +772,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 +814,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 +826,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 +838,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:50 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,46 +850,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:17 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 +902,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 +915,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 +948,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 +961,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:110 Please\ close\ Uplay.=Please close Uplay. -#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +#: Engines/Wine/QuickScript/Uplay Script/script.js:71 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:139 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 +#: Engines/Wine/QuickScript/Uplay Script/script.js:74 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:526 +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 +#: Applications/Office/ElsterFormular/Online/script.js:12 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:528 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80 +#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103 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:174 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:102 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:44 +#: 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:42 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:59 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:44 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:44 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:44 +#: 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:44 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:48 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:52 +#: Engines/Wine/Verbs/msxml6/script.js:43 +#: Engines/Wine/Verbs/msxml6/script.js:56 +#: 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:38 +#: Engines/Wine/Verbs/dotnet20/script.js:57 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:147 +#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:48 +#: Engines/Wine/Verbs/dotnet46/script.js:48 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:48 +#: Engines/Wine/Verbs/dotnet461/script.js:48 +#: Engines/Wine/Verbs/dotnet40/script.js:52 +#: Engines/Wine/Verbs/dotnet40/script.js:58 +#: Engines/Wine/Verbs/dotnet45/script.js:56 +#: 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:165 Script/script.js:170 +#: Script/script.js:190 Script/script.js:203 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:91 Script/script.js:115 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 +1150,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 +1172,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 +1181,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 +1196,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:14 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1112,6 +1205,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 +1230,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 @@ -1166,14 +1261,13 @@ Science=Science Scribblenauts\ Unlimited=Scribblenauts Unlimited #: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local -#: (1.0->1.6)/script.js:14 +#: (1.0->1.6)/script.js:16 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 +1301,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 +1325,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 +1453,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 +1474,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 +1569,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 +1585,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 +1594,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 +1612,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:25 +#: Engines/Wine/Verbs/dotnet472/script.js:64 +#: Engines/Wine/Verbs/dotnet462/script.js:25 +#: Engines/Wine/Verbs/dotnet462/script.js:64 +#: Engines/Wine/Verbs/dotnet46/script.js:25 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:25 +#: Engines/Wine/Verbs/dotnet452/script.js:68 +#: Engines/Wine/Verbs/dotnet461/script.js:25 +#: Engines/Wine/Verbs/dotnet461/script.js:64 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:27 +#: Engines/Wine/Verbs/dotnet40/script.js:86 +#: Engines/Wine/Verbs/dotnet45/script.js:29 +#: Engines/Wine/Verbs/dotnet45/script.js:79 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 +1661,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 +1700,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:42 +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 +1719,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:44 +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 +1738,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 +1753,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 +1777,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:82 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 +1826,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 +1838,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 @@ -1732,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke 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 +#: Applications/Games/Subnautica/Steam/script.js:22 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:49 +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 +1900,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 +1930,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 +1967,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 +1997,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 +2027,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 +2060,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 +2076,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:57 +#: Engines/Wine/Verbs/dotnet45/script.js:65 {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. -