From e5cecdd8b57614cd805400d3de26822462609db8 Mon Sep 17 00:00:00 2001 From: Jisu Sim Date: Tue, 10 Mar 2020 23:58:56 +0900 Subject: [PATCH] Updated to 1.15.2 --- build.gradle | 5 +++-- src/main/resources/META-INF/mods.toml | 8 ++++---- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index 4b005c9..35a7c9a 100644 --- a/build.gradle +++ b/build.gradle @@ -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' @@ -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" diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index b1e8ed3..1faa98a 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -6,7 +6,7 @@ # 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 @@ -14,7 +14,7 @@ loaderVersion="[30,)" #mandatory (26 is current forge version) # 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 @@ -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 @@ -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"