File tree Expand file tree Collapse file tree 6 files changed +29
-30
lines changed
Expand file tree Collapse file tree 6 files changed +29
-30
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ dependencies {
6161
6262// Get properties into the manifest for reading by the runtime..
6363jar {
64- from sourceSets . main . output
64+ from ' ./assets/banner_game.png '
6565 manifest {
6666 attributes([
6767 " Specification-Title" : project. modId,
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ org.gradle.jvmargs=-Xmx3G
44org.gradle.daemon =false
55
66modId =cocolib
7- modVersion =0.2.0
7+ modVersion =0.2.1
88groupName =yooksi
99
1010minecraftVersion =1.15.2
Original file line number Diff line number Diff line change @@ -6,19 +6,26 @@ modLoader="javafml"
66loaderVersion =" [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"
Original file line number Diff line number Diff line change 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
42modLoader =" javafml"
5- # A version range to match for said mod loader - for regular FML @Mod it will be the forge version
63loaderVersion =" [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.'''
You can’t perform that action at this time.
0 commit comments