Skip to content

Commit

Permalink
added Roughly Enough Items to mod files for version checking
Browse files Browse the repository at this point in the history
  • Loading branch information
cech12 committed Jun 4, 2024
1 parent 49d65c6 commit a0d7b90
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ 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.20.4-3.1.2.1] - 2024-06-04
### Fixed
- fixed version checking at mod loader startup for Roughly Enough Items (all loaders)

## [1.20.4-3.1.2.0] - 2024-06-04
### Added
- added Roughly Enough Items (REI) support (version 14.1.727) (all loaders)
Expand Down
2 changes: 1 addition & 1 deletion fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies {

modCompileOnlyApi("me.shedaniel:RoughlyEnoughItems-api-fabric:$rei_version")
modRuntimeOnly "me.shedaniel:RoughlyEnoughItems-fabric:$rei_version"
modImplementation "dev.architectury:architectury-forge:$architectury_version"
modImplementation "dev.architectury:architectury-fabric:$architectury_version"

implementation group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.1'
compileOnly project(":common")
Expand Down
3 changes: 2 additions & 1 deletion fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
},
"recommends": {
"modmenu": ">=${mod_menu_version}",
"jei": ">=${jei_version}"
"jei": ">=${jei_version}",
"roughlyenoughitems": ">=${rei_version}"
}
}
7 changes: 7 additions & 0 deletions forge/src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,11 @@ mandatory=false
versionRange="${jei_version_range}"
referralUrl="https://github.com/mezz/JustEnoughItems"
ordering="NONE"
side="BOTH"
[[dependencies.${mod_id}]]
modId="roughlyenoughitems"
mandatory=false
versionRange="${rei_version_range}"
referralUrl="https://github.com/shedaniel/RoughlyEnoughItems"
ordering="NONE"
side="BOTH"
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# Project
group=de.cech12.solarcooker
mod_version=3.1.2.0
mod_version=3.1.2.1
mod_id=solarcooker
mod_name=Solar Cooker
mod_author=Cech12
Expand Down
7 changes: 7 additions & 0 deletions neoforge/src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ referralUrl="https://github.com/mezz/JustEnoughItems"
ordering="NONE"
side="BOTH"
[[dependencies.${mod_id}]]
modId="roughlyenoughitems"
type="optional"
versionRange="${rei_version_range}"
referralUrl="https://github.com/shedaniel/RoughlyEnoughItems"
ordering="NONE"
side="BOTH"
[[dependencies.${mod_id}]]
modId="theoneprobe"
type="optional"
versionRange="${top_version_range}"
Expand Down

0 comments on commit a0d7b90

Please sign in to comment.