1
0
mirror of https://github.com/chylex/Minecraft-Window-Title.git synced 2025-05-05 22:34:05 +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,
"id": "customwindowtitle",
"name": "${name}",
"description": "${description}",
"version": "${version}",
"license": "${license}",
"name": "Custom Window Title",
"authors": [
"chylex"
"${author}"
],
"contact": {
"homepage": "https://chylex.com",
"sources": "https://github.com/chylex/Minecraft-Window-Title",
"issues": "https://github.com/chylex/Minecraft-Window-Title/issues"
"issues": "${issuesURL}",
"sources": "${sourcesURL}"
},
"license": "Unlicense",
"environment": "client",
"entrypoints": {
"client": [

View File

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