1
0
mirror of https://github.com/chylex/Minecraft-Window-Title.git synced 2025-05-29 02:34:07 +02:00

Fix mod metadata files

This commit is contained in:
chylex 2021-11-25 22:25:27 +01:00
parent 2c12af5fa8
commit d070b4b22f
Signed by: chylex
GPG Key ID: 4DE42C8F19A80548
2 changed files with 14 additions and 12 deletions
Fabric/src/main/resources
Forge/src/main/resources/META-INF

View File

@ -1,20 +1,21 @@
{ {
"schemaVersion": 1, "schemaVersion": 1,
"id": "customwindowtitle", "id": "customwindowtitle",
"name": "${name}",
"description": "${description}",
"version": "${version}", "version": "${version}",
"license": "${license}",
"name": "Custom Window Title",
"authors": [ "authors": [
"chylex" "${author}"
], ],
"contact": { "contact": {
"homepage": "https://chylex.com", "homepage": "https://chylex.com",
"sources": "https://github.com/chylex/Minecraft-Window-Title", "issues": "${issuesURL}",
"issues": "https://github.com/chylex/Minecraft-Window-Title/issues" "sources": "${sourcesURL}"
}, },
"license": "Unlicense",
"environment": "client", "environment": "client",
"entrypoints": { "entrypoints": {
"client": [ "client": [

View File

@ -1,15 +1,16 @@
modLoader = "javafml" modLoader = "javafml"
loaderVersion = "[31,)" loaderVersion = "[31,)"
authors = "chylex" authors = "${author}"
license = "Unlicense" license = "${license}"
issueTrackerURL = "https://github.com/chylex/Minecraft-Window-Title/issues" issueTrackerURL = "${issuesURL}"
[[mods]] [[mods]]
modId = "customwindowtitle" modId = "customwindowtitle"
version = "1.1.0" version = "${version}"
displayName = "Custom Window Title" displayName = "${name}"
displayURL = "https://github.com/chylex/Minecraft-Window-Title" description = "${description}"
displayURL = "${sourcesURL}"
[[dependencies.customwindowtitle]] [[dependencies.customwindowtitle]]
modId = "minecraft" modId = "minecraft"