Skip to content

Commit 6e8a812

Browse files
committed
v0.94.0
1 parent 87757ea commit 6e8a812

File tree

28 files changed

+477
-297
lines changed

28 files changed

+477
-297
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,13 @@
1515
- Location Dashboard: Added Afterword Acres and Epilogue Falls to dashboard
1616
- Location HUDs - Bristle Woods Rift: Updated styles
1717
- Location HUDs - Burroughs Rift: Updated styles
18+
- Location HUDs - Conclusion Cliffs: Added location
19+
- Location HUDs - Draconic Depths: Updated styles
1820
- Location HUDs - Epilogue Falls: Enhanced UI and updated styles
1921
- Location HUDs - Event Locations: Updated styles
22+
- Location HUDs - Valour Rift: Updated styles
2023
- Location HUDs - Zokor: Updated styles
24+
- Miscellaneous bug fixes and performance improvements
2125

2226
## Version 0.93.3
2327

bun.lock

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

jsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"paths": {
88
"@/*": ["./src/modules/*"],
99
"@utils/*": ["./src/utils/"],
10+
"@utils/shared/*": ["./src/utils/shared/*"],
1011
"@utils": ["./src/utils/index.js"],
1112
"@data/*": ["./src/data/*"]
1213
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,17 @@
2828
"build:extension:chrome": "bun run scripts/build.mjs chrome",
2929
"build:extension:firefox": "bun run scripts/build.mjs firefox",
3030
"build:extension": "bun run scripts/build.mjs extension",
31+
"build:quick": "bun run scripts/build.mjs all --skip-external-files",
3132
"build:userscript": "bun run scripts/build.mjs userscript",
3233
"build:zips": "bun run scripts/build.mjs zips",
33-
"build:quick": "bun run scripts/build.mjs all --skip-external-files",
3434
"build": "bun run scripts/build.mjs all",
3535
"clean": "del-cli dist",
3636
"dev:chrome": "bun run scripts/build-extension.mjs --platform=chrome --watch",
3737
"dev:firefox": "bun run scripts/build-extension.mjs --platform=firefox --watch",
3838
"dev": "bun run scripts/build-extension.mjs --platform=chrome --watch",
39-
"get-version": "bun run scripts/get-version.mjs",
40-
"get-changelog": "bun run scripts/get-changelog.mjs",
4139
"fix-map-groups": "bun run scripts/fix-map-groups.mjs",
40+
"get-changelog": "bun run scripts/get-changelog.mjs",
41+
"get-version": "bun run scripts/get-version.mjs",
4242
"lint:css:fix": "stylelint 'src/**/*.css' --fix --config .stylelintrc.json",
4343
"lint:css": "stylelint 'src/**/*.css' --config .stylelintrc.json",
4444
"lint:fix": "concurrently \"bun:lint:*:fix\"",

src/data/update-summary.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,13 @@
1717
"Location Dashboard: Added Afterword Acres and Epilogue Falls to dashboard",
1818
"Location HUDs - Bristle Woods Rift: Updated styles",
1919
"Location HUDs - Burroughs Rift: Updated styles",
20+
"Location HUDs - Conclusion Cliffs: Added location",
21+
"Location HUDs - Draconic Depths: Updated styles",
2022
"Location HUDs - Epilogue Falls: Enhanced UI and updated styles",
2123
"Location HUDs - Event Locations: Updated styles",
22-
"Location HUDs - Zokor: Updated styles"
24+
"Location HUDs - Valour Rift: Updated styles",
25+
"Location HUDs - Zokor: Updated styles",
26+
"Miscellaneous bug fixes and performance improvements"
2327
]
2428
}
2529
]

src/modules/adblock/styles.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ a[onclick="hg.utils.PageUtil.setPage('JoinDiscord'); return false;"],
1818
a[href="https://www.facebook.com/groups/103701656374148/"],
1919
.pageSidebarView-mobileApps,
2020
.pageSidebarView-title,
21-
.pageSidebarView-block-description
21+
.pageSidebarView-block-description,
2222
#jsDialog-publishToOwnWall,
2323
.communityGroupView-thinHeader,
2424
.nestLootShareButton,

src/modules/better-journal/modules/journal-styles/styles/custom-entries/location/folklore-forest.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,13 @@
4545
background-position: left center;
4646
background-size: inherit;
4747
}
48+
49+
.journal .entry.conclusionCliffs-earnedNotoriety .journalenvdate {
50+
display: none;
51+
}
52+
53+
.content .entry.minimalJournal.conclusionCliffs-earnedNotoriety .journalbody {
54+
margin-top: 3px;
55+
margin-bottom: 3px;
56+
margin-left: 75px;
57+
}

src/modules/experiments/modules/memory-game/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { addSubmenuItem, getData, startMemoryGame } from '@utils';
1+
import { addSubmenuItem, getData } from '@utils';
2+
import { startMemoryGame } from '@utils/shared/memory-game';
23

34
const isValidItem = (item) => {
45
const excludedImages = new Set([

src/modules/image-upscaling/styles.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,3 +259,7 @@ div.userSelectorView-userList.loading::after {
259259
.itemViewPopup .itemViewContainer.torn_page .itemView-thumbnail {
260260
background-image: url(https://i.mouse.rip/plankrun-upscaled.png) !important;
261261
}
262+
263+
.draconicDepthsClaimDuplicatorChestDialogView:has(#burn:checked) .itemImage {
264+
background-image: url(https://www.mousehuntgame.com/images/items/crafting_items/large/b153b90267ed411dee9a3a406e30170f.png) !important;
265+
}

src/modules/location-dashboard/locations/desert-warpath.js

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
1-
import {
2-
getCurrentLocation,
3-
getFieryWarpathPercent,
4-
getFieryWarpathRemainingInWave,
5-
getFieryWarpathStreak,
6-
getFieryWarpathWave
7-
} from '@utils';
1+
import { getFieryWarpathPercent, getFieryWarpathRemainingInWave, getFieryWarpathStreak, getFieryWarpathWave } from '@utils/shared/fiery-warpath';
2+
import { getCurrentLocation } from '@utils';
83

94
/**
105
* Dashboard output.

0 commit comments

Comments
 (0)