diff --git a/.github/workflows/cicd-workflow.yml b/.github/workflows/cicd-workflow.yml index 5e99e5e..c560b4a 100644 --- a/.github/workflows/cicd-workflow.yml +++ b/.github/workflows/cicd-workflow.yml @@ -55,8 +55,6 @@ jobs: java-version: 17 curseforge-id: 436874 game-versions: | - 1.19 - 1.19.1 1.19.2 release-type: release secrets: @@ -70,8 +68,6 @@ jobs: java-version: 17 modrinth-id: IsSapAeq game-versions: | - 1.19 - 1.19.1 1.19.2 release-type: release secrets: diff --git a/CHANGELOG.md b/CHANGELOG.md index 2638b4f..b3ac047 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Forge Recommended Versioning](https://mcforge.readthedocs.io/en/latest/conventions/versioning/). +## [1.19.2-1.2.2.0] - 2023-01-19 +### Changed +- Update mod to Forge 1.19.2-43.2.0 + +### Added +- Added pt_br language support (thanks to FITFC) #19 + +### Fixed +- fixed JEI support by updating JEI to 11.5.0.297 (thanks to Tenchu98 for the report) + ## [1.19-1.2.1.0] - 2022-09-20 ### Added - The One Probe support - Show cooking time of Solar Cooker diff --git a/gradle.properties b/gradle.properties index 8fd6d68..ef25755 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,12 +4,12 @@ org.gradle.jvmargs=-Xmx3G org.gradle.daemon=false mod_id=solarcooker -mod_version=1.2.1.0 -minecraft_version=1.19 -forge_version=41.0.96 +mod_version=1.2.2.0 +minecraft_version=1.19.2 +forge_version=43.2.0 # jei -jei_version=11.0.0.211 +jei_version=11.5.0.297 #the one probe top_version=1.19-6.2.0-6 diff --git a/src/main/java/cech12/solarcooker/jei/SolarCookingCategory.java b/src/main/java/cech12/solarcooker/jei/SolarCookingCategory.java index fa584e2..da9a4cb 100644 --- a/src/main/java/cech12/solarcooker/jei/SolarCookingCategory.java +++ b/src/main/java/cech12/solarcooker/jei/SolarCookingCategory.java @@ -6,7 +6,7 @@ import cech12.solarcooker.init.ModRecipeTypes; import mezz.jei.api.helpers.IGuiHelper; import mezz.jei.api.recipe.RecipeType; -import mezz.jei.common.plugins.vanilla.cooking.AbstractCookingCategory; +import mezz.jei.library.plugins.vanilla.cooking.AbstractCookingCategory; import javax.annotation.Nonnull; diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index 249584e..2f45d38 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -15,19 +15,19 @@ license="The MIT License (MIT)" [[dependencies.solarcooker]] modId="forge" mandatory=true - versionRange="[41.0.96,)" + versionRange="[43.2.0,)" ordering="NONE" side="BOTH" [[dependencies.solarcooker]] modId="minecraft" mandatory=true - versionRange="[1.19,1.20)" + versionRange="[1.19.2,1.19.3)" ordering="NONE" side="BOTH" [[dependencies.solarcooker]] modId="jei" mandatory=false - versionRange="[11.0.0.211,)" + versionRange="[11.5.0.297,)" ordering="NONE" side="BOTH" [[dependencies.solarcooker]]