Skip to content

Commit

Permalink
⬆️ include/shade imgui thing, 1.3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
asoji committed Oct 3, 2024
1 parent aeb2f94 commit 3259704
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -126,14 +126,16 @@ dependencies {
"natives-windows" to false,
"natives-linux" to false,
"natives-macos" to false
).forEach { (module) ->
).forEach { (module, bundled) ->
val version = "1.87.1"
api("io.github.spair:imgui-java-$module:$version") {
exclude(group = "org.lwjgl")
}

shade("io.github.spair:imgui-java-$module:$version") {
exclude(group = "org.lwjgl")
if (bundled) {
include("io.github.spair:imgui-java-$module:$version")
} else {
shade("io.github.spair:imgui-java-$module:$version")
}

}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx4G
org.gradle.parallel=true

# Mod Properties
mod_version=1.3.8
mod_version=1.3.9
maven_group=gay.asoji
archives_base_name=innerpastels

Expand Down

0 comments on commit 3259704

Please sign in to comment.