2.2.1+1.21.7
on Aug 10, 20252.2.1+1.21.8
on Aug 10, 20252.2.1+1.21.6
on Aug 10, 20252.2.1+1.21.4
on Aug 10, 20252.2+1.21.8
on Aug 10, 20252.2+1.21.7
on Aug 10, 20252.2+1.21.6
on Aug 10, 20252.2+1.21.4
on Aug 10, 20252.1+1.21.7
on Aug 5, 20252.1+1.21.8
on Aug 5, 20252.1+1.21.6
on Aug 5, 20252.1+1.21.4
on Aug 5, 20252.0+1.21.7
on Aug 2, 20252.0+1.21.6
on Aug 2, 20252.0+1.21.8
on Jul 26, 20252.0+1.21.4
on Jul 26, 2025No changelog was specified.
Custom Model Data Viewer 1.1+1.21.4
on Jan 21, 2025Changelog (1.1)
- New Custom Icon: Updated the creative tab icon to a custom-model-data debug stick.
- Added Model & Texture: Introduced
cmdv.jsonandcmdv.pngfor the new custom model. - Debug Stick Override: Created
debug_stick.jsonto apply the custom model data logic. - Metadata Updates: Changed authors to ModLabs and added homepage/issues/source links in
fabric.mod.json. - Version Bump: Increased the mod version from
1.0to1.1.
Custom Model Data Viewer 1.0+1.21.4
on Jan 21, 2025CustomModelDataViewer is a lightweight mod that adds a dedicated creative tab for all items using the new 1.21.4+ CustomModelDataComponent. It automatically detects any items referencing a customModelData string (like in the example .json snippet) and organizes them in one convenient location. This makes it easier for resource pack creators and modders to quickly review, test, and manage custom item models without searching through standard tabs or multiple files.
Example Item:
assets/minecraft/items/brown_dye.json
{
"model": {
"type": "minecraft:select",
"property": "minecraft:custom_model_data",
"cases": [
{
"when": "old_hat",
"model": {
"type": "minecraft:model",
"model": "skyrealm:item/hats/old_hat",
"tints": [
{
"type": "minecraft:custom_model_data",
"default": 15702017
}
]
}
}
],
"fallback": {
"type": "minecraft:model",
"model": "minecraft:item/brown_dye"
}
}
}


