Skip to content

Commit

Permalink
Sigh...
Browse files Browse the repository at this point in the history
  • Loading branch information
enjarai committed Oct 12, 2024
1 parent e105e84 commit ad5f8f8
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 106 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
- Fixed a critical crash at startup.
- Fixed some other minor issues.
- Removed broken compatibility with Camera Overhaul.
6 changes: 6 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,12 @@ dependencies {
val (modid, version) = it.split('=')
modCompileOnly(modrinth(modid, version))
}
for (it in property("deps.compat_runtime").toString().split(',')) {
@Suppress("UselessCallOnNotNull")
if (it.isNullOrBlank()) continue
val (modid, version) = it.split('=')
modLocalRuntime(modCompileOnly(modrinth(modid, version))!!)
}
}

// Loom config
Expand Down
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ org.gradle.caching.debug=false
org.gradle.configureondemand=true

# Mod Properties
mod.version=3.7.1
mod.version=3.7.2
mod.group=nl.enjarai
mod.id=do_a_barrel_roll
mod.name=Do a Barrel Roll
Expand All @@ -26,6 +26,7 @@ deps.fapi=[VERSIONED]
deps.modmenu=[VERSIONED]
deps.fml=[VERSIONED]
deps.compat=[VERSIONED]
deps.compat_runtime=[VERSIONED]
mod.mc_dep=[VERSIONED]
mod.mc_title=[VERSIONED]
mod.mc_targets=[VERSIONED]
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
},
"mixins": [
"do_a_barrel_roll.mixins.json",
"do_a_barrel_roll.compat.cameraoverhaul.mixins.json",
"do_a_barrel_roll.compat.modmenu.mixins.json"
],
"accessWidener": "do_a_barrel_roll.accesswidener",
Expand Down
3 changes: 2 additions & 1 deletion versions/1.21-fabric/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ loom.platform=fabric
# Global
deps.yarn_build=9
deps.compat=\
controlify=2.0.0-beta.14+1.21-fabric
controlify=2.0.0-beta.14+1.21-fabric
deps.compat_runtime=

# Fabric
deps.fapi=0.102.0+1.21
Expand Down
1 change: 1 addition & 0 deletions versions/1.21-neoforge/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ loom.platform=neoforge
# Global
deps.yarn_build=9
deps.compat=
deps.compat_runtime=

# Forge
deps.fapi=0.101.2+2.0.10+1.21
Expand Down

0 comments on commit ad5f8f8

Please sign in to comment.