Files
mc_video_player_mod/src/main/resources/fabric.mod.json
tkrmagid 8f69814cb2
Some checks failed
build / build (push) Has been cancelled
build: switch toolchain to MC 26.1.2 (intermediary retired)
- net.fabricmc.fabric-loom 1.16-SNAPSHOT (no remap; MC 26.1+ ships unobfuscated)
- gradle.properties: minecraft_version=26.1.2, loader=0.19.2, fabric-api=0.149.0+26.1.2
- Java 25 toolchain
- fabric.mod.json: fabricloader>=0.19.0, java>=25
- Drop multi-version build script + matrix CI (single-target now)
- Backup of 1.21.6/7/8 working tree preserved on mc-1.21.x branch

Source migration to Mojmap names is in progress on follow-up commits;
this commit alone will not build until source files are ported.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-15 19:09:59 +09:00

25 lines
699 B
JSON

{
"schemaVersion": 1,
"id": "${mod_id}",
"version": "${version}",
"name": "영상재생모드",
"description": "Play arbitrary mp4 URLs on block surfaces in Minecraft (Fabric).",
"authors": [ "tkrmagid" ],
"contact": {
"homepage": "https://git.tkrmagid.kr/tkrmagid/mc_video_player_mod",
"sources": "https://git.tkrmagid.kr/tkrmagid/mc_video_player_mod"
},
"license": "MIT",
"environment": "*",
"entrypoints": {
"main": [ "com.ejclaw.videoplayer.VideoPlayerMod" ],
"client": [ "com.ejclaw.videoplayer.VideoPlayerClient" ]
},
"depends": {
"fabricloader": ">=0.19.0",
"fabric-api": "*",
"minecraft": "${target_minecraft}",
"java": ">=25"
}
}