Browse Source

Require that client name prefix include at least 1 dot

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.2.0-RC1
falkTX 5 years ago
parent
commit
927531efb1
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 6 additions and 0 deletions
  1. +1
    -0
      source/backend/CarlaBackend.h
  2. +5
    -0
      source/frontend/carla_backend.py

+ 1
- 0
source/backend/CarlaBackend.h View File

@@ -1426,6 +1426,7 @@ typedef enum {
/*!
* A prefix to give to all plugin clients created by Carla.
* Mostly useful for JACK multi-client mode.
* @note MUST include at least one "." (dot).
*/
ENGINE_OPTION_CLIENT_NAME_PREFIX = 34



+ 5
- 0
source/frontend/carla_backend.py View File

@@ -1015,6 +1015,11 @@ ENGINE_OPTION_WINE_SERVER_RT_PRIO = 32
# Capture console output into debug callbacks
ENGINE_OPTION_DEBUG_CONSOLE_OUTPUT = 33

# A prefix to give to all plugin clients created by Carla.
# Mostly useful for JACK multi-client mode.
# @note MUST include at least one "." (dot).
ENGINE_OPTION_CLIENT_NAME_PREFIX = 34

# ---------------------------------------------------------------------------------------------------------------------
# Engine Process Mode
# Engine process mode.


Loading…
Cancel
Save