Disable WASM

This commit is contained in:
Timothy Baldridge 2020-07-28 17:52:45 -06:00
parent 51c9781a90
commit 74ab81601d
2 changed files with 3 additions and 1 deletions

View File

@ -1,12 +1,13 @@
### Changelog
#### Version - 2.1.3.4 - 7/27/2020
#### Version - 2.1.3.4 - 7/28/2020
* Fixes for Tar Files (for realz this time)
* Watch disk usage, throw an error if disk usage gets too high
* Added error icon triangle under install play button if there are blocking problems.
* Added tooltip styling to limit width to 500.
* Adjusted error text for MO2Installer unexpected files.
* Added filepicker error glow
* Disable WASM in the in-app browser so we can log into the Nexus again
#### Version - 2.1.3.3 - 7/22/2020
* Relax the RAR signature so it works with RAR 5 and RAR 4 formats

View File

@ -91,6 +91,7 @@ namespace Wabbajack.Lib.LibCefHelpers
Inited = true;
CefSettings settings = new CefSettings();
settings.CachePath = Consts.CefCacheLocation.ToString();
settings.JavascriptFlags = "--noexpose_wasm";
Cef.Initialize(settings);
}