From 4ee3753bce3538bc29cb295632356db651ac71a8 Mon Sep 17 00:00:00 2001 From: daid Date: Wed, 12 Jun 2013 13:53:00 +0200 Subject: Update version number to 13.06 --- package.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.sh b/package.sh index 45ce6b967d..19ace41294 100755 --- a/package.sh +++ b/package.sh @@ -17,7 +17,7 @@ BUILD_TARGET=${1:-all} ##Do we need to create the final archive ARCHIVE_FOR_DISTRIBUTION=1 ##Which version name are we appending to the final archive -BUILD_NAME=13.05.2 +BUILD_NAME=13.06 TARGET_DIR=Cura-${BUILD_NAME}-${BUILD_TARGET} ##Which versions of external programs to use -- cgit v1.2.3 From 8af23eaf86c30719e46fc0b8bd8ffcfa5757659e Mon Sep 17 00:00:00 2001 From: daid Date: Mon, 17 Jun 2013 10:28:10 +0200 Subject: Update on version number. --- package.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.sh b/package.sh index 9c27ef38e0..fb4ceaf198 100755 --- a/package.sh +++ b/package.sh @@ -17,7 +17,7 @@ BUILD_TARGET=${1:-all} ##Do we need to create the final archive ARCHIVE_FOR_DISTRIBUTION=1 ##Which version name are we appending to the final archive -BUILD_NAME=13.06 +BUILD_NAME=13.06.2 TARGET_DIR=Cura-${BUILD_NAME}-${BUILD_TARGET} ##Which versions of external programs to use -- cgit v1.2.3 From d625ea9c5a3ea124734c901bf65ff9461bcadf04 Mon Sep 17 00:00:00 2001 From: Daid Date: Mon, 17 Jun 2013 10:59:08 +0200 Subject: Build the engine for MacOS. --- package.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package.sh b/package.sh index fb4ceaf198..8f349cd249 100755 --- a/package.sh +++ b/package.sh @@ -105,7 +105,10 @@ if [ "$BUILD_TARGET" = "darwin" ]; then #Add cura version file (should read the version from the bundle with pyobjc, but will figure that out later) echo $BUILD_NAME > scripts/darwin/dist/Cura.app/Contents/Resources/version - cp CuraEngine scripts/darwin/dist/Cura.app/Contents/Resources/CuraEngine + rm -rf CuraEngine + git clone https://github.com/Ultimaker/CuraEngine + make -C CuraEngine + cp CuraEngine/CuraEngine scripts/darwin/dist/Cura.app/Contents/Resources/CuraEngine cd scripts/darwin -- cgit v1.2.3