Skip to content

Commit

Permalink
0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ebshimizu committed Feb 25, 2018
1 parent b1b74ec commit b143dae
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 6 deletions.
2 changes: 1 addition & 1 deletion js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ function loadSections() {
//changeSection('player');

// this is the release default
changeSection('teams');
changeSection('matches');
}

// returns the template contained in an import
Expand Down
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": "0.2.0-dev",
"version": "0.2.0",
"main": "main.js",
"description": "A Heroes of the Storm stat tracking application.",
"bugs": "[email protected]",
Expand Down
4 changes: 2 additions & 2 deletions parser/parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ function parse(file, requestedData, opts) {
console.log("Retrieving " + requestedData[i]);

// debug version for independent testing
const script = cp.spawnSync(path.join(__dirname, 'heroprotocol/dist/heroprotocol/heroprotocol.exe'), ['--json', '--' + requestedData[i], file], {
//const script = cp.spawnSync(fixPathForAsarUnpack(path.join(__dirname, 'heroprotocol/dist/heroprotocol/heroprotocol.exe')), ['--json', '--' + requestedData[i], file], {
//const script = cp.spawnSync(path.join(__dirname, 'heroprotocol/dist/heroprotocol/heroprotocol.exe'), ['--json', '--' + requestedData[i], file], {
const script = cp.spawnSync(fixPathForAsarUnpack(path.join(__dirname, 'heroprotocol/dist/heroprotocol/heroprotocol.exe')), ['--json', '--' + requestedData[i], file], {
maxBuffer: 300000*1024 // if anyone asks why it's 300MB it's because gameevents is huge
});

Expand Down
13 changes: 13 additions & 0 deletions templates/about-page.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,19 @@ <h2 class="ui inverted header">Stats of the Storm - Version <span class="app-ver
gets talent and hero information and images from <a href="https://github.com/heroespatchnotes/heroes-talents">heroes-talents</a>.
</p>
<div class="ui inverted horizontal divider">Change Log</div>
<h3 class="ui inverted dividing header">Version 0.2.0</h3>
<p>
Version 0.2.0 brings talent builds and the full draft data to Stats of the Storm, along
with a few changes that improve the general performance of the app. Since the draft data is contained
in the replay file itself, you'll have to re-import your replays to use the new features. Unfortunately you'll
have to do that any time the parser backend changes, so I'll try to keep those changes to a minimum.
</p>
<p><a href="https://github.com/ebshimizu/stats-of-the-storm/issues/92">#92</a> Parser: Added draft order. Parser is now at Version 2. Note: To use this feature you have to re-import your matches. Pick order stats are now shown on team summary pages and the Collection Stats: Heroes page. Thanks to /u/SlapJack1337 on Reddit for showing me where this data is.</p>
<p><a href="https://github.com/ebshimizu/stats-of-the-storm/issues/93">#93</a> Allow re-import of duplicate</p>
<p><a href="https://github.com/ebshimizu/stats-of-the-storm/issues/87">#87</a> Match Details: Shows time per talent tier for each team. Additionally, team summaries show average time per talent tier.</p>
<p><a href="https://github.com/ebshimizu/stats-of-the-storm/issues/59">#59</a> Heroes: Added build stats, which display talent combinations and win rates. Available on Player summary pages and overall hero stat pages.</p>
<p><a href="https://github.com/ebshimizu/stats-of-the-storm/issues/88">#88</a> App: Any menu that lets you select a player now has a threshold of required matches in the database. This improves the general performance of the app. This is adjustable in settings.</p>
<p><a href="https://github.com/ebshimizu/stats-of-the-storm/issues/91">#91</a> Collection Stats: Players: Changing the focued hero data requires users to click the search button in the filters tab. Accidentally changing that menu's values could lead to an app hang with large databases.</p>
<h3 class="ui inverted dividing header">Version 0.1.2</h3>
<p>Parser: Corrected an issue where kills were incorrectly attributed to "Nexus Forces" (and also corrected an occasional crash).</p>
<h3 class="ui inverted dividing header">Version 0.1.1</h3>
Expand Down
4 changes: 2 additions & 2 deletions templates/hero-collection-page.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ <h1 class="ui inverted header">Hero Statistics</h1>
<a class="item" data-tab="hero-collection-picks">Picks and Bans</a>
<a class="item" data-tab="hero-collection-hero">Hero Details</a>
</div>
<div class="ui tab" data-tab="hero-collection-overall" id="hero-collection-summary">
<div class="ui active tab" data-tab="hero-collection-overall" id="hero-collection-summary">
<div class="five ui buttons">
<div class="ui red button">Assassin</div>
<div class="ui blue button">Warrior</div>
Expand Down Expand Up @@ -52,7 +52,7 @@ <h1 class="ui inverted header">Hero Statistics</h1>
</div>
</div>
</div>
<div class="ui active tab" data-tab="hero-collection-picks" id="hero-collection-picks">
<div class="ui tab" data-tab="hero-collection-picks" id="hero-collection-picks">
<div class="five ui buttons">
<div class="ui red button">Assassin</div>
<div class="ui blue button">Warrior</div>
Expand Down

0 comments on commit b143dae

Please sign in to comment.