Commit 49c887a6ef44ca47fb508a414372edde43a71dfb
1 parent
1fa07498
setting release timestamp for 1.7.2_03
Showing
2 changed files
with
2 additions
and
1 deletions
ant/build_liteloader.xml
... | ... | @@ -241,5 +241,6 @@ |
241 | 241 | <target name="deploy" depends="production" description="Deploy artifact to local minecraft installation in APPDATA"> |
242 | 242 | <mkdir dir="${env.APPDATA}/.minecraft/libraries/com/mumfrey/liteloader/1.7.2"/> |
243 | 243 | <copy todir="${env.APPDATA}/.minecraft/libraries/com/mumfrey/liteloader/1.7.2" file="${dist.dir}/${ant.project.name}-${mcversion}.${filetype}" failonerror="false" overwrite="true" /> |
244 | + <copy todir="${eclipse}/Installer/src/main/resources" file="${dist.dir}/${ant.project.name}-${mcversion}.${filetype}" failonerror="false" overwrite="true" /> | |
244 | 245 | </target> |
245 | 246 | </project> |
246 | 247 | \ No newline at end of file | ... | ... |
java/com/mumfrey/liteloader/core/LiteLoaderVersion.java
... | ... | @@ -30,7 +30,7 @@ public enum LiteLoaderVersion |
30 | 30 | MC_1_7_2_R0(20, 1386027226, "1.7.2", "1.7.2", "1.7.2", "1.7.r1"), |
31 | 31 | MC_1_7_2_R1(21, 1388455995, "1.7.2", "1.7.2_01", "1.7.2_01"), |
32 | 32 | MC_1_7_2_R2(22, 1391815963, "1.7.2", "1.7.2_02", "1.7.2_02"), |
33 | - MC_1_7_2_R3(23, 0, "1.7.2", "1.7.2_03", "1.7.2_02", "1.7.2_03"); | |
33 | + MC_1_7_2_R3(23, 1391890695, "1.7.2", "1.7.2_03", "1.7.2_02", "1.7.2_03"); | |
34 | 34 | |
35 | 35 | /** |
36 | 36 | * Current loader version | ... | ... |