Add the other CLAP metadata fields

This commit is contained in:
Robbert van der Helm
2022-02-28 17:18:11 +01:00
parent c7f1c46f18
commit 1151a80769
5 changed files with 31 additions and 0 deletions

View File

@@ -178,6 +178,10 @@ 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_MANUAL_URL: &'static str = Self::URL;
const CLAP_SUPPORT_URL: &'static str = Self::URL;
}
impl Vst3Plugin for Sine {