Skip to content

Commit

Permalink
Update mod to Forge 1.19.2-43.2.0
Browse files Browse the repository at this point in the history
- fixed JEI support by updating JEI to 11.5.0.297
  • Loading branch information
cech12 committed Jan 19, 2023
1 parent b3dba60 commit 5f5668f
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 12 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/cicd-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]]
Expand Down

0 comments on commit 5f5668f

Please sign in to comment.