Skip to content

Commit 728efa0

Browse files
committed
feat!: Drop support for 1.20.1
Signed-off-by: MSDNicrosoft <wang3311835119@hotmail.com>
1 parent 8237ee3 commit 728efa0

5 files changed

Lines changed: 1 addition & 27 deletions

File tree

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ For your convenience, download links are listed below:
3636
| 1.19.2 | [CurseForge](https://www.curseforge.com/minecraft/mc-mods/fabric-api/files?version=1.19.2) \| [Modrinth](https://modrinth.com/mod/fabric-api/versions?g=1.19.2) | 6.4.0 [GitHub](https://github.com/CottonMC/LibGui/releases/tag/6.4.0) |
3737
| 1.19.3 | [CurseForge](https://www.curseforge.com/minecraft/mc-mods/fabric-api/files?version=1.19.3) \| [Modrinth](https://modrinth.com/mod/fabric-api/versions?g=1.19.3) | 6.5.3 [GitHub](https://github.com/CottonMC/LibGui/releases/tag/6.5.3) |
3838
| 1.19.4 | [CurseForge](https://www.curseforge.com/minecraft/mc-mods/fabric-api/files?version=1.19.4) \| [Modrinth](https://modrinth.com/mod/fabric-api/versions?g=1.19.4) | 7.1.1 [GitHub](https://github.com/CottonMC/LibGui/releases/tag/7.1.1) |
39-
| 1.20.1 | [CurseForge](https://www.curseforge.com/minecraft/mc-mods/fabric-api/files?version=1.20.1) \| [Modrinth](https://modrinth.com/mod/fabric-api/versions?g=1.20.1) | 8.1.0 [GitHub](https://github.com/CottonMC/LibGui/releases/tag/8.1.0) |
4039
| 1.20.2 | [CurseForge](https://www.curseforge.com/minecraft/mc-mods/fabric-api/files?version=1.20.2) \| [Modrinth](https://modrinth.com/mod/fabric-api/versions?g=1.20.2) | 9.0.0 [GitHub](https://github.com/CottonMC/LibGui/releases/tag/9.0.0) |
4140

4241
## Features
@@ -79,7 +78,6 @@ And use `preprocess` to be compatible with the following versions.
7978
- Minecraft `1.19.2`
8079
- Minecraft `1.19.3`
8180
- Minecraft `1.19.4`
82-
- Minecraft `1.20.1`
8381
- Minecraft `1.20.2`
8482

8583
### Mappings

README_ZH_CN.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ Command GUI Buttons 是 Minecraft 的 Fabric 模组,允许用户在其客户
3434
| 1.19.2 | [CurseForge](https://www.curseforge.com/minecraft/mc-mods/fabric-api/files?version=1.19.2) \| [Modrinth](https://modrinth.com/mod/fabric-api/versions?g=1.19.2) | 6.4.0 [GitHub](https://github.com/CottonMC/LibGui/releases/tag/6.4.0) |
3535
| 1.19.3 | [CurseForge](https://www.curseforge.com/minecraft/mc-mods/fabric-api/files?version=1.19.3) \| [Modrinth](https://modrinth.com/mod/fabric-api/versions?g=1.19.3) | 6.5.3 [GitHub](https://github.com/CottonMC/LibGui/releases/tag/6.5.3) |
3636
| 1.19.4 | [CurseForge](https://www.curseforge.com/minecraft/mc-mods/fabric-api/files?version=1.19.4) \| [Modrinth](https://modrinth.com/mod/fabric-api/versions?g=1.19.4) | 7.1.1 [GitHub](https://github.com/CottonMC/LibGui/releases/tag/7.1.1) |
37-
| 1.20.1 | [CurseForge](https://www.curseforge.com/minecraft/mc-mods/fabric-api/files?version=1.20.1) \| [Modrinth](https://modrinth.com/mod/fabric-api/versions?g=1.20.1) | 8.1.0 [GitHub](https://github.com/CottonMC/LibGui/releases/tag/8.1.0) |
3837
| 1.20.2 | [CurseForge](https://www.curseforge.com/minecraft/mc-mods/fabric-api/files?version=1.20.2) \| [Modrinth](https://modrinth.com/mod/fabric-api/versions?g=1.20.2) | 9.0.0 [GitHub](https://github.com/CottonMC/LibGui/releases/tag/9.0.0) |
3938

4039
## 功能
@@ -77,7 +76,6 @@ Command GUI Buttons 是 Minecraft 的 Fabric 模组,允许用户在其客户
7776
- Minecraft `1.19.2`
7877
- Minecraft `1.19.3`
7978
- Minecraft `1.19.4`
80-
- Minecraft `1.20.1`
8179
- Minecraft `1.20.2`
8280

8381
### 混淆映射表

build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,14 @@ preprocess {
1212
def mc1192 = createNode("1.19.2", 1_19_02, "mojang")
1313
def mc1193 = createNode("1.19.3", 1_19_03, "mojang")
1414
def mc1194 = createNode("1.19.4", 1_19_04, "mojang")
15-
def mc1201 = createNode("1.20.1", 1_20_01, "mojang")
1615
def mc1202 = createNode("1.20.2", 1_20_02, "mojang")
1716

1817
mc1165.link(mc1171, null)
1918
mc1171.link(mc1182, null)
2019
mc1182.link(mc1192, null)
2120
mc1192.link(mc1193, null)
2221
mc1193.link(mc1194, null)
23-
mc1194.link(mc1201, null)
24-
mc1201.link(mc1202, null)
22+
mc1194.link(mc1202, null)
2523
}
2624

2725
def ENV = System.getenv()

settings.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ def versions = Arrays.asList(
2525
"1.19.2",
2626
"1.19.3",
2727
"1.19.4",
28-
"1.20.1",
2928
"1.20.2",
3029
)
3130

versions/1.20.1/gradle.properties

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)