Change CLAP_KEYWORDS to CLAP_FEATURES

This name was changed in CLAP 0.19, but in 0.18 it's still called
features.
This commit is contained in:
Robbert van der Helm
2022-02-28 17:29:53 +01:00
parent 1151a80769
commit a26ddbb45e
5 changed files with 5 additions and 5 deletions

View File

@@ -179,7 +179,7 @@ impl Plugin for Sine {
impl ClapPlugin for Sine {
const CLAP_ID: &'static str = "com.moist-plugins-gmbh.sine";
const CLAP_DESCRIPTION: &'static str = "An optionally MIDI controlled sine test tone";
const CLAP_KEYWORDS: &'static [&'static str] = &["instrument", "mono", "stereo", "utility"];
const CLAP_FEATURES: &'static [&'static str] = &["instrument", "mono", "stereo", "utility"];
const CLAP_MANUAL_URL: &'static str = Self::URL;
const CLAP_SUPPORT_URL: &'static str = Self::URL;
}