Skip to content

Commit

Permalink
Declare 1.20.4 support where applicable
Browse files Browse the repository at this point in the history
  • Loading branch information
TBlueF committed Dec 10, 2023
1 parent 72b71a9 commit ef728de
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
3 changes: 2 additions & 1 deletion implementations/fabric-1.20/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ modrinth {
.readText()
.replace("{version}", project.version.toString()))
uploadFile.set(tasks.findByName("remappedShadowJar"))
gameVersions.addAll("1.20", "1.20.1", "1.20.2", "1.20.3")
gameVersions.addAll("1.20", "1.20.1", "1.20.2", "1.20.3", "1.20.4")
dependencies {
required.project("P7dR8mSH") // Fabric API
}
Expand All @@ -169,6 +169,7 @@ curseforge {
addGameVersion("1.20.1")
addGameVersion("1.20.2")
addGameVersion("1.20.3")
addGameVersion("1.20.4")

mainArtifact(tasks.findByName("remappedShadowJar"), closureOf<CurseArtifact> {
relations(closureOf<CurseRelation> {
Expand Down
4 changes: 3 additions & 1 deletion implementations/forge-1.20/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ modrinth {
.getText()
.replace("{version}", project.version.toString())
uploadFile = shadowJar
gameVersions = ["1.20", "1.20.1", "1.20.2"]
gameVersions = ["1.20", "1.20.1", "1.20.2", "1.20.3", "1.20.4"]
}

curseforge {
Expand All @@ -198,6 +198,8 @@ curseforge {
addGameVersion "1.20"
addGameVersion "1.20.1"
addGameVersion "1.20.2"
addGameVersion "1.20.3"
addGameVersion "1.20.4"

mainArtifact shadowJar
}
Expand Down
3 changes: 2 additions & 1 deletion implementations/neoforge-1.20.2/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ modrinth {
.replace("{version}", project.version.toString())
uploadFile = shadowJar
loaders = ["neoforge"]
gameVersions = ["1.20.2", "1.20.3"]
gameVersions = ["1.20.2", "1.20.3", "1.20.4"]
}

curseforge {
Expand All @@ -153,6 +153,7 @@ curseforge {

addGameVersion "1.20.2"
addGameVersion "1.20.3"
addGameVersion "1.20.4"

mainArtifact shadowJar
}
Expand Down
4 changes: 2 additions & 2 deletions implementations/paper/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ modrinth {
uploadFile.set(tasks.findByName("shadowJar"))
loaders.addAll("paper","purpur","folia")
gameVersions.addAll(
"1.20.1", "1.20.2", "1.20.3"
"1.20.1", "1.20.2", "1.20.3", "1.20.4"
)
}

Expand All @@ -145,7 +145,7 @@ hangarPublish {
register(io.papermc.hangarpublishplugin.model.Platforms.PAPER) {
jar.set(tasks.shadowJar.flatMap { it.archiveFile })
platformVersions.set(listOf(
"1.20.1", "1.20.2", "1.20.3"
"1.20.1", "1.20.2", "1.20.3", "1.20.4"
))
}
}
Expand Down
2 changes: 1 addition & 1 deletion implementations/spigot/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ modrinth {
"1.17", "1.17.1",
"1.18", "1.18.1", "1.18.2",
"1.19", "1.19.1", "1.19.2", "1.19.3", "1.19.4",
"1.20", "1.20.1", "1.20.2", "1.20.3"
"1.20", "1.20.1", "1.20.2", "1.20.3", "1.20.4"
)
}

Expand Down

0 comments on commit ef728de

Please sign in to comment.