Skip to content

Commit 30c8a5c

Browse files
committed
Remove support for 1.20.1, 1.20.2, 1.20.3, 1.20.5, 1.21.2
1 parent e2c80ee commit 30c8a5c

File tree

10 files changed

+12
-65
lines changed

10 files changed

+12
-65
lines changed

.github/workflows/publish.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,10 @@ jobs:
5050
game_version: [ # Update this when adding new game versions!
5151
"1.21.4",
5252
"1.21.3",
53-
"1.21.2",
5453
"1.21.1",
5554
"1.21",
5655
"1.20.6",
57-
"1.20.5",
58-
"1.20.4",
59-
"1.20.3",
60-
"1.20.2",
61-
"1.20.1"
56+
"1.20.4"
6257
]
6358
steps:
6459
- name: Checkout repository

settings.gradle.kts

+1-6
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,10 @@ stonecutter {
1212
versions( // Make sure to update .github/workflows/publish.yml when changing versions!
1313
"1.21.4",
1414
"1.21.3",
15-
"1.21.2",
1615
"1.21.1",
1716
"1.21",
1817
"1.20.6",
19-
"1.20.5",
20-
"1.20.4",
21-
"1.20.3",
22-
"1.20.2",
23-
"1.20.1")
18+
"1.20.4")
2419
}
2520
create(rootProject)
2621
}

src/main/java/cc/aabss/eventutils/NotificationToast.java

+9-12
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,16 @@ public int getHeight() {
7373
}
7474

7575
@Override
76-
//? if >=1.21.2 {
77-
public void draw(DrawContext drawContext, TextRenderer textRenderer, long startTime) {
78-
//?} else
76+
//? if <1.21.2 {
7977
/*public Toast.Visibility draw(DrawContext drawContext, ToastManager manager, long startTime) {*/
78+
//?} else {
79+
public void draw(DrawContext drawContext, TextRenderer textRenderer, long startTime) {
80+
//?}
8081
if (width == 160 && lines.size() <= 1) {
81-
//? if <=1.20.1 {
82-
/*drawContext.drawTexture(TEXTURE, 0, 0, 0, 0, width, height);
83-
*///?} else {
84-
drawContext.drawGuiTexture(/*? if >=1.21.2 {*/RenderLayer::getGuiTextured, /*?}*/TEXTURE, 0, 0, width, height);
82+
//? if <1.21.2 {
83+
/*drawContext.drawGuiTexture(TEXTURE, 0, 0, width, height);*/
84+
//?} else {
85+
drawContext.drawGuiTexture(RenderLayer::getGuiTextured, TEXTURE, 0, 0, width, height);
8586
//?}
8687
} else {
8788
int minHeight = Math.min(4, height - 28);
@@ -107,11 +108,7 @@ private void drawPart(@NotNull DrawContext context, int j, int k, int l) {
107108
final int m = j == 0 ? 20 : 5;
108109
final int n = Math.min(60, width - m);
109110
final int widthN = width - n;
110-
//? if <=1.20.1 {
111-
/*context.drawTexture(TEXTURE, 160, 32, 0, 0, 0, j, 0, k, m, l);
112-
for (int o = m; o < widthN; o += 64) context.drawTexture(TEXTURE, 160, 32, 0, 0, 32, j, o, k, Math.min(64, widthN - o), l);
113-
context.drawTexture(TEXTURE, 160, 32, 0, 0, 160 - n, j, widthN, k, n, l);
114-
*///?} else if <=1.21.1 {
111+
//? if <=1.21.1 {
115112
/*context.drawGuiTexture(TEXTURE, 160, 32, 0, j, 0, k, m, l);
116113
for (int o = m; o < widthN; o += 64) context.drawGuiTexture(TEXTURE, 160, 32, 32, j, o, k, Math.min(64, widthN - o), l);
117114
context.drawGuiTexture(TEXTURE, 160, 32, 160 - n, j, widthN, k, n, l);

src/main/java/cc/aabss/eventutils/mixin/ButtonWidgetMixin.java

-4
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,7 @@ private void disconnect() {
6060

6161
// Realms
6262
final ServerInfo serverInfo = MinecraftClient.getInstance().getCurrentServerEntry();
63-
//? if <=1.20.1 {
64-
/*if (serverInfo != null && client.isConnectedToRealms()) {
65-
*///?} else {
6663
if (serverInfo != null && serverInfo.isRealm()) {
67-
//?}
6864
client.setScreen(new RealmsMainScreen(titleScreen));
6965
return;
7066
}

src/main/java/cc/aabss/eventutils/utility/ConnectUtility.java

+1-7
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,7 @@
33
import cc.aabss.eventutils.EventUtils;
44
import net.minecraft.client.MinecraftClient;
55
import net.minecraft.client.gui.screen.TitleScreen;
6-
//? if <=1.20.2 {
7-
/*import net.minecraft.client.gui.screen.ConnectScreen;
8-
*///?} else {
96
import net.minecraft.client.gui.screen.multiplayer.ConnectScreen;
10-
//?}
117
import net.minecraft.client.network.ServerAddress;
128
import net.minecraft.client.network.ServerInfo;
139

@@ -37,9 +33,7 @@ public static void connect(@NotNull String ip) {
3733
try {
3834
client.disconnect();
3935

40-
//? if <=1.20.1 {
41-
/*ConnectScreen.connect(screen, client, address, new ServerInfo("EventUtils Event Server", ip, true), true);
42-
*///?} else if <=1.20.4 {
36+
//? if <=1.20.4 {
4337
/*ConnectScreen.connect(screen, client, address, new ServerInfo("EventUtils Event Server", ip, ServerInfo.ServerType.OTHER), true);
4438
*///?} else {
4539
ConnectScreen.connect(screen, client, address, new ServerInfo("EventUtils Event Server", ip, ServerInfo.ServerType.OTHER), true, null);

versions/1.20.1/gradle.properties

-6
This file was deleted.

versions/1.20.2/gradle.properties

-6
This file was deleted.

versions/1.20.3/gradle.properties

-6
This file was deleted.

versions/1.20.5/gradle.properties

-6
This file was deleted.

versions/1.21.2/gradle.properties

-6
This file was deleted.

0 commit comments

Comments
 (0)