Files @ 2040107278aa
Branch filter:

Location: ATITD-Tools/Desert-Paint-Lab/mac/build_mac_bundle.sh

jmaltzen
Fixes #8 #9 #6 #3 : Order of ingredients should now match the paint bench. Basic brute-force recipe generation implementation. Fixed rounding error on the simulator. Give feedback when using the simulator if reactions are missing. Also: adds an interface for modifying ingredient settings for recipe generation, adds a help option to view missing recorded reactions
#!/bin/sh

/bin/mv DesertPaintLab.app DesertPaintLab.app.`/bin/date +"%Y%m%d%H%M%S"`
/bin/mkdir -p DesertPaintLab.app
/bin/cp Info.plist DesertPaintLab.app/Info.plist
/bin/mkdir -p DesertPaintLab.app/Contents/MacOS
/bin/cp launcher.sh DesertPaintLab.app/Contents/MacOS
/bin/chmod 755 DesertPaintLab.app/Contents/MacOS/launcher.sh
/bin/cp ../bin/Release/DesertPaintLab.exe DesertPaintLab.app/Contents/MacOS/
/bin/mkdir -p DesertPaintLab.app/Contents/Resources
/bin/cp ../bin/Release/colors.txt DesertPaintLab.app/Contents/Resources/
/bin/cp -r ../bin/Release/template DesertPaintLab.app/Contents/Resources/template