Update to MC 1.14.2

This commit is contained in:
Jonas Herzig
2019-05-28 11:55:58 +02:00
parent d89655e69a
commit 208b9c1b60
6 changed files with 10 additions and 10 deletions

2
jGui

Submodule jGui updated: da053ac4ce...9e297620ef

View File

@@ -14,7 +14,7 @@ jGuiVersions += [
'1.9.4', '1.9.4',
'1.12', '1.12',
'1.13.2', '1.13.2',
'1.14.1', '1.14.2',
] ]
replayModVersions += [ replayModVersions += [
'1.7.10', '1.7.10',
@@ -28,7 +28,7 @@ replayModVersions += [
'1.12.1', '1.12.1',
'1.12.2', '1.12.2',
'1.13.2', '1.13.2',
'1.14.1', '1.14.2',
] ]
include ':jGui' include ':jGui'

View File

@@ -11,7 +11,7 @@ public enum MinecraftVersion {
MC_1_12_1("Minecraft 1.12.1", "1.12.1"), MC_1_12_1("Minecraft 1.12.1", "1.12.1"),
MC_1_12_2("Minecraft 1.12.2", "1.12.2"), MC_1_12_2("Minecraft 1.12.2", "1.12.2"),
MC_1_13_2("Minecraft 1.13.2", "1.13.2"), MC_1_13_2("Minecraft 1.13.2", "1.13.2"),
MC_1_14("Minecraft 1.14", "1.14"); MC_1_14_2("Minecraft 1.14.2", "1.14.2");
private String niceName, apiName; private String niceName, apiName;

View File

@@ -206,16 +206,16 @@ def shadeExclusions = {
dependencies { dependencies {
if (FABRIC) { if (FABRIC) {
minecraft 'com.mojang:minecraft:' + [ minecraft 'com.mojang:minecraft:' + [
11401: '1.14.1' 11402: '1.14.2'
][mcVersion] ][mcVersion]
mappings 'net.fabricmc:yarn:' + [ mappings 'net.fabricmc:yarn:' + [
11401: '1.14.1+build.10' 11402: '1.14.2+build.2'
][mcVersion] ][mcVersion]
modCompile 'net.fabricmc:fabric-loader:' + [ modCompile 'net.fabricmc:fabric-loader:' + [
11401: '0.4.7+build.147' 11402: '0.4.8+build.154'
][mcVersion] ][mcVersion]
modCompile 'net.fabricmc.fabric-api:fabric-api:' + [ modCompile 'net.fabricmc.fabric-api:fabric-api:' + [
11401: '0.3.0-pre+build.157' 11402: '0.3.0+build.170'
][mcVersion] ][mcVersion]
} }
@@ -251,7 +251,7 @@ dependencies {
def studioVersion = mcVersionStr def studioVersion = mcVersionStr
if (studioVersion == '1.8.9') studioVersion = '1.8' if (studioVersion == '1.8.9') studioVersion = '1.8'
shadow "com.github.ReplayMod.ReplayStudio:$studioVersion:7400a59", shadeExclusions shadow "com.github.ReplayMod.ReplayStudio:$studioVersion:e6f1a4b", shadeExclusions
shadowReobf(project(":jGui:$jGuiVersion")){ shadowReobf(project(":jGui:$jGuiVersion")){
transitive = false // FG 1.2 puts all MC deps into the compile configuration and we don't want to shade those transitive = false // FG 1.2 puts all MC deps into the compile configuration and we don't want to shade those

View File

@@ -1 +1 @@
11401 11402