Skip to content

Commit

Permalink
Fix (neo)forge mods.toml structure issues + LGPL-3.0-only
Browse files Browse the repository at this point in the history
  • Loading branch information
Richy-Z committed Aug 5, 2024
1 parent 4d974bf commit a731389
Show file tree
Hide file tree
Showing 7 changed files with 684 additions and 121 deletions.
675 changes: 675 additions & 0 deletions COPYING.LESSER

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
"name": "ThreatenGL",
"description": "Threatens Minecraft to use a different version of OpenGL.",

"license": "LGPL-3.0-only",

"authors": [
{
"name": "Richy Z",
Expand Down Expand Up @@ -49,8 +51,5 @@
"minecraft": ">=1.17",

"fabricloader": ">=0.15.11"
},
"suggests": {
"another-mod": "*"
}
}
13 changes: 2 additions & 11 deletions forge/src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ modLoader = "javafml"
# Forge 1.17.1 and up
loaderVersion = "[37,)"
issueTrackerURL = "https://github.com/Numelon-Softworks/ThreatenGL/issues"
license = "Unknown"
license = "LGPL-3.0-only"

[[mods]]
modId = "threatengl"
Expand All @@ -29,13 +29,4 @@ modId = "minecraft"
mandatory = true
versionRange = "[1.17,)"
ordering = "NONE"
side = "CLIENT"

#[[dependencies.threatengl]]
#modId = "architectury"
#mandatory = false
# architectury api 2.10.12 is the last version to support minecraft 1.17.1
# versionRange = "[11.1.17,)"
#versionRange = "[2.10.12,)"
#ordering = "AFTER"
#side = "CLIENT"
side = "CLIENT"
13 changes: 2 additions & 11 deletions neoforge/src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
modLoader = "javafml"
loaderVersion = "[2,)"
loaderVersion = "[1,)"
issueTrackerURL = "https://github.com/Numelon-Softworks/ThreatenGL/issues"
license = "Unknown"
license = "LGPL-3.0-only"

[[mods]]
modId = "threatengl"
Expand Down Expand Up @@ -33,14 +33,5 @@ versionRange = "[1.20.1,)"
ordering = "NONE"
side = "CLIENT"

#[[dependencies.threatengl]]
#modId = "architectury"
#type = "optional"
# NeoForge specific versions of architectury arent available for 1.20.1
# however Forge specific versions are, and this is the last version supporting 1.20.1
#versionRange = "[9.2.14,)"
#ordering = "AFTER"
#side = "CLIENT"

[[mixins]]
config = "threatengl.mixins.json"
46 changes: 0 additions & 46 deletions neoforge/src/main/resources/META-INF/neoforge.mods.toml

This file was deleted.

3 changes: 3 additions & 0 deletions quilt/src/main/resources/quilt.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
"metadata": {
"name": "ThreatenGL",
"description": "Threatens Minecraft to use a different version of OpenGL.",

"license": "LGPL-3.0-only",

"contributors": {
"Richy Z": "Lead Developer",
"Numelon": "Organisation"
Expand Down
50 changes: 0 additions & 50 deletions quilt/src/main/resources/quilt.mod.old-depends.json

This file was deleted.

0 comments on commit a731389

Please sign in to comment.