Skip to content

Commit 6dca78d

Browse files
committed
Update to mc1.21.5
1 parent a41b5aa commit 6dca78d

File tree

2 files changed

+15
-22
lines changed

2 files changed

+15
-22
lines changed

common/src/main/java/dev/terminalmc/chatnotify/gui/widget/HorizontalList.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
package dev.terminalmc.chatnotify.gui.widget;
1818

19-
import com.mojang.blaze3d.systems.RenderSystem;
2019
import dev.terminalmc.chatnotify.ChatNotify;
2120
import net.minecraft.client.Minecraft;
2221
import net.minecraft.client.gui.GuiGraphics;
@@ -246,7 +245,6 @@ protected void renderWidget(
246245
* Renders the partially-translucent background texture.
247246
*/
248247
protected void renderListBackground(GuiGraphics graphics) {
249-
RenderSystem.enableBlend();
250248
graphics.blit(
251249
RenderType::guiTextured,
252250
MENU_LIST_BACKGROUND,
@@ -259,7 +257,6 @@ protected void renderListBackground(GuiGraphics graphics) {
259257
32,
260258
32
261259
);
262-
RenderSystem.disableBlend();
263260
}
264261

265262
/**
@@ -307,7 +304,6 @@ protected void renderScrollbar(@NotNull GuiGraphics graphics) {
307304
(int) scrollAmount * (getWidth() - scrollerWidth) / getMaxScroll() + getX()
308305
);
309306

310-
RenderSystem.enableBlend();
311307
graphics.blitSprite(
312308
RenderType::guiTextured,
313309
SCROLLER_BACKGROUND_SPRITE,
@@ -324,7 +320,6 @@ protected void renderScrollbar(@NotNull GuiGraphics graphics) {
324320
scrollerWidth,
325321
SCROLLBAR_HEIGHT
326322
);
327-
RenderSystem.disableBlend();
328323
}
329324
}
330325

@@ -339,7 +334,6 @@ protected boolean scrollbarVisible() {
339334
* Renders the list separator textures.
340335
*/
341336
protected void renderSeparators(GuiGraphics guiGraphics) {
342-
RenderSystem.enableBlend();
343337
guiGraphics.blit(
344338
RenderType::guiTextured,
345339
LEFT_SEPARATOR,
@@ -388,7 +382,6 @@ protected void renderSeparators(GuiGraphics guiGraphics) {
388382
32,
389383
2
390384
);
391-
RenderSystem.disableBlend();
392385
}
393386

394387
// Focus and visibility

gradle.properties

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -55,37 +55,37 @@ mod_curseforge_slug=chatnotify
5555
# Subproject Build Compatibility
5656
# -> Comment out or unset to disable publishing of a subproject.
5757
mod_loaders_fabric=fabric
58-
mc_versions_fabric=1.21.4
58+
mc_versions_fabric=1.21.5
5959
mod_loaders_neoforge=neoforge
60-
mc_versions_neoforge=1.21.4
60+
mc_versions_neoforge=1.21.5
6161

6262
# Java
6363
java_version=21
6464
java_versions_fabric=>=21
6565
java_versions_neoforge=[21,)
6666

6767
# Minecraft
68-
minecraft_version=1.21.4
69-
minecraft_versions_fabric=>1.21.3
70-
minecraft_versions_neoforge=[1.21.4,)
68+
minecraft_version=1.21.5
69+
minecraft_versions_fabric=>1.21.4
70+
minecraft_versions_neoforge=[1.21.5,)
7171

7272
# Parchment https://parchmentmc.org/docs/getting-started#choose-a-version
73-
parchment_minecraft_version=1.21.4
74-
parchment_version=2025.03.23
73+
parchment_minecraft_version=1.21.5
74+
parchment_version=2025.06.15
7575

7676
# Fabric https://fabricmc.net/develop
7777
# -> See also 'mixinextras_jij_fabric'
7878
fabric_loader_version=0.17.2
7979
fabric_loader_versions=>=0.17.0
80-
fabric_api_version=0.119.4+1.21.4
80+
fabric_api_version=0.128.2+1.21.5
8181
fabric_api_versions=*
8282

8383
# NeoForge https://projects.neoforged.net/neoforged/neoforge
8484
# -> See also 'mixinextras_jij_neoforge'
85-
neoforge_version=21.4.154
86-
neoforge_versions=[21.4.149,)
85+
neoforge_version=21.5.95
86+
neoforge_versions=[21.5.0-beta,)
8787
# NeoForm https://projects.neoforged.net/neoforged/neoform
88-
neoform_version=1.21.4-20241203.161809
88+
neoform_version=1.21.5-20250325.162830
8989

9090
# Dependency Property Identifiers
9191
# -> These values point to other properties with full dependency specification.
@@ -119,13 +119,13 @@ v_commandkeys_neoforge=qDk3Xi0K
119119
d_common_chatheads=-:-:imp:maven.modrinth:Wb5oqrBJ:$v:v_chatheads_neoforge
120120
d_fabric_chatheads=-:-:imp:maven.modrinth:Wb5oqrBJ:$v:v_chatheads_fabric
121121
d_neoforge_chatheads=-:-:imp:maven.modrinth:Wb5oqrBJ:$v:v_chatheads_neoforge
122-
v_chatheads_fabric=p5FIP10y
123-
v_chatheads_neoforge=coszZ1AH
122+
v_chatheads_fabric=jY8EZPyV
123+
v_chatheads_neoforge=XO8yZdS8
124124

125125
# ModMenu https://modrinth.com/project/mOgUt4GM/versions
126126
d_fabric_modmenu=-:-:imp:maven.modrinth:mOgUt4GM:$v:-,recommends:modmenu,req:mOgUt4GM,req:modmenu
127-
v_modmenu=13.0.3
128-
vr_fabric_modmenu=>=13.0.0-beta.1
127+
v_modmenu=14.0.0-rc.2
128+
vr_fabric_modmenu=>=14.0.0-rc.1
129129

130130
# Dependency Version Extensions
131131
# -> Intended for addon mods to show which version they were compiled against.

0 commit comments

Comments
 (0)