Skip to content

Commit 42f56ac

Browse files
committed
Fixes #100
1 parent 240397f commit 42f56ac

8 files changed

Lines changed: 15 additions & 20 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
# v1.8.1+1.21.7
2-
3-
## Changes
4-
5-
- Migrated to Mojmap.
1+
# v1.8.2+1.21.8
62

73
## Fixes
84

9-
- Fixed incompatibility with JEI (#99)
5+
- Fixed game freezing when pressing H while not looking at anything (#100)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ The following table shows which versions are supported:
266266

267267
| Git branch | Minecraft version | Supported? | Is LTS? | Modloader |
268268
|-------------|----------------------|-------------------|---------|------------------|
269-
| `master` | 1.21.7 | Active (Latest) | ? | Fabric, Neoforge |
269+
| `master` | 1.21.6 - 1.21.8 | Active (Latest) | ? | Fabric, Neoforge |
270270
| `mc/1.21.5` | 1.21.5 | EOL | No | Fabric, Neoforge |
271271
| `mc/1.21.4` | 1.21.4 | EOL | No | Fabric, Neoforge |
272272
| `mc/1.21.3` | 1.21.2, 1.21.3 | EOL | No | Fabric, Neoforge |

common/src/main/java/wiki/minecraft/heywiki/entrypoint/Raycast.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public class Raycast {
3333
* Should be called at {@link ClientTickEvent#CLIENT_POST ClientTickEvent#CLIENT_POST}.
3434
*/
3535
public static void onClientTickPost(Minecraft client) {
36-
while (openWikiKey.isDown()) {
36+
if (openWikiKey.consumeClick()) {
3737
Target target;
3838
if (Screen.hasAltDown()) {
3939
assert client.player != null;

common/src/main/java/wiki/minecraft/heywiki/gui/screen/WikiSearchScreen.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public WikiSearchScreen() {
6868
}
6969

7070
public static void onClientTickPost(Minecraft client) {
71-
while (openWikiSearchKey.isDown()) {
71+
if (openWikiSearchKey.consumeClick()) {
7272
client.setScreen(new WikiSearchScreen());
7373
}
7474
}

common/src/main/resources/assets/heywiki/texts/splashes.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,11 @@ Install getindie.wiki!
99
remote getaway
1010
git vommit -a -m "fix"
1111
fandom is a wiki website (allegedly)
12-
i have been using fandom for 1 second and i already want to leave
1312
i don't need sunscreen. i need fandomscreen.
1413
let the en****tification begin.
1514
§5grimace shake
1615
statistically speaking you like anime
1716
Woo, Minecraft Wiki!
18-
Civilization is better!
19-
I'm a teapot
2017
Follow @MinecraftWikiEN@wikis.world!
2118
Follow @MinecraftWikiEN on Twitter!
2219
Follow @minecraft.wiki on Bluesky!
@@ -33,4 +30,6 @@ fire from heat
3330
https://mc.wiki
3431
35 years after the release of Pump Up The Jam
3532
Do not fall into the trap of anthropomorphising Larry Ellison
36-
Yeah!
33+
Yeah!
34+
minecraft bee is trans
35+
minecraft axolotl is trans

fabric/src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
],
4141
"depends": {
4242
"fabricloader": ">=0.16.0",
43-
"minecraft": "1.21.7",
43+
"minecraft": ">=1.21.6 <=1.21.8",
4444
"java": ">=21",
4545
"fabric-api": "*",
4646
"architectury": ">=14.0.0",

gradle.properties

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ archives_base_name=heywiki
55
maven_group=wiki.minecraft.heywiki
66
enabled_platforms=fabric,neoforge
77
enabled_platforms_snapshot=fabric
8-
mod_version=1.8.1+1.21.7
8+
mod_version=1.8.2+1.21.8
99
# Loader versions
10-
minecraft_version=1.21.7
11-
minecraft_version_range=1.21.7
10+
minecraft_version=1.21.8
11+
minecraft_version_range=>=1.21.6 <=1.21.8
1212
parchment_version=1.21.6:2025.06.29
1313
fabric_loader_version=0.16.14
14-
fabric_api_version=0.129.0+1.21.7
15-
neoforge_version=21.7.2-beta
14+
fabric_api_version=0.129.0+1.21.8
15+
neoforge_version=21.8.1-beta
1616
# Dependency versions
1717
architectury_version=17.0.6
1818
cloth_config_version=19.0.147

neoforge/src/main/resources/META-INF/neoforge.mods.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ side = "CLIENT"
2828
[[dependencies.heywiki]]
2929
modId = "minecraft"
3030
type = "required"
31-
versionRange = "[1.21.7,)"
31+
versionRange = "[1.21.6,1.21.8)"
3232
ordering = "NONE"
3333
side = "CLIENT"
3434

0 commit comments

Comments
 (0)