diff --git a/data/linux/build-all.sh b/data/linux/build-all.sh index aabfe9e09..009db732e 100755 --- a/data/linux/build-all.sh +++ b/data/linux/build-all.sh @@ -24,7 +24,7 @@ cd $(dirname $0) source common.env CHROOT_CARLA_DIR="/tmp/carla-src" -PKG_FOLDER="Carla-2.0beta6-linux" +PKG_FOLDER="Carla_2.0-beta6-linux" # --------------------------------------------------------------------------------------------------------------------- # function to remove old stuff diff --git a/data/windows/pack-win.sh b/data/windows/pack-win.sh index 38aae3b94..d964729b3 100755 --- a/data/windows/pack-win.sh +++ b/data/windows/pack-win.sh @@ -27,6 +27,8 @@ fi source data/windows/common.env +PKG_FOLDER="Carla_2.0-beta6-win${ARCH}" + if [ x"${ARCH}" != x"32" ]; then CPUARCH="x86_64" else @@ -130,11 +132,11 @@ chmod +x Carla.exe rm -f Carla.zip CarlaControl.zip # Create release zip -rm -rf Carla-2.0beta5-win${ARCH} -mkdir Carla-2.0beta5-win${ARCH} -mkdir Carla-2.0beta5-win${ARCH}/vcredist -cp Carla.exe README.txt Carla-2.0beta5-win${ARCH} -cp ~/.cache/winetricks/vcrun2010/vcredist_x${ARCH}.exe Carla-2.0beta5-win${ARCH}/vcredist -zip -r -9 Carla-2.0beta5-win${ARCH}.zip Carla-2.0beta5-win${ARCH} +rm -rf ${PKG_FOLDER} +mkdir ${PKG_FOLDER} +mkdir ${PKG_FOLDER}/vcredist +cp Carla.exe README.txt ${PKG_FOLDER} +cp ~/.cache/winetricks/vcrun2010/vcredist_x${ARCH}.exe ${PKG_FOLDER}/vcredist +zip -r -9 ${PKG_FOLDER}.zip ${PKG_FOLDER} cd ../.. diff --git a/source/carla_shared.py b/source/carla_shared.py index 3ad4a5504..02483b84c 100644 --- a/source/carla_shared.py +++ b/source/carla_shared.py @@ -66,7 +66,7 @@ if WINDOWS: # ------------------------------------------------------------------------------------------------------------ # Set Version -VERSION = "1.9.7 (2.0-beta5)" +VERSION = "1.9.8 (2.0-beta6)" # ------------------------------------------------------------------------------------------------------------ # Set TMP diff --git a/source/includes/CarlaDefines.h b/source/includes/CarlaDefines.h index 42943f1f0..4c1488db1 100644 --- a/source/includes/CarlaDefines.h +++ b/source/includes/CarlaDefines.h @@ -32,8 +32,8 @@ #endif /* Set Version */ -#define CARLA_VERSION_HEX 0x01097 -#define CARLA_VERSION_STRING "1.9.7 (2.0-beta5)" +#define CARLA_VERSION_HEX 0x010908 +#define CARLA_VERSION_STRING "1.9.8 (2.0-beta6)" /* Check OS */ #if defined(WIN64) || defined(_WIN64) || defined(__WIN64__)