diff --git a/Applications/Games/Hearthstone/Online/script.js b/Applications/Games/Hearthstone/Online/script.js index ac11ed5d8b..039016580e 100644 --- a/Applications/Games/Hearthstone/Online/script.js +++ b/Applications/Games/Hearthstone/Online/script.js @@ -1,22 +1,24 @@ include(["engines", "wine", "quick_script", "online_installer_script"]); -include(["engines", "wine", "plugins", "windows_version"]); include(["engines", "wine", "verbs", "vcrun2015"]); include(["engines", "wine", "verbs", "corefonts"]); +// BUG: https://github.com/PhoenicisOrg/scripts/issues/792 + +// TODO: OSX support, needs verification + var installerImplementation = { run: function () { new OnlineInstallerScript() .name("Hearthstone") .editor("Blizzard") .applicationHomepage("https://eu.battle.net/hearthstone/") - .author("ImperatorS79") + .author("ImperatorS79, kreyren") .url("https://eu.battle.net/download/getInstaller?os=win&installer=Hearthstone-Setup.exe") .category("Games") - .executable("Hearthstone.exe") + .executable("Battle.net.exe") .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") .preInstall(function (wine/*, wizard*/) { - wine.windowsVersion("winxp"); wine.vcrun2015(); wine.corefonts(); })