Skip to content

Commit

Permalink
1.13.2 run
Browse files Browse the repository at this point in the history
  • Loading branch information
ydeagames committed Mar 13, 2019
1 parent dd3ef9c commit a503976
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 10 deletions.
4 changes: 2 additions & 2 deletions 1.13.2/gradle.properties
@@ -1,6 +1,6 @@
forgegradle=net.minecraftforge.gradle:ForgeGradle:3.+
forgegradle_plugin=net.minecraftforge.gradle
version_minecraft=1.13.2
version_forge=25.0.64
version_minforge=25.0.64
version_forge=25.0.79
version_minforge=25.0.79
version_mappings=snapshot_20180921-1.13
45 changes: 45 additions & 0 deletions 1.13.2/sources/bootstrap/src/main/resources/META-INF/mods.toml
@@ -0,0 +1,45 @@
# It contains the data relating to the loading mods.
# There are several mandatory fields (#mandatory), and many more that are optional (#optional).
# The overall format is standard TOML format, v0.5.0.
# Note that there are a couple of TOML lists in this file.
# Find more information on toml format here: https://github.com/toml-lang/toml
# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml
modLoader="javafml" #mandatory
# A version range to match for said mod loader - for regular FML @Mod it will be the forge version
loaderVersion="[25,)" #mandatory (24 is current forge version)
# A URL to refer people to when problems occur with this mod
issueTrackerURL="https://github.com/Team-Fruit/BnnWidget/issues" #optional
# A list of mods - how many allowed here is determined by the individual mod loader
[[mods]] #mandatory
# The modid of the mod
modId="bnnwidget" #mandatory
# The version number of the mod - there's a few well known ${} variables useable here or just hardcode it
version="${file.jarVersion}" #mandatory
# A display name for the mod
displayName="BnnWidget" #mandatory
# A URL to query for updates for this mod. See the JSON update specification <here>
# updateJSONURL="" #optional
# A URL for the "homepage" for this mod, displayed in the mod UI
displayURL="https://github.com/Team-Fruit/BnnWidget/" #optional
# A file name (in the root of the mod JAR) containing a logo for display
logoFile="assets/bnnwidget/textures/logo.png" #optional
# A text field displayed in the mod UI
credits="2016-2018 TeamFruit" #optional
# A text field displayed in the mod UI
authors="Kamesuta, sjcl" #optional
# The description text for the mod (multi line!) (#mandatory)
description='''
Easy but powerful Minecraft GUI widget
'''
# A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional.
[[dependencies.bnnwidget]] #optional
# the modid of the dependency
modId="forge" #mandatory
# Does this dependency have to exist - if not, ordering below must be specified
mandatory=true #mandatory
# The version range of the dependency
versionRange="[25,)" #mandatory
# An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory
ordering="NONE"
# Side this dependency is applied on - BOTH, CLIENT or SERVER
side="BOTH"
7 changes: 7 additions & 0 deletions 1.13.2/sources/bootstrap/src/main/resources/pack.mcmeta
@@ -0,0 +1,7 @@
{
"pack": {
"description": "BnnWidget resources",
"pack_format": 4,
"_comment": "A pack_format of 4 requires json lang files. Note: we require v4 pack meta for all mods."
}
}
12 changes: 4 additions & 8 deletions build.subprojects.gradle
Expand Up @@ -164,13 +164,11 @@ minecraft {

property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'

property 'forge.logging.console.level', 'debug'
// property 'forge.logging.console.level', 'debug'

mods {
bnnwidget {
sourceSets.each { s ->
source s
}
source sourceSets.bootstrap_main
}
}
}
Expand All @@ -185,13 +183,11 @@ minecraft {

property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'

property 'forge.logging.console.level', 'debug'
// property 'forge.logging.console.level', 'debug'

mods {
bnnwidget {
sourceSets.each { s ->
source s
}
source sourceSets.bootstrap_main
}
}
}
Expand Down

0 comments on commit a503976

Please sign in to comment.