Skip to content

Commit

Permalink
chore: Remove support for MC1.19.3 - MC1.19.4
Browse files Browse the repository at this point in the history
Barely anyone play on this version
  • Loading branch information
null2264 committed Nov 30, 2023
1 parent bf3cef1 commit cdf7fa4
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 15 deletions.
7 changes: 0 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ def mcVersionStr = stringifyVersion(mcVersion)
def supportedVersionRange = [
11802: [null, "1.18.2"],
11902: ["1.19", "1.19.2"],
11904: ["1.19.3", "1.19.4"],
12001: ["1.20", "1.20.1"],
12002: ["1.20.2", null],
][mcVersion]
Expand Down Expand Up @@ -104,7 +103,6 @@ dependencies {
modLocalRuntime modCompileOnlyApi("net.fabricmc.fabric-api:fabric-api:" + [
11802: "0.76.0+1.18.2",
11902: "0.76.0+1.19.2",
11904: "0.83.0+1.19.4",
12001: "0.83.1+1.20.1",
12002: "0.89.0+1.20.2",
][mcVersion])
Expand All @@ -113,7 +111,6 @@ dependencies {
forge "net.minecraftforge:forge:" + [
11802: "1.18.2-40.2.9",
11902: "1.19.2-43.2.14",
11904: "1.19.4-45.1.0",
12001: "1.20.1-47.0.3",
12002: "1.20.2-48.0.13",
][mcVersion]
Expand Down Expand Up @@ -148,7 +145,6 @@ dependencies {
} else {
def suffix = [
11902: "1.19.2",
11904: "1.19.4",
12001: "1.20.1",
12002: "1.20.2",
12003: "1.20.2", // TODO
Expand All @@ -164,7 +160,6 @@ dependencies {
def reiVersions = [
11802: "8.3.618",
11902: "9.1.619",
11904: "11.0.621",
12001: "12.0.625",
12002: "13.0.666",
12003: "13.0.666", // TODO
Expand All @@ -183,7 +178,6 @@ dependencies {
def jeiVersions = [
11802: "10.2.1.1004",
11902: "11.6.0.1015",
11904: "13.1.0.13",
12001: "15.0.0.12",
12002: "16.0.0.28",
12003: "16.0.0.28", // TODO
Expand Down Expand Up @@ -278,7 +272,6 @@ jar {
def mcReleaseVersions = [
11802: ["1.18.2"],
11902: ["1.19", "1.19.1", "1.19.2"],
11904: ["1.19.3", "1.19.4"],
12001: ["1.20", "1.20.1"],
12002: ["1.20.2"],
][mcVersion]
Expand Down
6 changes: 1 addition & 5 deletions root.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ preprocess {
val fabric12002 = createNode("1.20.2-fabric", 12002, "mojang")
val forge12001 = createNode("1.20.1-forge", 12001, "mojang")
val fabric12001 = createNode("1.20.1-fabric", 12001, "mojang")
val forge11904 = createNode("1.19.4-forge", 11904, "mojang")
val fabric11904 = createNode("1.19.4-fabric", 11904, "mojang")
val forge11902 = createNode("1.19.2-forge", 11902, "mojang")
val fabric11902 = createNode("1.19.2-fabric", 11902, "mojang")
val forge11802 = createNode("1.18.2-forge", 11802, "mojang")
Expand All @@ -19,12 +17,10 @@ preprocess {

forge12002.link(fabric12002)
forge12001.link(fabric12001)
forge11904.link(fabric11904)
forge11902.link(fabric11902)
forge11802.link(fabric11802)

fabric12002.link(fabric12001)
fabric12001.link(fabric11904)
fabric11904.link(fabric11902)
fabric12001.link(fabric11902)
fabric11902.link(fabric11802)
}
2 changes: 0 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ listOf(
"1.18.2-forge",
"1.19.2-fabric",
"1.19.2-forge",
"1.19.4-fabric",
"1.19.4-forge",
"1.20.1-fabric",
"1.20.1-forge",
"1.20.2-fabric",
Expand Down
Empty file removed versions/1.19.4-fabric/.gitkeep
Empty file.
1 change: 0 additions & 1 deletion versions/1.19.4-forge/gradle.properties

This file was deleted.

0 comments on commit cdf7fa4

Please sign in to comment.