Skip to content

Commit

Permalink
RELEASE: 8.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastientromp committed Nov 23, 2021
1 parent 98ee716 commit b62555d
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 17 deletions.
2 changes: 1 addition & 1 deletion core/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "firestone",
"version": "8.2.14",
"version": "8.3.1",
"scripts": {
"lint": "node --max_old_space_size=8000 ./node_modules//eslint/bin/eslint.js --color --fix --ext .ts ./src/",
"test": "node --max_old_space_size=8000 ./node_modules/jest/bin/jest.js --colors",
Expand Down
39 changes: 24 additions & 15 deletions core/src/js/components/main-window/updates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export interface UpdateSectionItemDetails {

export const updates: readonly Update[] = [
{
version: '8.2.13',
version: '8.3.1',
sections: [
// {
// type: 'intro',
Expand All @@ -49,17 +49,8 @@ export const updates: readonly Update[] = [
category: 'general',
details: [
{
type: 'content',
text: `Update for patch 21.8. There are still a few missing things that should be fixed in the coming days (updated card images, Tasmin's hero power in custom BG simulator, Diablo special battles in simulator, missing hero emotes in collection)`,
},
],
},
{
category: 'mercenaries',
details: [
{
type: 'feature',
text: `Shows the current ability queue (the order in which all queued abilities will trigger), mostly for PvE (since in PvP the opponent's actions are hidden, this is far less useful)`,
type: 'misc',
text: `This version brings along a major internal refactoring that will make it possible for me to better track and improve the app's memory and CPU usage. So no immediate benefits yet, but they should come in the near future :)`,
},
],
},
Expand All @@ -69,12 +60,30 @@ export const updates: readonly Update[] = [
type: 'minor',
header: 'Minor updates',
updates: [
{
category: 'battlegrounds',
details: [
{
type: 'bug',
text: `Fix an issue where mousing over a minion would not show its golden image anymore.`,
},
],
},
{
category: 'mercenaries',
details: [
{
type: 'feature',
text: `Tasks are now refreshed right after picking a Mysterious Stranger node (instead of having to go into battle for that).`,
type: 'bug',
text: `Fix an issue where searching for mercs would return some unrelated results.`,
},
],
},
{
category: 'decktracker',
details: [
{
type: 'bug',
text: `Fix an issue where clicking on the "Watch replays" button from the deck page would not do anything.`,
},
],
},
Expand All @@ -84,7 +93,7 @@ export const updates: readonly Update[] = [
// type: 'future',
// header: 'Under the Hood',
// text: `

// This release
// `,
// },
],
Expand Down

0 comments on commit b62555d

Please sign in to comment.