Commit d97239f428f98f34f4d0eae2a8060f9be99b6b99
1 parent
a8d48f31
--no commit message
Showing
2 changed files
with
5 additions
and
4 deletions
ant/build_liteloader.xml
| ... | ... | @@ -4,7 +4,7 @@ |
| 4 | 4 | <taskdef resource="net/sf/antcontrib/antcontrib.properties" classpath="tasks/ant-contrib.jar" /> |
| 5 | 5 | |
| 6 | 6 | <!-- Versions !!IMPORTANT --> |
| 7 | - <property name="version" value="1.7.10_02" /> | |
| 7 | + <property name="version" value="1.7.10_04" /> | |
| 8 | 8 | <property name="mcversion" value="1.7.10" /> |
| 9 | 9 | <property name="author" value="Mumfrey" /> |
| 10 | 10 | ... | ... |
java/common/com/mumfrey/liteloader/core/LiteLoaderVersion.java
| ... | ... | @@ -9,7 +9,7 @@ import com.mumfrey.liteloader.update.UpdateSite; |
| 9 | 9 | * LiteLoader version table |
| 10 | 10 | * |
| 11 | 11 | * @author Adam Mummery-Smith |
| 12 | - * @version 1.7.10_03 | |
| 12 | + * @version 1.7.10_04 | |
| 13 | 13 | */ |
| 14 | 14 | public enum LiteLoaderVersion |
| 15 | 15 | { |
| ... | ... | @@ -38,12 +38,13 @@ public enum LiteLoaderVersion |
| 38 | 38 | MC_1_7_10_R0(27, 1404330030, "1.7.10", "1.7.10", "1.7.10"), |
| 39 | 39 | MC_1_7_10_R1(28, 1404673785, "1.7.10", "1.7.10_01", "1.7.10"), |
| 40 | 40 | MC_1_7_10_R2(29, 1405369406, "1.7.10", "1.7.10_02", "1.7.10"), |
| 41 | - MC_1_7_10_R3(30, 1407687918, "1.7.10", "1.7.10_03", "1.7.10", "1.7.10_03"); | |
| 41 | + MC_1_7_10_R3(30, 1407687918, "1.7.10", "1.7.10_03", "1.7.10", "1.7.10_03"), | |
| 42 | + MC_1_7_10_R4(31, 0, "1.7.10", "1.7.10_04", "1.7.10", "1.7.10_03", "1.7.10_04"); | |
| 42 | 43 | |
| 43 | 44 | /** |
| 44 | 45 | * Current loader version |
| 45 | 46 | */ |
| 46 | - public static final LiteLoaderVersion CURRENT = LiteLoaderVersion.MC_1_7_10_R3; | |
| 47 | + public static final LiteLoaderVersion CURRENT = LiteLoaderVersion.MC_1_7_10_R4; | |
| 47 | 48 | |
| 48 | 49 | private static final String UPDATE_SITE_URL = "http://dl.liteloader.com/versions/"; |
| 49 | 50 | private static final String UPDATE_SITE_VERSIONS_JSON = "versions.json"; | ... | ... |