Commit 0e1a1e120ef6bce081e5fabcb994060d2d60dd51

Authored by Mumfrey
1 parent c4b6db98

LiteLoader 1.4.5 - version number change only

java/com/mumfrey/liteloader/core/LiteLoader.java
@@ -36,7 +36,7 @@ public final class LiteLoader implements FilenameFilter @@ -36,7 +36,7 @@ public final class LiteLoader implements FilenameFilter
36 /** 36 /**
37 * Liteloader version 37 * Liteloader version
38 */ 38 */
39 - private static final String LOADER_VERSION = "1.4.4"; 39 + private static final String LOADER_VERSION = "1.4.5";
40 40
41 /** 41 /**
42 * Loader revision, can be used by mods to determine whether the loader is sufficiently up-to-date 42 * Loader revision, can be used by mods to determine whether the loader is sufficiently up-to-date
@@ -48,7 +48,7 @@ public final class LiteLoader implements FilenameFilter @@ -48,7 +48,7 @@ public final class LiteLoader implements FilenameFilter
48 * against the version.txt value in mod files to prevent outdated mods being 48 * against the version.txt value in mod files to prevent outdated mods being
49 * loaded!!! 49 * loaded!!!
50 */ 50 */
51 - private static final String[] SUPPORTED_VERSIONS = { "1.4.4" }; 51 + private static final String[] SUPPORTED_VERSIONS = { "1.4.4", "1.4.5" };
52 52
53 /** 53 /**
54 * LiteLoader is a singleton, this is the singleton instance 54 * LiteLoader is a singleton, this is the singleton instance
@@ -611,7 +611,7 @@ public final class LiteLoader implements FilenameFilter @@ -611,7 +611,7 @@ public final class LiteLoader implements FilenameFilter
611 addPluginChannelListener((PluginChannelListener)mod); 611 addPluginChannelListener((PluginChannelListener)mod);
612 } 612 }
613 613
614 - loadedModsList += String.format("\n - %s version %s", mod.getName(), mod.getVersion()); 614 + loadedModsList += String.format("\n - %s version %s", mod.getName(), mod.getVersion());
615 loadedModsCount++; 615 loadedModsCount++;
616 } 616 }
617 catch (Throwable th) 617 catch (Throwable th)