Skip to content

Commit be714ac

Browse files
committed
0.85.4
1 parent f72e375 commit be714ac

File tree

7 files changed

+32
-16
lines changed

7 files changed

+32
-16
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
# Changelog
22

3+
## Version 0.85.4
4+
5+
- Added expected number of processors to simulation when Thousand Draft Derby is equipped
6+
- Fixed not being able to cancel writing in Table of Contents
7+
- Updated Full mice images in journal to not use the cropped square image
8+
39
## Version 0.85.3
410

511
- Fixed not being able to cancel writing in Table of Contents
6-
12+
713
## Version 0.85.2
814

915
- Fixed issue with data not being cached after fetching

bun.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mousehunt-improved",
3-
"version": "0.85.3",
3+
"version": "0.85.4",
44
"description": "Improve your MouseHunt experience.",
55
"author": "Brad Parbs <brad@bradparbs.com> (https://bradparbs.com/)",
66
"license": "MIT",

src/data/update-summary.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
"Added Highlight rare mice feature, currently only highlights Black Widow",
2929
"Improved Journal History performance",
3030
"Improved Journal loot list parsing and added more supported entries",
31+
"Updated Full mice images in journal to not use the cropped square image",
3132
"Updated setting names and order",
3233
"Updated styles"
3334
]
@@ -55,7 +56,9 @@
5556
{
5657
"title": "Location HUDs - Table of Contents",
5758
"items": [
59+
"Added expected number of processors to simulation when Thousand Draft Derby is equipped",
5860
"Updated sim to scroll to expected volume",
61+
"Fixed not being able to cancel writing",
5962
"Updated styles"
6063
]
6164
},

src/modules/better-journal/modules/journal-full-mice-images/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ const main = () => {
3838
return;
3939
}
4040

41-
if (mouse?.images?.square) {
42-
image.src = mouse.images.square;
41+
if (mouse?.images?.large) {
42+
image.src = mouse.images.large;
4343
}
4444
});
4545
};

src/modules/location-huds/locations/table-of-contents/index.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,10 @@ const displayResults = (results, timeTaken) => {
6262
<div class="value">${results?.mostLikely?.gnawbels?.toLocaleString()}</div>
6363
</div>
6464
<div class="result processors">
65-
<div class="label">Expected Processors</div>
66-
<div class="value">${results?.mostLikely?.processors?.toLocaleString()}</div>
65+
<div class="result">
66+
<div class="label">Expected Processors</div>
67+
<div class="value">${results?.mostLikely?.processors?.toLocaleString()}</div>
68+
</div>
6769
</div>
6870
</div>
6971
</div>

src/modules/location-huds/locations/table-of-contents/simulator-styles.css

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,17 @@
1717

1818
.mh-toc-sim-results {
1919
display: grid;
20-
grid-template-columns: 40% 50%;
20+
grid-template-columns: 40% 45%;
2121
justify-content: space-evenly;
2222
justify-items: stretch;
2323
margin: 0 1em;
2424
color: #fff;
2525
}
2626

27+
.mh-toc-sim-results.m1k {
28+
grid-template-columns: 40% 55%;
29+
}
30+
2731
.mh-toc-sim-results .stats {
2832
display: flex;
2933
flex-direction: column;
@@ -101,17 +105,18 @@
101105
display: grid;
102106
grid-template-columns: repeat(4, 1fr);
103107
place-items: center;
108+
align-items: end;
104109
padding: 3px;
105110
margin-bottom: 0.25em;
106111
text-align: right;
107112
}
108113

109114
.mh-toc-sim-results .processors {
110-
visibility: hidden;
115+
display: none;
111116
}
112117

113118
.mh-toc-sim-results.m1k .processors {
114-
visibility: visible;
119+
display: inline;
115120
}
116121

117122
.mh-toc-sim-results.m1k .percents li {

0 commit comments

Comments
 (0)