Commit 95b3fc7d5aa53019c43fb314d78ce368942369c8

Authored by Mumfrey
1 parent 10400e12

LiteLoader 1.5.1

java/com/mumfrey/liteloader/core/LiteLoader.java
... ... @@ -57,7 +57,7 @@ import com.mumfrey.liteloader.util.PrivateFields;
57 57 * LiteLoader is a simple loader which provides tick events to loaded mods
58 58 *
59 59 * @author Adam Mummery-Smith
60   - * @version 1.5
  60 + * @version 1.5.1
61 61 */
62 62 @SuppressWarnings("rawtypes")
63 63 public final class LiteLoader implements FilenameFilter
... ... @@ -65,7 +65,7 @@ public final class LiteLoader implements FilenameFilter
65 65 /**
66 66 * Liteloader version
67 67 */
68   - private static final String LOADER_VERSION = "1.5_01";
  68 + private static final String LOADER_VERSION = "1.5.1";
69 69  
70 70 /**
71 71 * Loader revision, can be used by mods to determine whether the loader is sufficiently up-to-date
... ... @@ -77,7 +77,7 @@ public final class LiteLoader implements FilenameFilter
77 77 * against the version.txt value in mod files to prevent outdated mods being
78 78 * loaded!!!
79 79 */
80   - private static final String[] SUPPORTED_VERSIONS = { "1.5", "1.5.r1" };
  80 + private static final String[] SUPPORTED_VERSIONS = { "1.5.1", "1.5.r2" };
81 81  
82 82 /**
83 83 * Maximum recursion depth for mod discovery
... ...
java/com/mumfrey/liteloader/util/PrivateFields.java
... ... @@ -14,6 +14,8 @@ import net.minecraft.src.*;
14 14 *
15 15 * @param <P> Parent class type, the type of the class that owns the field
16 16 * @param <T> Field type, the type of the field value
  17 + *
  18 + * TODO Obfuscation - updated 1.5.1
17 19 */
18 20 @SuppressWarnings("rawtypes")
19 21 public class PrivateFields<P, T>
... ...