Skip to content

Commit

Permalink
Updated to 1.15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rlj1202 committed Mar 10, 2020
1 parent 6cc938b commit e5cecdd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'eclipse'
apply plugin: 'maven-publish'

version = '1.1.0'
version = '1.2.0'
group = 'redlaboratory.hangulinput' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = 'HangulInput'

Expand Down Expand Up @@ -95,7 +95,8 @@ dependencies {
// that the dep is a ForgeGradle 'patcher' dependency. And it's patches will be applied.
// The userdev artifact is a special name and will get all sorts of transformations applied to it.
// minecraft 'net.minecraftforge:forge:1.14.4-28.0.55'
minecraft 'net.minecraftforge:forge:1.15.1-30.0.7'
// minecraft 'net.minecraftforge:forge:1.15.1-30.0.7'
minecraft 'net.minecraftforge:forge:1.15.2-31.1.0'

// You may put jars on which you depend on in ./libs or you may define them like so..
// compile "some.group:artifact:version:classifier"
Expand Down
8 changes: 4 additions & 4 deletions src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
# 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="[30,)" #mandatory (26 is current forge version)
loaderVersion="[31,)" #mandatory (26 is current forge version)
# A URL to refer people to when problems occur with this mod
#issueTrackerURL="http://my.issue.tracker/" #optional
# A list of mods - how many allowed here is determined by the individual mod loader
[[mods]] #mandatory
# The modid of the mod
modId="hangulinput" #mandatory
# The version number of the mod - there's a few well known ${} variables useable here or just hardcode it
version="1.1.0"
version="1.2.0"
#version="${file.jarVersion}" #mandatory
# A display name for the mod
displayName="Hangul Input" #mandatory
Expand All @@ -39,7 +39,7 @@ Converts latin strokes into korean alphabet strokes
# Does this dependency have to exist - if not, ordering below must be specified
mandatory=true #mandatory
# The version range of the dependency
versionRange="[30,)" #mandatory
versionRange="[31,)" #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
Expand All @@ -48,6 +48,6 @@ Converts latin strokes into korean alphabet strokes
[[dependencies.hangulinput]]
modId="minecraft"
mandatory=true
versionRange="[1.15.1]"
versionRange="[1.15.2]"
ordering="NONE"
side="CLIENT"

0 comments on commit e5cecdd

Please sign in to comment.