clap

CLAP Audio Plugin API
Log | Files | Refs | README | LICENSE

commit fa2beac3d9b4242d01741635c4572b015251cd3f
parent 4e7622d20751e34a845ee825295e38f60d3bf93f
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Mon, 15 Jan 2024 12:08:09 +0100

Missed ext id cleanup

Diffstat:
Minclude/clap/ext/param-indication.h | 8+++++---
1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/include/clap/ext/param-indication.h b/include/clap/ext/param-indication.h @@ -13,9 +13,11 @@ // The color semantic depends upon the host here and the goal is to have a consistent experience // across all plugins. -// This extension ID contains `draft', yet it is stable. -// See conventions/extension-id.md for more info. -static CLAP_CONSTEXPR const char CLAP_EXT_PARAM_INDICATION[] = "clap.param-indication.draft/4"; +static CLAP_CONSTEXPR const char CLAP_EXT_PARAM_INDICATION[] = "clap.param-indication/4"; + +// The latest draft is 100% compatible. +// This compat ID may be removed in 2026. +static CLAP_CONSTEXPR const char CLAP_EXT_PARAM_INDICATION_COMPAT[] = "clap.param-indication.draft/4"; #ifdef __cplusplus extern "C" {