Skip to content

Commit

Permalink
build(client): add 1.19.3 and soften some version bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
Apehum committed Oct 1, 2024
1 parent 2e68b14 commit 281eaac
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 5 deletions.
Empty file added client/1.19.3-fabric/.gitkeep
Empty file.
Empty file added client/1.19.3-forge/.gitkeep
Empty file.
1 change: 1 addition & 0 deletions client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ dependencies {
11701 -> "0.46.1+1.17"
11802 -> "0.76.0+1.18.2"
11902 -> "0.73.2+1.19.2"
11903 -> "0.76.1+1.19.3"
11904 -> "0.87.1+1.19.4"
12001 -> "0.84.0+1.20.1"
12004 -> "0.95.4+1.20.4"
Expand Down
4 changes: 4 additions & 0 deletions client/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@ Versions 2.0.x and 2.1.x are protocol-compatible,
so there’s no need to worry if the server hasn't been updated to 2.1.x.

### Changes in 2.1.1
- Reintroduce build for 1.19.3
- Soften Minecraft version bounds on some versions:
- 1.20.4 now allows 1.20.2, 1.20.3 and 1.20.4
- 1.19.2 now allows 1.19, 1.19.1 and 1.19.2
10 changes: 8 additions & 2 deletions client/root.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ preprocess {
val forge11904 = createNode("1.19.4-forge", 11904, "official")
val fabric11904 = createNode("1.19.4-fabric", 11904, "official")

val forge11903 = createNode("1.19.3-forge", 11903, "official")
val fabric11903 = createNode("1.19.3-fabric", 11903, "official")

val forge11902 = createNode("1.19.2-forge", 11902, "official")
val fabric11902 = createNode("1.19.2-fabric", 11902, "official")

Expand All @@ -44,8 +47,11 @@ preprocess {
// fabric 1.19.4 main project
forge11904.link(fabric11904)

fabric11902.link(fabric11904, file("1.19.2-1.19.3.txt"))
forge11902.link(forge11904, file("1.19.2-1.19.3.txt"))
fabric11903.link(fabric11904)
forge11903.link(forge11904)

fabric11902.link(fabric11903, file("1.19.2-1.19.3.txt"))
forge11902.link(forge11903, file("1.19.2-1.19.3.txt"))

fabric11802.link(fabric11902)
forge11802.link(forge11902, file("1.18.2-1.19.2.txt"))
Expand Down
10 changes: 7 additions & 3 deletions client/versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ neoForgeVersion = "[20,)"

[12004]
forgeVersion = "[49,)"
mcVersions = ["1.20.3", "1.20.4"]
mcVersions = ["1.20.2", "1.20.3", "1.20.4"]

[12001]
forgeVersion = "[46,)"
Expand All @@ -15,9 +15,13 @@ mcVersions = ["1.20", "1.20.1"]
forgeVersion = "[45,)"
mcVersions = ["1.19.4"]

[11903]
forgeVersion = "[44,)"
mcVersions = ["1.19.3"]

[11902]
forgeVersion = "[43,)"
mcVersions = ["1.19.2"]
forgeVersion = "[41,)"
mcVersions = [">=1.19 <1.19.3"]

[11802]
forgeVersion = "[40,)"
Expand Down

0 comments on commit 281eaac

Please sign in to comment.