mirror of
https://github.com/TeamMidnightDust/CullLeaves.git
synced 2025-12-16 14:15:10 +01:00
release: v4.1.1
- Port to 1.21.11 (Mounts of Mayhem) - Add support for Sodium 0.8.0 - Update to MidnightLib 1.9.2
This commit is contained in:
40
versions/1.21.1-fabric/src/main/resources/fabric.mod.json
Normal file
40
versions/1.21.1-fabric/src/main/resources/fabric.mod.json
Normal file
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "cullleaves",
|
||||
"version": "${version}",
|
||||
|
||||
"name": "Cull Leaves",
|
||||
"description": "Adds culling to leaf blocks, providing a huge performance boost over vanilla.",
|
||||
"authors": [
|
||||
"Motschen",
|
||||
"TeamMidnightDust"
|
||||
],
|
||||
"contact": {
|
||||
"homepage": "https://www.midnightdust.eu/",
|
||||
"sources": "https://github.com/TeamMidnightDust/CullLeaves",
|
||||
"issues": "https://github.com/TeamMidnightDust/CullLeaves/issues"
|
||||
},
|
||||
|
||||
"license": "MIT",
|
||||
"icon": "assets/cullleaves/icon.png",
|
||||
|
||||
"environment": "client",
|
||||
"entrypoints": {
|
||||
"main": [
|
||||
"eu.midnightdust.cullleaves.CullLeavesClient"
|
||||
]
|
||||
},
|
||||
|
||||
"depends": {
|
||||
"midnightlib": "*",
|
||||
"minecraft": "${minecraft}"
|
||||
},
|
||||
"breaks": {
|
||||
"sodium": "<0.6.0"
|
||||
},
|
||||
|
||||
"mixins": [
|
||||
"cullleaves.mixins.json",
|
||||
"cullleaves-fabric.mixins.json"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
modLoader = "javafml"
|
||||
loaderVersion = "[1,)"
|
||||
#issueTrackerURL = ""
|
||||
license = "MIT License"
|
||||
|
||||
[[mods]]
|
||||
modId = "cullleaves"
|
||||
version = "${version}"
|
||||
displayName = "CullLeaves"
|
||||
authors = "Motschen, TeamMidnightDust"
|
||||
description = '''
|
||||
Adds culling to leaf blocks, providing a huge performance boost over vanilla.
|
||||
'''
|
||||
logoFile = "icon.png"
|
||||
|
||||
[[mixins]]
|
||||
config = "cullleaves.mixins.json"
|
||||
|
||||
[[mixins]]
|
||||
config = "cullleaves-neoforge.mixins.json"
|
||||
|
||||
[[dependencies.cullleaves]]
|
||||
modId = "neoforge"
|
||||
required = true
|
||||
versionRange = "[20.3,)"
|
||||
ordering = "NONE"
|
||||
side = "CLIENT"
|
||||
|
||||
[[dependencies.cullleaves]]
|
||||
modId = "minecraft"
|
||||
required = true
|
||||
versionRange = "${minecraft}"
|
||||
ordering = "NONE"
|
||||
side = "CLIENT"
|
||||
|
||||
[[dependencies.cullleaves]]
|
||||
modId = "midnightlib"
|
||||
required = true
|
||||
versionRange = "[1.0.0,)"
|
||||
ordering = "BEFORE"
|
||||
side = "CLIENT"
|
||||
@@ -1,5 +1,5 @@
|
||||
mod.mc_dep_fabric=>=1.21.9
|
||||
mod.mc_dep_forgelike=[1.21.9,)
|
||||
mod.mc_dep_fabric=>=1.21.9 <=1.21.10
|
||||
mod.mc_dep_forgelike=[1.21.9,1.21.10]
|
||||
mod.mc_title=1.21.10
|
||||
mod.mc_targets=1.21.9 1.21.10
|
||||
|
||||
|
||||
40
versions/1.21.10-fabric/src/main/resources/fabric.mod.json
Normal file
40
versions/1.21.10-fabric/src/main/resources/fabric.mod.json
Normal file
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "cullleaves",
|
||||
"version": "${version}",
|
||||
|
||||
"name": "Cull Leaves",
|
||||
"description": "Adds culling to leaf blocks, providing a huge performance boost over vanilla.",
|
||||
"authors": [
|
||||
"Motschen",
|
||||
"TeamMidnightDust"
|
||||
],
|
||||
"contact": {
|
||||
"homepage": "https://www.midnightdust.eu/",
|
||||
"sources": "https://github.com/TeamMidnightDust/CullLeaves",
|
||||
"issues": "https://github.com/TeamMidnightDust/CullLeaves/issues"
|
||||
},
|
||||
|
||||
"license": "MIT",
|
||||
"icon": "assets/cullleaves/icon.png",
|
||||
|
||||
"environment": "client",
|
||||
"entrypoints": {
|
||||
"main": [
|
||||
"eu.midnightdust.cullleaves.CullLeavesClient"
|
||||
]
|
||||
},
|
||||
|
||||
"depends": {
|
||||
"midnightlib": "*",
|
||||
"minecraft": "${minecraft}"
|
||||
},
|
||||
"breaks": {
|
||||
"sodium": "<0.6.0"
|
||||
},
|
||||
|
||||
"mixins": [
|
||||
"cullleaves.mixins.json",
|
||||
"cullleaves-fabric.mixins.json"
|
||||
]
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
mod.mc_dep_fabric=>=1.21.9
|
||||
mod.mc_dep_forgelike=[1.21.9,)
|
||||
mod.mc_dep_fabric=>=1.21.9 <=1.21.10
|
||||
mod.mc_dep_forgelike=[1.21.9,1.21.10]
|
||||
mod.mc_title=1.21.10
|
||||
mod.mc_targets=1.21.9 1.21.10
|
||||
|
||||
|
||||
@@ -0,0 +1,41 @@
|
||||
modLoader = "javafml"
|
||||
loaderVersion = "[1,)"
|
||||
#issueTrackerURL = ""
|
||||
license = "MIT License"
|
||||
|
||||
[[mods]]
|
||||
modId = "cullleaves"
|
||||
version = "${version}"
|
||||
displayName = "CullLeaves"
|
||||
authors = "Motschen, TeamMidnightDust"
|
||||
description = '''
|
||||
Adds culling to leaf blocks, providing a huge performance boost over vanilla.
|
||||
'''
|
||||
logoFile = "icon.png"
|
||||
|
||||
[[mixins]]
|
||||
config = "cullleaves.mixins.json"
|
||||
|
||||
[[mixins]]
|
||||
config = "cullleaves-neoforge.mixins.json"
|
||||
|
||||
[[dependencies.cullleaves]]
|
||||
modId = "neoforge"
|
||||
required = true
|
||||
versionRange = "[20.3,)"
|
||||
ordering = "NONE"
|
||||
side = "CLIENT"
|
||||
|
||||
[[dependencies.cullleaves]]
|
||||
modId = "minecraft"
|
||||
required = true
|
||||
versionRange = "${minecraft}"
|
||||
ordering = "NONE"
|
||||
side = "CLIENT"
|
||||
|
||||
[[dependencies.cullleaves]]
|
||||
modId = "midnightlib"
|
||||
required = true
|
||||
versionRange = "[1.0.0,)"
|
||||
ordering = "BEFORE"
|
||||
side = "CLIENT"
|
||||
13
versions/1.21.11-fabric/gradle.properties
Normal file
13
versions/1.21.11-fabric/gradle.properties
Normal file
@@ -0,0 +1,13 @@
|
||||
mod.mc_dep_fabric=>=1.21.11
|
||||
mod.mc_dep_forgelike=[1.21.11,)
|
||||
mod.mc_title=1.21.11
|
||||
mod.mc_targets=1.21.11
|
||||
|
||||
deps.forge_loader=0
|
||||
deps.neoforge_loader=21.11.3-beta
|
||||
|
||||
deps.fabric_version=0.139.4+1.21.11
|
||||
deps.modmenu_version=17.0.0-alpha.1
|
||||
deps.sodium_version=mc1.21.11-0.8.0
|
||||
|
||||
loom.platform=fabric
|
||||
43
versions/1.21.11-fabric/src/main/resources/fabric.mod.json
Normal file
43
versions/1.21.11-fabric/src/main/resources/fabric.mod.json
Normal file
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "cullleaves",
|
||||
"version": "${version}",
|
||||
|
||||
"name": "Cull Leaves",
|
||||
"description": "Adds culling to leaf blocks, providing a huge performance boost over vanilla.",
|
||||
"authors": [
|
||||
"Motschen",
|
||||
"TeamMidnightDust"
|
||||
],
|
||||
"contact": {
|
||||
"homepage": "https://www.midnightdust.eu/",
|
||||
"sources": "https://github.com/TeamMidnightDust/CullLeaves",
|
||||
"issues": "https://github.com/TeamMidnightDust/CullLeaves/issues"
|
||||
},
|
||||
|
||||
"license": "MIT",
|
||||
"icon": "assets/cullleaves/icon.png",
|
||||
|
||||
"environment": "client",
|
||||
"entrypoints": {
|
||||
"main": [
|
||||
"eu.midnightdust.cullleaves.CullLeavesClient"
|
||||
],
|
||||
"sodium:config_api_user": [
|
||||
"eu.midnightdust.cullleaves.config.SodiumConfigEntryPoint"
|
||||
]
|
||||
},
|
||||
|
||||
"depends": {
|
||||
"midnightlib": "*",
|
||||
"minecraft": "${minecraft}"
|
||||
},
|
||||
"breaks": {
|
||||
"sodium": "<0.6.0"
|
||||
},
|
||||
|
||||
"mixins": [
|
||||
"cullleaves.mixins.json",
|
||||
"cullleaves-fabric.mixins.json"
|
||||
]
|
||||
}
|
||||
13
versions/1.21.11-neoforge/gradle.properties
Normal file
13
versions/1.21.11-neoforge/gradle.properties
Normal file
@@ -0,0 +1,13 @@
|
||||
mod.mc_dep_fabric=>=1.21.11
|
||||
mod.mc_dep_forgelike=[1.21.11,)
|
||||
mod.mc_title=1.21.11
|
||||
mod.mc_targets=1.21.11
|
||||
|
||||
deps.forge_loader=0
|
||||
deps.neoforge_loader=21.11.3-beta
|
||||
|
||||
deps.fabric_version=0.139.4+1.21.11
|
||||
deps.modmenu_version=17.0.0-alpha.1
|
||||
deps.sodium_version=mc1.21.11-0.8.0
|
||||
|
||||
loom.platform=neoforge
|
||||
@@ -0,0 +1,44 @@
|
||||
modLoader = "javafml"
|
||||
loaderVersion = "[1,)"
|
||||
#issueTrackerURL = ""
|
||||
license = "MIT License"
|
||||
|
||||
[[mods]]
|
||||
modId = "cullleaves"
|
||||
version = "${version}"
|
||||
displayName = "CullLeaves"
|
||||
authors = "Motschen, TeamMidnightDust"
|
||||
description = '''
|
||||
Adds culling to leaf blocks, providing a huge performance boost over vanilla.
|
||||
'''
|
||||
logoFile = "icon.png"
|
||||
|
||||
[[mixins]]
|
||||
config = "cullleaves.mixins.json"
|
||||
|
||||
[[mixins]]
|
||||
config = "cullleaves-neoforge.mixins.json"
|
||||
|
||||
[modproperties.cullleaves]
|
||||
"sodium:config_api_user" = "eu.midnightdust.cullleaves.config.SodiumConfigEntryPoint"
|
||||
|
||||
[[dependencies.cullleaves]]
|
||||
modId = "neoforge"
|
||||
required = true
|
||||
versionRange = "[20.3,)"
|
||||
ordering = "NONE"
|
||||
side = "CLIENT"
|
||||
|
||||
[[dependencies.cullleaves]]
|
||||
modId = "minecraft"
|
||||
required = true
|
||||
versionRange = "${minecraft}"
|
||||
ordering = "NONE"
|
||||
side = "CLIENT"
|
||||
|
||||
[[dependencies.cullleaves]]
|
||||
modId = "midnightlib"
|
||||
required = true
|
||||
versionRange = "[1.0.0,)"
|
||||
ordering = "BEFORE"
|
||||
side = "CLIENT"
|
||||
40
versions/1.21.5-fabric/src/main/resources/fabric.mod.json
Normal file
40
versions/1.21.5-fabric/src/main/resources/fabric.mod.json
Normal file
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "cullleaves",
|
||||
"version": "${version}",
|
||||
|
||||
"name": "Cull Leaves",
|
||||
"description": "Adds culling to leaf blocks, providing a huge performance boost over vanilla.",
|
||||
"authors": [
|
||||
"Motschen",
|
||||
"TeamMidnightDust"
|
||||
],
|
||||
"contact": {
|
||||
"homepage": "https://www.midnightdust.eu/",
|
||||
"sources": "https://github.com/TeamMidnightDust/CullLeaves",
|
||||
"issues": "https://github.com/TeamMidnightDust/CullLeaves/issues"
|
||||
},
|
||||
|
||||
"license": "MIT",
|
||||
"icon": "assets/cullleaves/icon.png",
|
||||
|
||||
"environment": "client",
|
||||
"entrypoints": {
|
||||
"main": [
|
||||
"eu.midnightdust.cullleaves.CullLeavesClient"
|
||||
]
|
||||
},
|
||||
|
||||
"depends": {
|
||||
"midnightlib": "*",
|
||||
"minecraft": "${minecraft}"
|
||||
},
|
||||
"breaks": {
|
||||
"sodium": "<0.6.0"
|
||||
},
|
||||
|
||||
"mixins": [
|
||||
"cullleaves.mixins.json",
|
||||
"cullleaves-fabric.mixins.json"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
modLoader = "javafml"
|
||||
loaderVersion = "[1,)"
|
||||
#issueTrackerURL = ""
|
||||
license = "MIT License"
|
||||
|
||||
[[mods]]
|
||||
modId = "cullleaves"
|
||||
version = "${version}"
|
||||
displayName = "CullLeaves"
|
||||
authors = "Motschen, TeamMidnightDust"
|
||||
description = '''
|
||||
Adds culling to leaf blocks, providing a huge performance boost over vanilla.
|
||||
'''
|
||||
logoFile = "icon.png"
|
||||
|
||||
[[mixins]]
|
||||
config = "cullleaves.mixins.json"
|
||||
|
||||
[[mixins]]
|
||||
config = "cullleaves-neoforge.mixins.json"
|
||||
|
||||
[[dependencies.cullleaves]]
|
||||
modId = "neoforge"
|
||||
required = true
|
||||
versionRange = "[20.3,)"
|
||||
ordering = "NONE"
|
||||
side = "CLIENT"
|
||||
|
||||
[[dependencies.cullleaves]]
|
||||
modId = "minecraft"
|
||||
required = true
|
||||
versionRange = "${minecraft}"
|
||||
ordering = "NONE"
|
||||
side = "CLIENT"
|
||||
|
||||
[[dependencies.cullleaves]]
|
||||
modId = "midnightlib"
|
||||
required = true
|
||||
versionRange = "[1.0.0,)"
|
||||
ordering = "BEFORE"
|
||||
side = "CLIENT"
|
||||
40
versions/1.21.8-fabric/src/main/resources/fabric.mod.json
Normal file
40
versions/1.21.8-fabric/src/main/resources/fabric.mod.json
Normal file
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "cullleaves",
|
||||
"version": "${version}",
|
||||
|
||||
"name": "Cull Leaves",
|
||||
"description": "Adds culling to leaf blocks, providing a huge performance boost over vanilla.",
|
||||
"authors": [
|
||||
"Motschen",
|
||||
"TeamMidnightDust"
|
||||
],
|
||||
"contact": {
|
||||
"homepage": "https://www.midnightdust.eu/",
|
||||
"sources": "https://github.com/TeamMidnightDust/CullLeaves",
|
||||
"issues": "https://github.com/TeamMidnightDust/CullLeaves/issues"
|
||||
},
|
||||
|
||||
"license": "MIT",
|
||||
"icon": "assets/cullleaves/icon.png",
|
||||
|
||||
"environment": "client",
|
||||
"entrypoints": {
|
||||
"main": [
|
||||
"eu.midnightdust.cullleaves.CullLeavesClient"
|
||||
]
|
||||
},
|
||||
|
||||
"depends": {
|
||||
"midnightlib": "*",
|
||||
"minecraft": "${minecraft}"
|
||||
},
|
||||
"breaks": {
|
||||
"sodium": "<0.6.0"
|
||||
},
|
||||
|
||||
"mixins": [
|
||||
"cullleaves.mixins.json",
|
||||
"cullleaves-fabric.mixins.json"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
modLoader = "javafml"
|
||||
loaderVersion = "[1,)"
|
||||
#issueTrackerURL = ""
|
||||
license = "MIT License"
|
||||
|
||||
[[mods]]
|
||||
modId = "cullleaves"
|
||||
version = "${version}"
|
||||
displayName = "CullLeaves"
|
||||
authors = "Motschen, TeamMidnightDust"
|
||||
description = '''
|
||||
Adds culling to leaf blocks, providing a huge performance boost over vanilla.
|
||||
'''
|
||||
logoFile = "icon.png"
|
||||
|
||||
[[mixins]]
|
||||
config = "cullleaves.mixins.json"
|
||||
|
||||
[[mixins]]
|
||||
config = "cullleaves-neoforge.mixins.json"
|
||||
|
||||
[[dependencies.cullleaves]]
|
||||
modId = "neoforge"
|
||||
required = true
|
||||
versionRange = "[20.3,)"
|
||||
ordering = "NONE"
|
||||
side = "CLIENT"
|
||||
|
||||
[[dependencies.cullleaves]]
|
||||
modId = "minecraft"
|
||||
required = true
|
||||
versionRange = "${minecraft}"
|
||||
ordering = "NONE"
|
||||
side = "CLIENT"
|
||||
|
||||
[[dependencies.cullleaves]]
|
||||
modId = "midnightlib"
|
||||
required = true
|
||||
versionRange = "[1.0.0,)"
|
||||
ordering = "BEFORE"
|
||||
side = "CLIENT"
|
||||
Reference in New Issue
Block a user