Browse Source

A few more things needed for release

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.1-rc1
falkTX 4 years ago
parent
commit
c844132c08
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
5 changed files with 15 additions and 3 deletions
  1. +1
    -1
      data/carla-native-plugin.pc
  2. +1
    -1
      data/carla-standalone.pc
  3. +1
    -1
      data/carla-utils.pc
  4. +6
    -0
      data/windows/unzipfx-carla-control/unzipfx/appDetails.c
  5. +6
    -0
      data/windows/unzipfx-carla/unzipfx/appDetails.c

+ 1
- 1
data/carla-native-plugin.pc View File

@@ -3,7 +3,7 @@ libdir=X-LIBDIR-X/carla
includedir=X-INCLUDEDIR-X/carla includedir=X-INCLUDEDIR-X/carla


Name: carla-native-plugin Name: carla-native-plugin
Version: 1.9.14
Version: 2.0.96
Description: Carla Native Plugin Description: Carla Native Plugin
Libs: -Wl,-rpath=${libdir} -L${libdir} -lcarla_native-plugin Libs: -Wl,-rpath=${libdir} -L${libdir} -lcarla_native-plugin
Cflags: -DREAL_BUILD -I${includedir} -I${includedir}/includes Cflags: -DREAL_BUILD -I${includedir} -I${includedir}/includes

+ 1
- 1
data/carla-standalone.pc View File

@@ -3,7 +3,7 @@ libdir=X-LIBDIR-X/carla
includedir=X-INCLUDEDIR-X/carla includedir=X-INCLUDEDIR-X/carla


Name: carla-standalone Name: carla-standalone
Version: 1.9.14
Version: 2.0.96
Description: Carla Host Standalone Description: Carla Host Standalone
Libs: -Wl,-rpath=${libdir} -L${libdir} -lcarla_standalone2 Libs: -Wl,-rpath=${libdir} -L${libdir} -lcarla_standalone2
Cflags: -DREAL_BUILD -I${includedir} -I${includedir}/includes Cflags: -DREAL_BUILD -I${includedir} -I${includedir}/includes

+ 1
- 1
data/carla-utils.pc View File

@@ -3,7 +3,7 @@ libdir=X-LIBDIR-X/carla
includedir=X-INCLUDEDIR-X/carla includedir=X-INCLUDEDIR-X/carla


Name: carla-utils Name: carla-utils
Version: 1.9.14
Version: 2.0.96
Description: Carla Host Utilities Description: Carla Host Utilities
Libs: -Wl,-rpath=${libdir} -L${libdir} -lcarla_utils Libs: -Wl,-rpath=${libdir} -L${libdir} -lcarla_utils
Cflags: -DREAL_BUILD -I${includedir} -I${includedir}/includes -I${includedir}/utils Cflags: -DREAL_BUILD -I${includedir} -I${includedir}/includes -I${includedir}/utils

+ 6
- 0
data/windows/unzipfx-carla-control/unzipfx/appDetails.c View File

@@ -67,7 +67,10 @@ char* sfx_get_tmp_path(int withAppName)
GetTempPathA(512 - strlen(SFX_APP_MININAME_TITLE), sfx_tmp_path); GetTempPathA(512 - strlen(SFX_APP_MININAME_TITLE), sfx_tmp_path);


if (withAppName == 1) if (withAppName == 1)
{
strcat(sfx_tmp_path, SFX_APP_MININAME_TITLE); strcat(sfx_tmp_path, SFX_APP_MININAME_TITLE);
strcat(sfx_tmp_path, CARLA_VERSION_STRING);
}
} }
#else #else
{ {
@@ -79,7 +82,10 @@ char* sfx_get_tmp_path(int withAppName)
strcpy(sfx_tmp_path, "/tmp"); strcpy(sfx_tmp_path, "/tmp");


if (withAppName == 1) if (withAppName == 1)
{
strcat(sfx_tmp_path, "/" SFX_APP_MININAME_LCASE); strcat(sfx_tmp_path, "/" SFX_APP_MININAME_LCASE);
strcat(sfx_tmp_path, CARLA_VERSION_STRING);
}
} }
#endif #endif




+ 6
- 0
data/windows/unzipfx-carla/unzipfx/appDetails.c View File

@@ -72,7 +72,10 @@ char* sfx_get_tmp_path(int withAppName)
GetTempPathA(512 - strlen(SFX_APP_MININAME_TITLE), sfx_tmp_path); GetTempPathA(512 - strlen(SFX_APP_MININAME_TITLE), sfx_tmp_path);


if (withAppName == 1) if (withAppName == 1)
{
strcat(sfx_tmp_path, SFX_APP_MININAME_TITLE); strcat(sfx_tmp_path, SFX_APP_MININAME_TITLE);
strcat(sfx_tmp_path, CARLA_VERSION_STRING);
}
} }
#else #else
{ {
@@ -84,7 +87,10 @@ char* sfx_get_tmp_path(int withAppName)
strcpy(sfx_tmp_path, "/tmp"); strcpy(sfx_tmp_path, "/tmp");


if (withAppName == 1) if (withAppName == 1)
{
strcat(sfx_tmp_path, "/" SFX_APP_MININAME_LCASE); strcat(sfx_tmp_path, "/" SFX_APP_MININAME_LCASE);
strcat(sfx_tmp_path, CARLA_VERSION_STRING);
}
} }
#endif #endif




Loading…
Cancel
Save