mirror of
https://github.com/AlmostReliable/almostunified.git
synced 2024-11-27 10:05:47 -05:00
downgrade to make all 1.19+ versions compatible
This commit is contained in:
parent
81d7b58ab2
commit
49436425f7
5 changed files with 20 additions and 9 deletions
12
.github/workflows/release.yml
vendored
12
.github/workflows/release.yml
vendored
|
@ -82,7 +82,11 @@ jobs:
|
|||
changelog-file: changes.md
|
||||
|
||||
loaders: fabric
|
||||
game-versions: ${{ env.MINECRAFT_VERSION }}
|
||||
# TODO: change this when updating to 1.19.2
|
||||
game-versions: |
|
||||
1.19
|
||||
1.19.1
|
||||
1.19.2
|
||||
version-resolver: exact
|
||||
java: ${{ env.JAVA_VERSION }}
|
||||
|
||||
|
@ -112,7 +116,11 @@ jobs:
|
|||
changelog-file: changes.md
|
||||
|
||||
loaders: forge
|
||||
game-versions: ${{ env.MINECRAFT_VERSION }}
|
||||
# TODO: change this when updating to 1.19.2
|
||||
game-versions: |
|
||||
1.19
|
||||
1.19.1
|
||||
1.19.2
|
||||
version-resolver: exact
|
||||
java: ${{ env.JAVA_VERSION }}
|
||||
|
||||
|
|
|
@ -34,7 +34,8 @@ dependencies {
|
|||
minecraft("com.mojang:minecraft:${minecraftVersion}")
|
||||
mappings(loom.layered {
|
||||
officialMojangMappings()
|
||||
parchment("org.parchmentmc.data:${mappingsChannel}-${minecraftVersion}:${mappingsVersion}@zip")
|
||||
// TODO: change this when updating to 1.19.2
|
||||
parchment("org.parchmentmc.data:${mappingsChannel}-${minecraftVersion}.2:${mappingsVersion}@zip")
|
||||
})
|
||||
implementation("com.google.code.findbugs:jsr305:3.0.2")
|
||||
|
||||
|
|
|
@ -24,7 +24,8 @@ dependencies {
|
|||
minecraft("com.mojang:minecraft:${minecraftVersion}")
|
||||
mappings(loom.layered {
|
||||
officialMojangMappings()
|
||||
parchment("org.parchmentmc.data:${mappingsChannel}-${minecraftVersion}:${mappingsVersion}@zip")
|
||||
// TODO: change this when updating to 1.19.2
|
||||
parchment("org.parchmentmc.data:${mappingsChannel}-${minecraftVersion}.2:${mappingsVersion}@zip")
|
||||
})
|
||||
implementation("com.google.code.findbugs:jsr305:3.0.2")
|
||||
|
||||
|
|
|
@ -23,7 +23,8 @@ base {
|
|||
}
|
||||
|
||||
minecraft {
|
||||
mappings(mappingsChannel, "${mappingsVersion}-${minecraftVersion}")
|
||||
// TODO: change this when updating to 1.19.2
|
||||
mappings(mappingsChannel, "1.18.2-${mappingsVersion}-${minecraftVersion}")
|
||||
|
||||
runs {
|
||||
create("client") {
|
||||
|
|
|
@ -5,14 +5,14 @@ license = LGPL-3.0
|
|||
mixinVersion = 0.8.5
|
||||
|
||||
# Common
|
||||
minecraftVersion = 1.19.2
|
||||
minecraftVersion = 1.19
|
||||
|
||||
# Forge
|
||||
forgeVersion = 43.1.2
|
||||
forgeMinVersion = 43
|
||||
forgeVersion = 41.1.0
|
||||
forgeMinVersion = 41
|
||||
|
||||
# Fabric
|
||||
fabricVersion = 0.60.0+1.19.2
|
||||
fabricVersion = 0.58.0+1.19
|
||||
fabricLoaderVersion = 0.14.9
|
||||
|
||||
# Dependencies
|
||||
|
|
Loading…
Reference in a new issue