Skip to content

Commit

Permalink
2.6.53
Browse files Browse the repository at this point in the history
parser now operates in unsafe mode :)
  • Loading branch information
ebshimizu committed Apr 6, 2022
1 parent b9807d3 commit 48885b5
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion background.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
const app = require('electron').remote.app;

ipc.on('parseReplay', function(event, file, id, fromWindowId) {
let out = Parser.processReplay(file, { legacyTalentKeys: true });
let out = Parser.processReplay(file, { legacyTalentKeys: true, overrideVerifiedBuild: true });
out.idx = id;

// you know what just broadcast it i don't care
Expand Down
2 changes: 1 addition & 1 deletion hots-parser
Submodule hots-parser updated 2 files
+1 −1 package.json
+2 −2 parser.js
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stats-of-the-storm",
"version": "2.6.52",
"version": "2.6.53",
"main": "main.js",
"description": "A Heroes of the Storm stat tracking application.",
"bugs": "[email protected]",
Expand Down
2 changes: 2 additions & 0 deletions templates/about-page.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ <h2 class="ui inverted header">Stats of the Storm - Version <span class="app-ver
gets talent info, hero info, and images from <a href="https://github.com/heroespatchnotes/heroes-talents">heroes-talents</a>.
</p>
<div class="ui inverted horizontal divider">Change Log</div>
<div class="ui inverted dividing header">Version 2.6.53</div>
<p>Parser: Provisional support for 2.55.2. As of 2.6.53, the parser will not check against the verified build number.</p>
<div class="ui inverted dividing header">Version 2.6.52</div>
<p>Parser: Bugfix for incorrect Braxis Holdout first objective win flag and updated wave strength calculations.</p>
<div class="ui inverted dividing header">Version 2.6.51</div>
Expand Down

0 comments on commit 48885b5

Please sign in to comment.