diff --git a/data/carla-native-plugin.pc b/data/carla-native-plugin.pc index e6b2f7fb5..fd0bdf661 100644 --- a/data/carla-native-plugin.pc +++ b/data/carla-native-plugin.pc @@ -3,7 +3,7 @@ libdir=X-LIBDIR-X/carla includedir=X-INCLUDEDIR-X/carla Name: carla-native-plugin -Version: 1.9.14 +Version: 2.0.96 Description: Carla Native Plugin Libs: -Wl,-rpath=${libdir} -L${libdir} -lcarla_native-plugin Cflags: -DREAL_BUILD -I${includedir} -I${includedir}/includes diff --git a/data/carla-standalone.pc b/data/carla-standalone.pc index 388046eee..9bb9e71bb 100644 --- a/data/carla-standalone.pc +++ b/data/carla-standalone.pc @@ -3,7 +3,7 @@ libdir=X-LIBDIR-X/carla includedir=X-INCLUDEDIR-X/carla Name: carla-standalone -Version: 1.9.14 +Version: 2.0.96 Description: Carla Host Standalone Libs: -Wl,-rpath=${libdir} -L${libdir} -lcarla_standalone2 Cflags: -DREAL_BUILD -I${includedir} -I${includedir}/includes diff --git a/data/carla-utils.pc b/data/carla-utils.pc index 59fc0fcf6..71141730d 100644 --- a/data/carla-utils.pc +++ b/data/carla-utils.pc @@ -3,7 +3,7 @@ libdir=X-LIBDIR-X/carla includedir=X-INCLUDEDIR-X/carla Name: carla-utils -Version: 1.9.14 +Version: 2.0.96 Description: Carla Host Utilities Libs: -Wl,-rpath=${libdir} -L${libdir} -lcarla_utils Cflags: -DREAL_BUILD -I${includedir} -I${includedir}/includes -I${includedir}/utils diff --git a/data/windows/unzipfx-carla-control/unzipfx/appDetails.c b/data/windows/unzipfx-carla-control/unzipfx/appDetails.c index cab77f7ba..ba57e224d 100644 --- a/data/windows/unzipfx-carla-control/unzipfx/appDetails.c +++ b/data/windows/unzipfx-carla-control/unzipfx/appDetails.c @@ -67,7 +67,10 @@ char* sfx_get_tmp_path(int withAppName) GetTempPathA(512 - strlen(SFX_APP_MININAME_TITLE), sfx_tmp_path); if (withAppName == 1) + { strcat(sfx_tmp_path, SFX_APP_MININAME_TITLE); + strcat(sfx_tmp_path, CARLA_VERSION_STRING); + } } #else { @@ -79,7 +82,10 @@ char* sfx_get_tmp_path(int withAppName) strcpy(sfx_tmp_path, "/tmp"); if (withAppName == 1) + { strcat(sfx_tmp_path, "/" SFX_APP_MININAME_LCASE); + strcat(sfx_tmp_path, CARLA_VERSION_STRING); + } } #endif diff --git a/data/windows/unzipfx-carla/unzipfx/appDetails.c b/data/windows/unzipfx-carla/unzipfx/appDetails.c index bc83a9070..0573db27e 100644 --- a/data/windows/unzipfx-carla/unzipfx/appDetails.c +++ b/data/windows/unzipfx-carla/unzipfx/appDetails.c @@ -72,7 +72,10 @@ char* sfx_get_tmp_path(int withAppName) GetTempPathA(512 - strlen(SFX_APP_MININAME_TITLE), sfx_tmp_path); if (withAppName == 1) + { strcat(sfx_tmp_path, SFX_APP_MININAME_TITLE); + strcat(sfx_tmp_path, CARLA_VERSION_STRING); + } } #else { @@ -84,7 +87,10 @@ char* sfx_get_tmp_path(int withAppName) strcpy(sfx_tmp_path, "/tmp"); if (withAppName == 1) + { strcat(sfx_tmp_path, "/" SFX_APP_MININAME_LCASE); + strcat(sfx_tmp_path, CARLA_VERSION_STRING); + } } #endif