Skip to content

Commit

Permalink
Add forgotten optional dependency on AppliedE
Browse files Browse the repository at this point in the history
  • Loading branch information
62832 committed May 5, 2024
1 parent 2340371 commit 9d01031
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ jobs:
appmek(optional){curseforge:574300}{modrinth:IiATswDj}
appbot(optional){curseforge:610632}{modrinth:545hUrw9}
arseng(optional){curseforge:905641}{modrinth:IJI3QuK8}
appliede(optional){curseforge:1009940}{modrinth:SyKS54UY}
ae2wtlib(optional){curseforge:459929}{modrinth:pNabrMMw}
cloth_config(required){curseforge:348521}{modrinth:9s6osm5g}
Expand Down
3 changes: 2 additions & 1 deletion forge/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ tasks.processResources {
"appmekVersion" to libs.versions.appmek.get(),
"loaderVersion" to libs.forge.get().version!!.substringAfter('-')
.substringBefore('.'),
"ae2VersionEnd" to libs.versions.ae2.get().substringBefore('.').toInt() + 1
"ae2VersionEnd" to libs.versions.ae2.get().substringBefore('.').toInt() + 1,
"appliedeVersion" to libs.versions.appliede.get(),
)

inputs.properties(commonProps)
Expand Down
11 changes: 9 additions & 2 deletions forge/src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,19 @@ description = "ME Greater Accumulation Cells - For when kilobytes just won't do.
side = "BOTH"

[[dependencies.megacells]]
modId="appbot"
mandatory=false
modId = "appbot"
mandatory = false
versionRange = "[$appbotVersion,)"
ordering = "AFTER"
side = "BOTH"

[[dependencies.megacells]]
modId = "appliede"
mandatory = false
versionRange = "[$appliedeVersion,)"
ordering = "AFTER"
side = "BOTH"

[[dependencies.megacells]]
modId = "cloth_config"
mandatory = true
Expand Down

0 comments on commit 9d01031

Please sign in to comment.