Some checks failed
build / build (push) Has been cancelled
- build.gradle: optional -Pplatform=<id> property switches the build into a fat-jar mode where javacv 1.5.13 + javacpp + ffmpeg 8.0.1 (java + the picked platform's native jar) are all nested into the mod jar via Fabric loom's `include` directive. Fabric loader unpacks them at runtime, so users no longer need -Xbootclasspath/a:... or 5 separate jars in .minecraft/libraries. - Without -Pplatform, the build produces the same small ~85KB vanilla jar as before, so devs/server-side and bring-your-own-JavaCV setups still work. - Per-platform artifacts: video_player-<platform>-0.4.8.jar where <platform> ∈ windows-x86_64 / linux-x86_64 / macosx-x86_64 / macosx-arm64. Sizes 21-32MB. - README: STEP 5 (the long JavaCV manual-install + -Xbootclasspath section) is gone. New STEP 4 just says 'pick the jar for your OS'. Also added a warning about removing the old -Xbootclasspath JVM arg when upgrading, since duplicate JavaCV on the boot classpath can silently break decoding.
17 lines
456 B
Properties
17 lines
456 B
Properties
org.gradle.jvmargs=-Xmx2G
|
|
org.gradle.parallel=true
|
|
# Config cache disabled — new loom + IntelliJ aren't fully compatible yet
|
|
org.gradle.configuration-cache=false
|
|
|
|
# Mod
|
|
mod_id=video_player
|
|
mod_version=0.4.8
|
|
maven_group=com.ejclaw.videoplayer
|
|
archives_base_name=video_player
|
|
|
|
# Minecraft / Fabric (26.1.2 — single target, intermediary/Yarn retired)
|
|
minecraft_version=26.1.2
|
|
loader_version=0.19.2
|
|
loom_version=1.16-SNAPSHOT
|
|
fabric_version=0.149.0+26.1.2
|