Merge branch 'mc1.5'
|
@ -2,6 +2,6 @@
|
|||
<classpath>
|
||||
<classpathentry kind="src" path="common"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/Forge-Client"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/Forge"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
|
|
36
build.xml
|
@ -17,13 +17,14 @@
|
|||
|
||||
<property name="mcpsrc.dir" value="${mcp.dir}/src"/>
|
||||
|
||||
<property name="mc.version" value="1.4.7"/>
|
||||
<property name="forge.version" value="6.6.0.515"/>
|
||||
<property name="project.version" value="3.4.2"/>
|
||||
<property name="mc.version" value="1.5.1"/>
|
||||
<property name="forge.version" value="7.7.1.624"/>
|
||||
<!-- <property name="project.version" value="0.0.0"/>-->
|
||||
|
||||
<property name="forge.name" value="minecraftforge-src-${mc.version}-${forge.version}.zip"/>
|
||||
|
||||
<available property="forge-exists" file="${download.dir}/${forge.name}"/>
|
||||
<available file=".git" type="dir" property="git.present"/>
|
||||
|
||||
<condition property="out-of-date">
|
||||
<not>
|
||||
|
@ -44,7 +45,7 @@
|
|||
</target>
|
||||
|
||||
<!-- Set full version -->
|
||||
<target name="initialize-version" depends="version-provided,version-not-provided">
|
||||
<target name="initialize-version" depends="version-provided,version-not-provided,git.revision">
|
||||
<property name="project.version.full" value="${project.version}.${build.number}"/>
|
||||
</target>
|
||||
|
||||
|
@ -58,6 +59,21 @@
|
|||
<property name="build.number" value="${env.BUILD_NUMBER}"/>
|
||||
</target>
|
||||
|
||||
<target name="git.revision" if="git.present">
|
||||
<exec executable="git" outputproperty="git.revision" failifexecutionfails="false" errorproperty="">
|
||||
<arg value="describe"/>
|
||||
<arg value="--tags"/>
|
||||
<arg value="--always"/>
|
||||
<arg value="HEAD"/>
|
||||
</exec>
|
||||
<condition property="project.version" value="${git.revision}" else="0.0.0">
|
||||
<and>
|
||||
<isset property="git.revision"/>
|
||||
<length string="${git.revision}" trim="yes" length="0" when="greater"/>
|
||||
</and>
|
||||
</condition>
|
||||
</target>
|
||||
|
||||
<!-- Download necessary files -->
|
||||
<target name="download-files" depends="download-forge"/>
|
||||
|
||||
|
@ -87,11 +103,7 @@
|
|||
|
||||
</target>
|
||||
|
||||
<target name="compile" depends="initialize-version,setup">
|
||||
|
||||
<delete dir="${classes.dir}"/>
|
||||
<mkdir dir="${classes.dir}"/>
|
||||
|
||||
<target name="copy-src">
|
||||
<!-- Copy sources -->
|
||||
<copy todir="${mcpsrc.dir}/minecraft">
|
||||
<fileset dir="${src.dir}/common"/>
|
||||
|
@ -100,6 +112,12 @@
|
|||
<filter token="BUILD_NUMBER" value="${build.number}" />
|
||||
</filterset>
|
||||
</copy>
|
||||
</target>
|
||||
|
||||
<target name="compile" depends="initialize-version,setup,copy-src">
|
||||
|
||||
<delete dir="${classes.dir}"/>
|
||||
<mkdir dir="${classes.dir}"/>
|
||||
|
||||
<!-- Recompile -->
|
||||
<exec dir="${mcp.dir}" executable="cmd" osfamily="windows">
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
#Build Number for ANT. Do not edit!
|
||||
#Sat Jan 26 10:14:15 CET 2013
|
||||
build.number=16
|
||||
#Fri Feb 22 17:54:19 CET 2013
|
||||
build.number=19
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
<property name="mc.version" value="1.4.7"/>
|
||||
<property name="forge.version" value="6.6.0.507"/>
|
||||
<property name="bc.version" value="3.4.2"/>
|
||||
<property name="bc.version" value="3.4.4fc"/>
|
||||
<property name="bc.version.full" value="${bc.version}"/>
|
||||
|
||||
<echo message="Starting build for ${bc.version.full}"/>
|
||||
|
|
13
buildcraft_resources/changelog/3.4.3
Normal file
|
@ -0,0 +1,13 @@
|
|||
|
||||
# 3.4.3
|
||||
|
||||
- Added: Glass facades. (Krapht)
|
||||
- Changed: Autoarchic gates now always pulse at a single, fast rate. (cpw)
|
||||
- Bugfix: Vines now marked as soft blocks. (CovertJaguar)
|
||||
- Bugfix: Prevented crash if world gen is disabled. (CovertJaguar)
|
||||
- Bugfix: Fixed NPE when liquid in tank has ceased to exist. (Krapht)
|
||||
- Bugfix: Fixed /buildcraft not working in SSP. (viper283)
|
||||
- Bugfix: Fixed tank filling. (CovertJaguar)
|
||||
- Bugfix: Pipe items now registered with FML. (CovertJaguar)
|
||||
- Bugfix: Version check now threaded. (Pahimar)
|
||||
- Localization: Several updates to locations. (Contributors)
|
6
buildcraft_resources/changelog/3.4.4
Normal file
|
@ -0,0 +1,6 @@
|
|||
# 3.4.4
|
||||
|
||||
- Changed: Improved pipe interaction, pipe selection. Gate GUI will only open if the actual gate has been clicked. (Player)
|
||||
- Bugfix: Fixed pipes not respecting an inventory's maximum stack limit. (powercrystals)
|
||||
- Bugfix: Fixed a possible endless look when interacting with inventories. (immibis)
|
||||
- Bugfix: Fixed possible crash with other mods interacting with the advanced assembly table. (Player)
|
After Width: | Height: | Size: 627 B |
After Width: | Height: | Size: 633 B |
After Width: | Height: | Size: 890 B |
After Width: | Height: | Size: 478 B |
After Width: | Height: | Size: 510 B |
After Width: | Height: | Size: 414 B |
After Width: | Height: | Size: 394 B |
After Width: | Height: | Size: 395 B |
After Width: | Height: | Size: 627 B |
After Width: | Height: | Size: 565 B |
After Width: | Height: | Size: 713 B |
After Width: | Height: | Size: 804 B |
After Width: | Height: | Size: 541 B |
After Width: | Height: | Size: 843 B |
After Width: | Height: | Size: 709 B |
After Width: | Height: | Size: 384 B |
After Width: | Height: | Size: 660 B |
After Width: | Height: | Size: 684 B |
After Width: | Height: | Size: 688 B |
After Width: | Height: | Size: 402 B |
After Width: | Height: | Size: 406 B |
After Width: | Height: | Size: 398 B |
After Width: | Height: | Size: 407 B |
After Width: | Height: | Size: 407 B |
After Width: | Height: | Size: 829 B |
After Width: | Height: | Size: 728 B |
After Width: | Height: | Size: 356 B |
After Width: | Height: | Size: 344 B |
After Width: | Height: | Size: 344 B |
After Width: | Height: | Size: 344 B |
After Width: | Height: | Size: 344 B |
After Width: | Height: | Size: 344 B |
After Width: | Height: | Size: 370 B |
After Width: | Height: | Size: 391 B |
After Width: | Height: | Size: 411 B |
After Width: | Height: | Size: 432 B |
After Width: | Height: | Size: 443 B |
After Width: | Height: | Size: 461 B |
After Width: | Height: | Size: 473 B |
After Width: | Height: | Size: 490 B |
After Width: | Height: | Size: 505 B |
After Width: | Height: | Size: 505 B |
After Width: | Height: | Size: 423 B |
After Width: | Height: | Size: 378 B |
After Width: | Height: | Size: 396 B |
After Width: | Height: | Size: 450 B |
After Width: | Height: | Size: 447 B |
After Width: | Height: | Size: 460 B |
After Width: | Height: | Size: 463 B |
After Width: | Height: | Size: 463 B |
After Width: | Height: | Size: 449 B |
After Width: | Height: | Size: 408 B |
After Width: | Height: | Size: 417 B |
After Width: | Height: | Size: 428 B |
After Width: | Height: | Size: 433 B |
After Width: | Height: | Size: 437 B |
After Width: | Height: | Size: 438 B |
After Width: | Height: | Size: 447 B |
After Width: | Height: | Size: 449 B |
After Width: | Height: | Size: 405 B |
After Width: | Height: | Size: 402 B |
After Width: | Height: | Size: 420 B |
After Width: | Height: | Size: 413 B |
After Width: | Height: | Size: 404 B |
After Width: | Height: | Size: 423 B |
After Width: | Height: | Size: 539 B |
After Width: | Height: | Size: 538 B |
After Width: | Height: | Size: 544 B |
After Width: | Height: | Size: 541 B |
After Width: | Height: | Size: 646 B |
After Width: | Height: | Size: 683 B |
After Width: | Height: | Size: 587 B |
After Width: | Height: | Size: 631 B |
After Width: | Height: | Size: 634 B |
After Width: | Height: | Size: 637 B |
After Width: | Height: | Size: 646 B |
After Width: | Height: | Size: 647 B |
After Width: | Height: | Size: 641 B |
After Width: | Height: | Size: 442 B |
After Width: | Height: | Size: 449 B |
After Width: | Height: | Size: 418 B |
After Width: | Height: | Size: 447 B |
After Width: | Height: | Size: 416 B |
After Width: | Height: | Size: 449 B |
After Width: | Height: | Size: 418 B |
After Width: | Height: | Size: 446 B |
After Width: | Height: | Size: 415 B |
After Width: | Height: | Size: 449 B |
After Width: | Height: | Size: 418 B |
After Width: | Height: | Size: 446 B |
After Width: | Height: | Size: 415 B |
After Width: | Height: | Size: 412 B |
After Width: | Height: | Size: 432 B |
After Width: | Height: | Size: 440 B |