mirror of
https://github.com/chylex/Better-Controls.git
synced 2024-11-24 16:42:45 +01:00
Compare commits
2 Commits
73a6571f20
...
476689deb9
Author | SHA1 | Date | |
---|---|---|---|
476689deb9 | |||
2da9a54f2f |
Binary file not shown.
Before Width: | Height: | Size: 21 KiB |
@ -6,7 +6,7 @@
|
|||||||
"version": "${version}",
|
"version": "${version}",
|
||||||
"license": "${license}",
|
"license": "${license}",
|
||||||
|
|
||||||
"icon": "assets/bettercontrols/icon.png",
|
"icon": "assets/${id}/logo.png",
|
||||||
|
|
||||||
"authors": [
|
"authors": [
|
||||||
"${author}"
|
"${author}"
|
||||||
|
@ -11,7 +11,7 @@ displayURL = "${sourcesURL}"
|
|||||||
description = "${description}"
|
description = "${description}"
|
||||||
authors = "${author}"
|
authors = "${author}"
|
||||||
version = "${version}"
|
version = "${version}"
|
||||||
logoFile = "icon.png"
|
logoFile = "assets/${id}/logo.png"
|
||||||
|
|
||||||
[[mixins]]
|
[[mixins]]
|
||||||
config = "${id}.mixins.json"
|
config = "${id}.mixins.json"
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 21 KiB |
117
build.gradle.kts
117
build.gradle.kts
@ -1,6 +1,6 @@
|
|||||||
@file:Suppress("ConvertLambdaToReference")
|
@file:Suppress("ConvertLambdaToReference")
|
||||||
|
|
||||||
import org.gradle.api.file.DuplicatesStrategy.EXCLUDE
|
import org.gradle.jvm.tasks.Jar
|
||||||
|
|
||||||
val modId: String by project
|
val modId: String by project
|
||||||
val modName: String by project
|
val modName: String by project
|
||||||
@ -50,6 +50,16 @@ base {
|
|||||||
archivesName.set("$modNameStripped-Common")
|
archivesName.set("$modNameStripped-Common")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
loom {
|
||||||
|
runs {
|
||||||
|
named("client") {
|
||||||
|
ideConfigGenerated(false)
|
||||||
|
}
|
||||||
|
|
||||||
|
findByName("server")?.let(::remove)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
minecraft("com.mojang:minecraft:$minecraftVersion")
|
minecraft("com.mojang:minecraft:$minecraftVersion")
|
||||||
mappings(loom.officialMojangMappings())
|
mappings(loom.officialMojangMappings())
|
||||||
@ -84,6 +94,24 @@ allprojects {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation("org.jetbrains:annotations:24.1.0")
|
implementation("org.jetbrains:annotations:24.1.0")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tasks.withType<ProcessResources> {
|
||||||
|
inputs.property("id", modId)
|
||||||
|
inputs.property("name", modName)
|
||||||
|
inputs.property("description", modDescription)
|
||||||
|
inputs.property("version", modVersion)
|
||||||
|
inputs.property("author", modAuthor)
|
||||||
|
inputs.property("license", modLicense)
|
||||||
|
inputs.property("sourcesURL", modSourcesURL)
|
||||||
|
inputs.property("issuesURL", modIssuesURL)
|
||||||
|
inputs.property("minimumMinecraftVersion", minimumMinecraftVersion)
|
||||||
|
inputs.property("minimumNeoForgeVersion", minimumNeoForgeVersion)
|
||||||
|
inputs.property("minimumFabricVersion", minimumFabricVersion)
|
||||||
|
|
||||||
|
from(rootProject.file("logo.png")) {
|
||||||
|
into("assets/$modId")
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
subprojects {
|
subprojects {
|
||||||
@ -102,18 +130,6 @@ subprojects {
|
|||||||
}
|
}
|
||||||
|
|
||||||
tasks.processResources {
|
tasks.processResources {
|
||||||
inputs.property("id", modId)
|
|
||||||
inputs.property("name", modName)
|
|
||||||
inputs.property("description", modDescription)
|
|
||||||
inputs.property("version", modVersion)
|
|
||||||
inputs.property("author", modAuthor)
|
|
||||||
inputs.property("license", modLicense)
|
|
||||||
inputs.property("sourcesURL", modSourcesURL)
|
|
||||||
inputs.property("issuesURL", modIssuesURL)
|
|
||||||
inputs.property("minimumMinecraftVersion", minimumMinecraftVersion)
|
|
||||||
inputs.property("minimumNeoForgeVersion", minimumNeoForgeVersion)
|
|
||||||
inputs.property("minimumFabricVersion", minimumFabricVersion)
|
|
||||||
|
|
||||||
from(rootProject.sourceSets.main.get().resources) {
|
from(rootProject.sourceSets.main.get().resources) {
|
||||||
expand(inputs.properties)
|
expand(inputs.properties)
|
||||||
}
|
}
|
||||||
@ -121,18 +137,12 @@ subprojects {
|
|||||||
|
|
||||||
tasks.jar {
|
tasks.jar {
|
||||||
archiveVersion.set(jarVersion)
|
archiveVersion.set(jarVersion)
|
||||||
|
entryCompression = ZipEntryCompression.STORED
|
||||||
|
|
||||||
from(rootProject.file("LICENSE"))
|
from(rootProject.file("LICENSE"))
|
||||||
|
|
||||||
manifest {
|
manifest {
|
||||||
attributes(
|
packageInformation(modId, "$modNameStripped-${project.name}")
|
||||||
"Specification-Title" to modId,
|
|
||||||
"Specification-Vendor" to modAuthor,
|
|
||||||
"Specification-Version" to "1",
|
|
||||||
"Implementation-Title" to "$modNameStripped-${project.name}",
|
|
||||||
"Implementation-Vendor" to modAuthor,
|
|
||||||
"Implementation-Version" to modVersion,
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -141,37 +151,54 @@ subprojects {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
loom {
|
fun Manifest.packageInformation(specificationTitle: String, implementationTitle: String) {
|
||||||
runs {
|
attributes(
|
||||||
val runJvmArgs: Set<String> by project
|
"Specification-Title" to specificationTitle,
|
||||||
|
"Specification-Vendor" to modAuthor,
|
||||||
configureEach {
|
"Specification-Version" to "1",
|
||||||
runDir("../run")
|
"Implementation-Title" to implementationTitle,
|
||||||
vmArgs(runJvmArgs)
|
"Implementation-Vendor" to modAuthor,
|
||||||
ideConfigGenerated(true)
|
"Implementation-Version" to modVersion,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
val multiloaderSources = sourceSets.register("multiloader")
|
||||||
|
|
||||||
|
val multiloaderJar = tasks.register<Jar>("multiloaderJar") {
|
||||||
|
group = "build"
|
||||||
|
|
||||||
|
archiveBaseName.set(modNameStripped)
|
||||||
|
archiveVersion.set(jarVersion)
|
||||||
|
|
||||||
|
destinationDirectory = layout.buildDirectory.dir("dist")
|
||||||
|
|
||||||
|
fun includeJar(project: Project, jarTask: (TaskContainer) -> TaskProvider<out Jar>) {
|
||||||
|
from(jarTask(project.tasks).map { it.outputs }) {
|
||||||
|
into("jars")
|
||||||
|
rename { "$modNameStripped-${project.name}.jar" }
|
||||||
}
|
}
|
||||||
|
}
|
||||||
named("client") {
|
|
||||||
configName = "Vanilla Client"
|
findProject(":NeoForge")?.let { includeJar(it, TaskContainer::jar) }
|
||||||
client()
|
findProject(":Fabric")?.let { includeJar(it, TaskContainer::remapJar) }
|
||||||
}
|
|
||||||
|
from(multiloaderSources.map { it.output })
|
||||||
findByName("server")?.let(::remove)
|
|
||||||
|
manifest {
|
||||||
|
packageInformation("$modId-multiloader", modNameStripped)
|
||||||
|
attributes("FMLModType" to "GAMELIBRARY")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
val copyJars = tasks.register<Copy>("copyJars") {
|
tasks.named<ProcessResources>("processMultiloaderResources").configure {
|
||||||
group = "build"
|
inputs.property("group", project.group)
|
||||||
duplicatesStrategy = EXCLUDE
|
inputs.property("jarPrefix", modNameStripped)
|
||||||
|
|
||||||
for (subproject in subprojects) {
|
filesMatching(listOf("fabric.mod.json", "META-INF/jarjar/metadata.json")) {
|
||||||
dependsOn(subproject.tasks.assemble)
|
expand(inputs.properties)
|
||||||
from(subproject.base.libsDirectory.file("${subproject.base.archivesName.get()}-$jarVersion.jar"))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
into(project.layout.buildDirectory.dir("dist"))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.assemble {
|
tasks.assemble {
|
||||||
finalizedBy(copyJars)
|
finalizedBy(multiloaderJar)
|
||||||
}
|
}
|
||||||
|
13
src/multiloader/resources/META-INF/jarjar/metadata.json
Normal file
13
src/multiloader/resources/META-INF/jarjar/metadata.json
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"jars": [{
|
||||||
|
"identifier": {
|
||||||
|
"group": "${group}",
|
||||||
|
"artifact": "${id}"
|
||||||
|
},
|
||||||
|
"version": {
|
||||||
|
"artifactVersion": "${version}",
|
||||||
|
"range": "[${version}]"
|
||||||
|
},
|
||||||
|
"path": "jars/${jarPrefix}-NeoForge.jar"
|
||||||
|
}]
|
||||||
|
}
|
34
src/multiloader/resources/fabric.mod.json
Normal file
34
src/multiloader/resources/fabric.mod.json
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
"schemaVersion": 1,
|
||||||
|
"id": "${id}_multiloader",
|
||||||
|
"name": "${name} (Multiloader)",
|
||||||
|
"description": "${description}",
|
||||||
|
"version": "${version}",
|
||||||
|
"license": "${license}",
|
||||||
|
|
||||||
|
"icon": "assets/${id}/logo.png",
|
||||||
|
|
||||||
|
"authors": [
|
||||||
|
"${author}"
|
||||||
|
],
|
||||||
|
|
||||||
|
"contact": {
|
||||||
|
"homepage": "https://chylex.com",
|
||||||
|
"issues": "${issuesURL}",
|
||||||
|
"sources": "${sourcesURL}"
|
||||||
|
},
|
||||||
|
|
||||||
|
"environment": "client",
|
||||||
|
|
||||||
|
"jars": [{
|
||||||
|
"file": "jars/${jarPrefix}-Fabric.jar"
|
||||||
|
}],
|
||||||
|
|
||||||
|
"custom": {
|
||||||
|
"modmenu": {
|
||||||
|
"parent": "${id}",
|
||||||
|
"badges": [ "library" ],
|
||||||
|
"update_checker": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user