diff --git a/ChangeLog.md b/ChangeLog.md index 7c511c90..b4f5f47c 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -13,6 +13,7 @@ * `CLAP_EXT_TRACK_INFO` Note: we kept the last draft extension ID in order to not break plugins already using it. +Note: remaining draft extension ID as been updated to follow the new convention. ## Removed draft extensions diff --git a/include/clap/ext/draft/ambisonic.h b/include/clap/ext/draft/ambisonic.h index 556af9a6..cf335c49 100644 --- a/include/clap/ext/draft/ambisonic.h +++ b/include/clap/ext/draft/ambisonic.h @@ -4,7 +4,7 @@ // This extension can be used to specify the channel mapping used by the plugin. -static CLAP_CONSTEXPR const char CLAP_EXT_AMBISONIC[] = "clap.ambisonic.draft/3"; +static CLAP_CONSTEXPR const char CLAP_EXT_AMBISONIC[] = "clap.ambisonic/3"; static CLAP_CONSTEXPR const char CLAP_PORT_AMBISONIC[] = "ambisonic"; diff --git a/include/clap/ext/draft/extensible-audio-ports.h b/include/clap/ext/draft/extensible-audio-ports.h index 278594b5..8f97b0c9 100644 --- a/include/clap/ext/draft/extensible-audio-ports.h +++ b/include/clap/ext/draft/extensible-audio-ports.h @@ -8,7 +8,7 @@ extern "C" { // This extension lets the host add and remove audio ports to the plugin. static CLAP_CONSTEXPR const char CLAP_EXT_EXTENSIBLE_AUDIO_PORTS[] = - "clap.extensible-audio-ports.draft0"; + "clap.extensible-audio-ports/1"; typedef struct clap_plugin_extensible_audio_ports { // Asks the plugin to add a new port (at the end of the list), with the following settings. diff --git a/include/clap/ext/draft/resource-directory.h b/include/clap/ext/draft/resource-directory.h index fc65eaa8..6b8bd57e 100644 --- a/include/clap/ext/draft/resource-directory.h +++ b/include/clap/ext/draft/resource-directory.h @@ -2,7 +2,7 @@ #include "../../plugin.h" -static CLAP_CONSTEXPR const char CLAP_EXT_RESOURCE_DIRECTORY[] = "clap.resource-directory.draft/0"; +static CLAP_CONSTEXPR const char CLAP_EXT_RESOURCE_DIRECTORY[] = "clap.resource-directory/1"; #ifdef __cplusplus extern "C" { diff --git a/include/clap/ext/draft/transport-control.h b/include/clap/ext/draft/transport-control.h index 8a7e7b51..8085ceea 100644 --- a/include/clap/ext/draft/transport-control.h +++ b/include/clap/ext/draft/transport-control.h @@ -6,7 +6,7 @@ // The host has no obligation to execute these requests, so the interface may be // partially working. -static CLAP_CONSTEXPR const char CLAP_EXT_TRANSPORT_CONTROL[] = "clap.transport-control.draft/0"; +static CLAP_CONSTEXPR const char CLAP_EXT_TRANSPORT_CONTROL[] = "clap.transport-control/1"; #ifdef __cplusplus extern "C" { diff --git a/include/clap/ext/draft/triggers.h b/include/clap/ext/draft/triggers.h index fa1e83a9..bf85dee5 100644 --- a/include/clap/ext/draft/triggers.h +++ b/include/clap/ext/draft/triggers.h @@ -4,7 +4,7 @@ #include "../../events.h" #include "../../string-sizes.h" -static CLAP_CONSTEXPR const char CLAP_EXT_TRIGGERS[] = "clap.triggers.draft/0"; +static CLAP_CONSTEXPR const char CLAP_EXT_TRIGGERS[] = "clap.triggers/1"; #ifdef __cplusplus extern "C" { diff --git a/include/clap/ext/draft/tuning.h b/include/clap/ext/draft/tuning.h index db8d9764..ae668b13 100644 --- a/include/clap/ext/draft/tuning.h +++ b/include/clap/ext/draft/tuning.h @@ -4,7 +4,7 @@ #include "../../events.h" #include "../../string-sizes.h" -static CLAP_CONSTEXPR const char CLAP_EXT_TUNING[] = "clap.tuning.draft/2"; +static CLAP_CONSTEXPR const char CLAP_EXT_TUNING[] = "clap.tuning/2"; #ifdef __cplusplus extern "C" { diff --git a/include/clap/factory/draft/plugin-invalidation.h b/include/clap/factory/draft/plugin-invalidation.h index ea698e55..7f65dd04 100644 --- a/include/clap/factory/draft/plugin-invalidation.h +++ b/include/clap/factory/draft/plugin-invalidation.h @@ -6,7 +6,7 @@ // Use it to retrieve const clap_plugin_invalidation_factory_t* from // clap_plugin_entry.get_factory() static const CLAP_CONSTEXPR char CLAP_PLUGIN_INVALIDATION_FACTORY_ID[] = - "clap.plugin-invalidation-factory/draft0"; + "clap.plugin-invalidation-factory/1"; #ifdef __cplusplus extern "C" {