mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-03-22 19:36:59 +00:00
Don't specify the version number in mods.toml
This commit is contained in:
parent
99de00e16e
commit
a4c5ecf8df
@ -223,9 +223,6 @@ jar.finalizedBy('reobfJar')
|
||||
}
|
||||
|
||||
processResources {
|
||||
inputs.property "version", mod_version
|
||||
inputs.property "mcversion", mc_version
|
||||
|
||||
def hash = 'none'
|
||||
Set<String> contributors = []
|
||||
try {
|
||||
@ -242,18 +239,14 @@ processResources {
|
||||
duplicatesStrategy = DuplicatesStrategy.INCLUDE
|
||||
|
||||
from(sourceSets.main.resources.srcDirs) {
|
||||
include 'META-INF/mods.toml'
|
||||
include 'data/computercraft/lua/rom/help/credits.txt'
|
||||
|
||||
expand(
|
||||
'version': mod_version,
|
||||
'mcversion': mc_version,
|
||||
'gitcontributors': contributors.sort(false, String.CASE_INSENSITIVE_ORDER).join('\n')
|
||||
)
|
||||
}
|
||||
|
||||
from(sourceSets.main.resources.srcDirs) {
|
||||
exclude 'META-INF/mods.toml'
|
||||
exclude 'data/computercraft/lua/rom/help/credits.txt'
|
||||
}
|
||||
}
|
||||
|
@ -2,17 +2,18 @@ modLoader="javafml"
|
||||
loaderVersion="[37,38)"
|
||||
|
||||
issueTrackerURL="https://github.com/cc-tweaked/CC-Tweaked/issues"
|
||||
displayURL="https://github.com/cc-tweaked/CC-Tweaked"
|
||||
logoFile="pack.png"
|
||||
|
||||
credits="Created by Daniel Ratcliffe (@DanTwoHundred)"
|
||||
authors="Daniel Ratcliffe, Aaron Mills, SquidDev"
|
||||
license="ComputerCraft Public License (https://raw.githubusercontent.com/dan200/ComputerCraft/master/LICENSE)"
|
||||
|
||||
[[mods]]
|
||||
modId="computercraft"
|
||||
version="${version}"
|
||||
version="${file.jarVersion}"
|
||||
displayName="CC: Tweaked"
|
||||
displayURL="https://tweaked.cc"
|
||||
|
||||
credits="Created by Daniel Ratcliffe (@DanTwoHundred)"
|
||||
authors="Daniel Ratcliffe, Aaron Mills, SquidDev"
|
||||
description='''
|
||||
CC: Tweaked is a fork of ComputerCraft, adding programmable computers, turtles and more to Minecraft.
|
||||
'''
|
||||
|
Loading…
x
Reference in New Issue
Block a user