diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fbf37fd..0fef338 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 }} diff --git a/Common/build.gradle.kts b/Common/build.gradle.kts index 267005a..6652a2f 100644 --- a/Common/build.gradle.kts +++ b/Common/build.gradle.kts @@ -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") diff --git a/Fabric/build.gradle.kts b/Fabric/build.gradle.kts index decbead..212a078 100644 --- a/Fabric/build.gradle.kts +++ b/Fabric/build.gradle.kts @@ -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") diff --git a/Forge/build.gradle.kts b/Forge/build.gradle.kts index c10b9ca..caf22a0 100644 --- a/Forge/build.gradle.kts +++ b/Forge/build.gradle.kts @@ -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") { diff --git a/gradle.properties b/gradle.properties index a5e6424..fa3f733 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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