Skip to content

Commit 02745ad

Browse files
committed
Update mod metadata
2 parents 08edc56 + 9c1d9c4 commit 02745ad

File tree

6 files changed

+29
-30
lines changed

6 files changed

+29
-30
lines changed

assets/banner_game.png

13.9 KB
Loading

assets/banner_warm.png

-67 KB
Loading

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ dependencies {
6161

6262
// Get properties into the manifest for reading by the runtime..
6363
jar {
64-
from sourceSets.main.output
64+
from './assets/banner_game.png'
6565
manifest {
6666
attributes([
6767
"Specification-Title": project.modId,

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ org.gradle.jvmargs=-Xmx3G
44
org.gradle.daemon=false
55

66
modId=cocolib
7-
modVersion=0.2.0
7+
modVersion=0.2.1
88
groupName=yooksi
99

1010
minecraftVersion=1.15.2

src/main/resources/META-INF/mods.toml

Lines changed: 23 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,26 @@ modLoader="javafml"
66
loaderVersion="[31,)"
77
# A list of mods - how many allowed here is determined by the individual mod loader
88
[[mods]]
9-
# A URL to refer people to when problems occur with this mod
10-
issueTrackerURL="https://github.com/yooksi/cocolib/issues"
11-
# The modid of the mod
12-
modId="cocolib"
13-
# The version number of the mod - there's a few well known ${} variables useable here or just hardcode it
14-
version="${version}"
15-
# A display name for the mod
16-
displayName="CocoLib"
17-
# A URL for the "homepage" for this mod, displayed in the mod UI
18-
displayURL="https://github.com/yooksi/cocolib"
19-
# A text field displayed in the mod UI
20-
credits="Thanks to Java and Forge team"
21-
# A text field displayed in the mod UI
22-
authors="yooksi"
23-
# The description text for the mod (multi line!)
24-
description='''Simple Minecraft modding library.'''
9+
issueTrackerURL="https://github.com/yooksi/cocolib/issues"
10+
modId="cocolib"
11+
version="${version}"
12+
displayName="CocoLib"
13+
displayURL="https://github.com/yooksi/cocolib"
14+
credits="Thanks to Java and Forge team"
15+
authors="yooksi & Coco"
16+
logoFile="banner_game.png"
17+
description='''Simple Minecraft modding library.'''
18+
19+
[[dependencies.cocolib]]
20+
modId="forge"
21+
mandatory=true
22+
versionRange="[31.2.0,)"
23+
ordering="NONE"
24+
side="BOTH"
25+
26+
[[dependencies.cocolib]]
27+
modId="minecraft"
28+
mandatory=true
29+
versionRange="[1.15.2]"
30+
ordering="NONE"
31+
side="BOTH"
Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,8 @@
11
# The overall format is standard TOML format, v0.5.0.
2-
# Find more information on toml format here: https://github.com/toml-lang/toml
3-
# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml
42
modLoader="javafml"
5-
# A version range to match for said mod loader - for regular FML @Mod it will be the forge version
63
loaderVersion="[31,)"
7-
# A list of mods - how many allowed here is determined by the individual mod loader
84
[[mods]]
9-
# The modid of the mod
10-
modId="cocolib"
11-
# The version number of the mod - there's a few well known ${} variables useable here or just hardcode it
12-
version="${version}"
13-
# A display name for the mod
14-
displayName="CocoLib"
15-
# The description text for the mod (multi line!)
16-
description='''Simple Minecraft modding library.'''
5+
modId="cocolib"
6+
version="${version}"
7+
displayName="CocoLib"
8+
description='''Simple Minecraft modding library.'''

0 commit comments

Comments
 (0)