Commit 6fb8b05c114704c8ff2e2c8b0e86f7eace31476f

Authored by Mumfrey
1 parent 80cbaa3a

Pre-1.10.2 update using temp mappings

gradle.properties
@@ -5,6 +5,6 @@ description=LiteLoader @@ -5,6 +5,6 @@ description=LiteLoader
5 url=http://www.liteloader.com 5 url=http://www.liteloader.com
6 organization=LiteLoader 6 organization=LiteLoader
7 buildType=SNAPSHOT 7 buildType=SNAPSHOT
8 -buildVersion=1.10  
9 -mcVersion=1.10 8 +buildVersion=1.10.2
  9 +mcVersion=1.10.2
10 mcMappings=snapshot_custom 10 mcMappings=snapshot_custom
11 \ No newline at end of file 11 \ No newline at end of file
src/main/java/com/mumfrey/liteloader/core/LiteLoaderVersion.java
@@ -12,7 +12,7 @@ import java.util.Set; @@ -12,7 +12,7 @@ import java.util.Set;
12 * LiteLoader version table 12 * LiteLoader version table
13 * 13 *
14 * @author Adam Mummery-Smith 14 * @author Adam Mummery-Smith
15 - * @version 1.10.0_00 15 + * @version 1.10.2_00
16 */ 16 */
17 public enum LiteLoaderVersion 17 public enum LiteLoaderVersion
18 { 18 {
@@ -47,12 +47,13 @@ public enum LiteLoaderVersion @@ -47,12 +47,13 @@ public enum LiteLoaderVersion
47 MC_1_8_9_R0(34, 0, "1.8.9", "1.8.9", "1.8.9"), 47 MC_1_8_9_R0(34, 0, "1.8.9", "1.8.9", "1.8.9"),
48 MC_1_9_0_R0(35, 0, "1.9", "1.9.0", "1.9", "1.9.0"), 48 MC_1_9_0_R0(35, 0, "1.9", "1.9.0", "1.9", "1.9.0"),
49 MC_1_9_4_R0(36, 0, "1.9.4", "1.9.4", "1.9.4"), 49 MC_1_9_4_R0(36, 0, "1.9.4", "1.9.4", "1.9.4"),
50 - MC_1_10_R0(37, 0, "1.10", "1.10", "1.10", "1.10.0", "1.10.r1"); 50 + MC_1_10_R0(37, 0, "1.10", "1.10", "1.10", "1.10.0", "1.10.r1"),
  51 + MC_1_10_2_R0(38, 0, "1.10.2", "1.10.2", "1.10.2", "1.10.r1");
51 52
52 /** 53 /**
53 * Current loader version 54 * Current loader version
54 */ 55 */
55 - public static final LiteLoaderVersion CURRENT = LiteLoaderVersion.MC_1_10_R0; 56 + public static final LiteLoaderVersion CURRENT = LiteLoaderVersion.MC_1_10_2_R0;
56 57
57 private static final LiteLoaderUpdateSite updateSite = new LiteLoaderUpdateSite(LiteLoaderVersion.CURRENT.getMinecraftVersion(), 58 private static final LiteLoaderUpdateSite updateSite = new LiteLoaderUpdateSite(LiteLoaderVersion.CURRENT.getMinecraftVersion(),
58 LiteLoaderVersion.CURRENT.getReleaseTimestamp()); 59 LiteLoaderVersion.CURRENT.getReleaseTimestamp());
src/main/java/com/mumfrey/liteloader/core/runtime/Obf.java
@@ -17,7 +17,7 @@ import org.spongepowered.asm.obfuscation.SrgMethod; @@ -17,7 +17,7 @@ import org.spongepowered.asm.obfuscation.SrgMethod;
17 * Centralised obfuscation table for LiteLoader 17 * Centralised obfuscation table for LiteLoader
18 * 18 *
19 * @author Adam Mummery-Smith 19 * @author Adam Mummery-Smith
20 - * TODO Obfuscation 1.10 20 + * TODO Obfuscation 1.10.2
21 */ 21 */
22 public class Obf 22 public class Obf
23 { 23 {
src/main/java/com/mumfrey/liteloader/core/runtime/Packets.java
@@ -12,7 +12,7 @@ import java.util.Map; @@ -12,7 +12,7 @@ import java.util.Map;
12 * Packet obfuscation table 12 * Packet obfuscation table
13 * 13 *
14 * @author Adam Mummery-Smith 14 * @author Adam Mummery-Smith
15 - * TODO Obfuscation 1.10 15 + * TODO Obfuscation 1.10.2
16 */ 16 */
17 public final class Packets extends Obf 17 public final class Packets extends Obf
18 { 18 {
src/main/java/com/mumfrey/liteloader/launch/LiteLoaderTweaker.java
@@ -38,8 +38,8 @@ public class LiteLoaderTweaker implements ITweaker @@ -38,8 +38,8 @@ public class LiteLoaderTweaker implements ITweaker
38 public static final int ENV_TYPE_CLIENT = 0; 38 public static final int ENV_TYPE_CLIENT = 0;
39 public static final int ENV_TYPE_DEDICATEDSERVER = 1; 39 public static final int ENV_TYPE_DEDICATEDSERVER = 1;
40 40
41 - // TODO Version - 1.10  
42 - public static final String VERSION = "1.10"; 41 + // TODO Version - 1.10.2
  42 + public static final String VERSION = "1.10.2";
43 43
44 protected static final String bootstrapClassName = "com.mumfrey.liteloader.core.LiteLoaderBootstrap"; 44 protected static final String bootstrapClassName = "com.mumfrey.liteloader.core.LiteLoaderBootstrap";
45 45