diff --git a/gradle.properties b/gradle.properties index c383bf1..1770c64 100644 --- a/gradle.properties +++ b/gradle.properties @@ -9,11 +9,11 @@ yarn_mappings=1.20.1+build.10 loader_version=0.16.7 # Mod Properties -mod_version=1.0.7 +mod_version=1.1.0 maven_group=dev.bigduckie archives_base_name=static-content # Dependencies fabric_version=0.92.2+1.20.1 -static_data_version=1.0.7+1.20.1 \ No newline at end of file +static_data_version=1.1.0+1.20.1 \ No newline at end of file diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 53536be..6762cb1 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -1,29 +1,36 @@ { - "schemaVersion": 1, - "id": "static-content", - "version": "${version}", - "name": "Static Content", - "description": "Wrapper for Static Data that allows for easy registration of game content with cross-mod compatibility.", - "authors": [ - "Big Duckie", - "Draylar" - ], - "contact": { - "homepage": "https://fabricmc.net/", - "sources": "https://github.com/FabricMC/fabric-example-mod" - }, - "license": "MIT", - "icon": "assets/static-content/icon.png", - "environment": "*", - "entrypoints": { - "main": [ - "dev.bigduckie.staticcontent.StaticContent" - ] - }, - "depends": { - "fabricloader": ">=0.16.7", - "minecraft": "~1.20.1", - "java": ">=17", - "fabric-api": "*" - } + "schemaVersion": 1, + "id": "static-content", + "version": "${version}", + "name": "Static Content", + "description": "Wrapper for Static Data that allows for easy registration of game content with cross-mod compatibility.", + "authors": [ + "Big Duckie", + "Draylar" + ], + "contact": { + "homepage": "https://fabricmc.net/", + "sources": "https://github.com/FabricMC/fabric-example-mod" + }, + "license": "MIT", + "icon": "assets/static-content/icon.png", + "environment": "*", + "entrypoints": { + "main": [ + "dev.bigduckie.staticcontent.StaticContent" + ] + }, + "custom": { + "modmenu": { + "badges": [ + "library" + ] + } + }, + "depends": { + "fabricloader": ">=0.16.7", + "minecraft": "~1.20.1", + "java": ">=17", + "fabric-api": "*" + } } \ No newline at end of file