-
-
Notifications
You must be signed in to change notification settings - Fork 512
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- tentatively synced with multiloader template for 1.21.1 (except with more recent versions of various suggested dependencies) - applied more generic property expansion to pack.mcmeta, loader-specific mod metadata files, mixin configurations, and Patchouli book.json - Gradle wrapper updated to 8.12; removed usages of deprecated features - Spotless plugin updated to 7.0.2 (TODO: check everything still works as expected) - PDM tool version updated only to 6.55.0 (TODO: once everything compiles, we need to make sure we don't use any deprecated features and then upgrade to version 7.x) - updated mod dependencies to reasonably recent 1.21.1 versions - converted Xplat accesswidener config to accesstransformer
- Loading branch information
1 parent
75b1ade
commit cb4b813
Showing
21 changed files
with
422 additions
and
441 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"schemaVersion": 1, | ||
"id": "botania", | ||
"id": "${mod_id}", | ||
"version": "${version}", | ||
|
||
"name": "Botania", | ||
"description": "Botania is a tech mod themed around natural magic", | ||
"name": "${mod_name}", | ||
"description": "${description}", | ||
"authors": [ | ||
"Vazkii", | ||
"wiiv", | ||
|
@@ -19,12 +19,12 @@ | |
"contact": { | ||
"irc": "ircs://irc.esper.net:6697/#vazkii", | ||
"email": "~williewillus/[email protected]", | ||
"homepage": "https://botaniamod.net", | ||
"sources": "https://github.com/VazkiiMods/Botania", | ||
"issues": "https://github.com/VazkiiMods/Botania/issues" | ||
"homepage": "${website_url}", | ||
"sources": "${sources_url}", | ||
"issues": "${issues_url}" | ||
}, | ||
|
||
"license": "Botania license", | ||
"license": "${license}", | ||
"icon": "logo.png", | ||
|
||
"environment": "*", | ||
|
@@ -75,16 +75,17 @@ | |
] | ||
}, | ||
"mixins": [ | ||
"botania_xplat.mixins.json", | ||
"botania_fabric.mixins.json" | ||
"botania.xplat.mixins.json", | ||
"botania.fabric.mixins.json" | ||
], | ||
"accessWidener": "botania.accesswidener", | ||
|
||
"depends": { | ||
"fabricloader": ">=0.16.0", | ||
"fabric-api": ">=0.97", | ||
"minecraft": "=1.20.4", | ||
"trinkets" : ">=3.8", | ||
"fabricloader": ">=${fabric_loader_version}", | ||
"fabric-api": "*", | ||
"minecraft": "${minecraft_version}", | ||
"java": "${java_version}", | ||
"trinkets" : "*", | ||
"patchouli": "*" | ||
}, | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.