Skip to content

Commit

Permalink
build: 1.20.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ishland committed Apr 30, 2024
1 parent 4355b33 commit 845b13f
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ subprojects {
// versionName = project.version + " devbuild for " + project.minecraft_version
versionType = "alpha" // This is the default -- can also be `beta` or `alpha`
// uploadFile = remapShadowJar // With Loom, this MUST be set to `remapJar` instead of `jar`!
gameVersions = ["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.4", "1.20.5"]
gameVersions = ["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.4", "1.20.5", "1.20.6"]
// loaders = ["fabric"]
changelog = com.ishland.buildscript.ParseGItHubActionChangelog.getChangelog()
}
Expand Down
2 changes: 1 addition & 1 deletion bungee/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ configurations {
}

dependencies {
implementation 'bungee:BungeeCord:1836'
implementation 'bungee:BungeeCord:1841'
// implementation "net.md-5:bungeecord-proxy:1.+"
// compileOnly 'org.projectlombok:lombok:1.18.24' // for bungeecord sources

Expand Down
5 changes: 5 additions & 0 deletions fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,14 @@ if (System.getenv("CURSEFORGE_TOKEN")) {
addGameVersion "1.20.3"
addGameVersion "1.20.4"
addGameVersion "1.20.5"
addGameVersion "1.20.6"
addGameVersion "Fabric"
addGameVersion "Java 17"
addGameVersion "Java 18"
addGameVersion "Java 19"
addGameVersion "Java 20"
addGameVersion "Java 21"
addGameVersion "Java 22"

mainArtifact(remapShadowJar) {
displayName = project.version + " devbuild"
Expand Down
2 changes: 1 addition & 1 deletion genMappings.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ installer_version=1.0.1

#declare -a vers
if [[ -z "$@" ]]; then
vers="1.17 1.17.1 1.18.1 1.18.2 1.19 1.19.2 1.19.3 1.19.4 23w13a_or_b 1.20.1 1.20.2 1.20.3 1.20.5"
vers="1.17 1.17.1 1.18.1 1.18.2 1.19 1.19.2 1.19.3 1.19.4 23w13a_or_b 1.20.1 1.20.2 1.20.4 1.20.6"
else
vers=$@
fi
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ org.gradle.parallel=true
# check these on https://fabricmc.net/develop
#
# Also don't forget to gen mappings in genMappings.sh
minecraft_version=1.20.5
yarn_mappings=1.20.5+build.1
minecraft_version=1.20.6
yarn_mappings=1.20.6+build.1
loader_version=0.15.10

# Mod Properties
Expand Down
2 changes: 1 addition & 1 deletion velocity/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ dependencies {
// api 'com.velocitypowered:velocity-api:3.1.1'
// annotationProcessor 'com.velocitypowered:velocity-api:3.1.1'

implementation 'velocity:3.3.0-SNAPSHOT:384'
implementation 'velocity:3.3.0-SNAPSHOT:386'
// annotationProcessor 'velocity:3.1.2-SNAPSHOT:139'

shadowInclude implementation(project(":common"))
Expand Down

0 comments on commit 845b13f

Please sign in to comment.