diff --git a/.gitignore b/.gitignore index 4513168e..a2391fdf 100644 --- a/.gitignore +++ b/.gitignore @@ -13,4 +13,5 @@ CHANGELOG !info.txt !publish.bat !include.bat +!buildlocal.bat !/README \ No newline at end of file diff --git a/Eclipse Java Standard.xml b/Eclipse Java Standard.xml index e5c3c9a6..04800dfe 100644 --- a/Eclipse Java Standard.xml +++ b/Eclipse Java Standard.xml @@ -1,291 +1,291 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/buildlocal.bat b/buildlocal.bat new file mode 100644 index 00000000..2e32bc34 --- /dev/null +++ b/buildlocal.bat @@ -0,0 +1,28 @@ +::ASSEMBLY LINE BUILDER +@echo off +set FILE_NAME=AssemblyLine_v%MODVERSION%.%BUILD_NUMBER%.jar +set API_NAME=AssemblyLine_v%MODVERSION%.%BUILD_NUMBER%_api.zip +set BACKUP_NAME=AssemblyLine_v%MODVERSION%.%BUILD_NUMBER%_backup.zip + +echo Starting to build %FILE_NAME% + +::BUILD +runtime\bin\python\python_mcp runtime\recompile.py %* +runtime\bin\python\python_mcp runtime\reobfuscate.py %* + +::ZIP-UP +cd reobf\minecraft\ +"..\..\..\7za.exe" a "..\..\builds\%FILE_NAME%" "*" +cd ..\..\ +cd resources\ +"..\..\7za.exe" a "..\builds\%FILE_NAME%" "*" +"..\..\7za.exe" a "..\builds\%BACKUP_NAME%" "*" -pdarkguardsman +cd ..\ +cd src\ +"..\..\7za.exe" a "..\builds\%BACKUP_NAME%" "*\assemblyline\" -pdarkguardsman +"..\..\7za.exe" a "..\builds\%API_NAME%" "*\assemblyline\api\" +cd ..\ + +echo Done building %FILE_NAME% for UE %UE_VERSION% + +pause \ No newline at end of file