@@ -24,7 +24,7 @@ cd $(dirname $0) | |||||
source common.env | source common.env | ||||
CHROOT_CARLA_DIR="/tmp/carla-src" | CHROOT_CARLA_DIR="/tmp/carla-src" | ||||
PKG_FOLDER="Carla-2.0beta6-linux" | |||||
PKG_FOLDER="Carla_2.0-beta6-linux" | |||||
# --------------------------------------------------------------------------------------------------------------------- | # --------------------------------------------------------------------------------------------------------------------- | ||||
# function to remove old stuff | # function to remove old stuff | ||||
@@ -27,6 +27,8 @@ fi | |||||
source data/windows/common.env | source data/windows/common.env | ||||
PKG_FOLDER="Carla_2.0-beta6-win${ARCH}" | |||||
if [ x"${ARCH}" != x"32" ]; then | if [ x"${ARCH}" != x"32" ]; then | ||||
CPUARCH="x86_64" | CPUARCH="x86_64" | ||||
else | else | ||||
@@ -130,11 +132,11 @@ chmod +x Carla.exe | |||||
rm -f Carla.zip CarlaControl.zip | rm -f Carla.zip CarlaControl.zip | ||||
# Create release 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 ../.. | cd ../.. |
@@ -66,7 +66,7 @@ if WINDOWS: | |||||
# ------------------------------------------------------------------------------------------------------------ | # ------------------------------------------------------------------------------------------------------------ | ||||
# Set Version | # Set Version | ||||
VERSION = "1.9.7 (2.0-beta5)" | |||||
VERSION = "1.9.8 (2.0-beta6)" | |||||
# ------------------------------------------------------------------------------------------------------------ | # ------------------------------------------------------------------------------------------------------------ | ||||
# Set TMP | # Set TMP | ||||
@@ -32,8 +32,8 @@ | |||||
#endif | #endif | ||||
/* Set Version */ | /* 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 */ | /* Check OS */ | ||||
#if defined(WIN64) || defined(_WIN64) || defined(__WIN64__) | #if defined(WIN64) || defined(_WIN64) || defined(__WIN64__) | ||||