mirror of
https://github.com/robbert-vdh/nih-plug.git
synced 2026-07-01 02:36:54 +00:00
Update features names for CLAP 0.26
This commit is contained in:
@@ -478,7 +478,7 @@ impl ClapPlugin for Crisp {
|
||||
const CLAP_ID: &'static str = "nl.robbertvanderhelm.crisp";
|
||||
const CLAP_DESCRIPTION: &'static str = "Adds a bright crispy top end to low bass sounds";
|
||||
const CLAP_FEATURES: &'static [&'static str] =
|
||||
&["audio_effect", "stereo", "distortion", "filter"];
|
||||
&["audio-effect", "stereo", "distortion", "filter"];
|
||||
const CLAP_MANUAL_URL: &'static str = Self::URL;
|
||||
const CLAP_SUPPORT_URL: &'static str = Self::URL;
|
||||
}
|
||||
|
||||
@@ -280,7 +280,7 @@ impl Crossover {
|
||||
impl ClapPlugin for Crossover {
|
||||
const CLAP_ID: &'static str = "nl.robbertvanderhelm.crossover";
|
||||
const CLAP_DESCRIPTION: &'static str = "Cleanly split a signal into multiple bands";
|
||||
const CLAP_FEATURES: &'static [&'static str] = &["audio_effect", "stereo", "utility"];
|
||||
const CLAP_FEATURES: &'static [&'static str] = &["audio-effect", "stereo", "utility"];
|
||||
const CLAP_MANUAL_URL: &'static str = Self::URL;
|
||||
const CLAP_SUPPORT_URL: &'static str = Self::URL;
|
||||
}
|
||||
|
||||
@@ -397,7 +397,7 @@ fn unnormalize_automation_precision(normalized: f32) -> u32 {
|
||||
impl ClapPlugin for Diopser {
|
||||
const CLAP_ID: &'static str = "nl.robbertvanderhelm.diopser";
|
||||
const CLAP_DESCRIPTION: &'static str = "A totally original phase rotation plugin";
|
||||
const CLAP_FEATURES: &'static [&'static str] = &["audio_effect", "stereo", "filter", "utility"];
|
||||
const CLAP_FEATURES: &'static [&'static str] = &["audio-effect", "stereo", "filter", "utility"];
|
||||
const CLAP_MANUAL_URL: &'static str = Self::URL;
|
||||
const CLAP_SUPPORT_URL: &'static str = Self::URL;
|
||||
}
|
||||
|
||||
@@ -154,7 +154,7 @@ impl Plugin for Gain {
|
||||
impl ClapPlugin for Gain {
|
||||
const CLAP_ID: &'static str = "com.moist-plugins-gmbh.gain";
|
||||
const CLAP_DESCRIPTION: &'static str = "A smoothed gain parameter example plugin";
|
||||
const CLAP_FEATURES: &'static [&'static str] = &["audio_effect", "mono", "stereo", "tool"];
|
||||
const CLAP_FEATURES: &'static [&'static str] = &["audio-effect", "mono", "stereo", "tool"];
|
||||
const CLAP_MANUAL_URL: &'static str = Self::URL;
|
||||
const CLAP_SUPPORT_URL: &'static str = Self::URL;
|
||||
}
|
||||
|
||||
@@ -192,7 +192,7 @@ impl Plugin for Gain {
|
||||
impl ClapPlugin for Gain {
|
||||
const CLAP_ID: &'static str = "com.moist-plugins-gmbh-egui.gain-gui";
|
||||
const CLAP_DESCRIPTION: &'static str = "A smoothed gain parameter example plugin";
|
||||
const CLAP_FEATURES: &'static [&'static str] = &["audio_effect", "mono", "stereo", "tool"];
|
||||
const CLAP_FEATURES: &'static [&'static str] = &["audio-effect", "mono", "stereo", "tool"];
|
||||
const CLAP_MANUAL_URL: &'static str = Self::URL;
|
||||
const CLAP_SUPPORT_URL: &'static str = Self::URL;
|
||||
}
|
||||
|
||||
@@ -138,7 +138,7 @@ impl Plugin for Gain {
|
||||
impl ClapPlugin for Gain {
|
||||
const CLAP_ID: &'static str = "com.moist-plugins-gmbh.gain-gui-iced";
|
||||
const CLAP_DESCRIPTION: &'static str = "A smoothed gain parameter example plugin";
|
||||
const CLAP_FEATURES: &'static [&'static str] = &["audio_effect", "mono", "stereo", "tool"];
|
||||
const CLAP_FEATURES: &'static [&'static str] = &["audio-effect", "mono", "stereo", "tool"];
|
||||
const CLAP_MANUAL_URL: &'static str = Self::URL;
|
||||
const CLAP_SUPPORT_URL: &'static str = Self::URL;
|
||||
}
|
||||
|
||||
@@ -138,7 +138,7 @@ impl Plugin for Gain {
|
||||
impl ClapPlugin for Gain {
|
||||
const CLAP_ID: &'static str = "com.moist-plugins-gmbh.gain-gui-vizia";
|
||||
const CLAP_DESCRIPTION: &'static str = "A smoothed gain parameter example plugin";
|
||||
const CLAP_FEATURES: &'static [&'static str] = &["audio_effect", "mono", "stereo", "tool"];
|
||||
const CLAP_FEATURES: &'static [&'static str] = &["audio-effect", "mono", "stereo", "tool"];
|
||||
const CLAP_MANUAL_URL: &'static str = Self::URL;
|
||||
const CLAP_SUPPORT_URL: &'static str = Self::URL;
|
||||
}
|
||||
|
||||
@@ -188,7 +188,7 @@ impl ClapPlugin for MidiInverter {
|
||||
const CLAP_ID: &'static str = "com.moist-plugins-gmbh.midi-inverter";
|
||||
const CLAP_DESCRIPTION: &'static str =
|
||||
"Inverts all note and MIDI signals in ways you don't want to";
|
||||
const CLAP_FEATURES: &'static [&'static str] = &["note_effect", "utility"];
|
||||
const CLAP_FEATURES: &'static [&'static str] = &["note-effect", "utility"];
|
||||
const CLAP_MANUAL_URL: &'static str = Self::URL;
|
||||
const CLAP_SUPPORT_URL: &'static str = Self::URL;
|
||||
}
|
||||
|
||||
@@ -164,7 +164,7 @@ impl Plugin for Stft {
|
||||
impl ClapPlugin for Stft {
|
||||
const CLAP_ID: &'static str = "com.moist-plugins-gmbh.stft";
|
||||
const CLAP_DESCRIPTION: &'static str = "An example plugin using the STFT helper";
|
||||
const CLAP_FEATURES: &'static [&'static str] = &["audio_effect", "stereo", "tool"];
|
||||
const CLAP_FEATURES: &'static [&'static str] = &["audio-effect", "stereo", "tool"];
|
||||
const CLAP_MANUAL_URL: &'static str = Self::URL;
|
||||
const CLAP_SUPPORT_URL: &'static str = Self::URL;
|
||||
}
|
||||
|
||||
@@ -244,7 +244,7 @@ impl ClapPlugin for LoudnessWarWinner {
|
||||
const CLAP_ID: &'static str = "nl.robbertvanderhelm.loudness-war-winner";
|
||||
const CLAP_DESCRIPTION: &'static str = "Win the loudness war with ease";
|
||||
const CLAP_FEATURES: &'static [&'static str] = &[
|
||||
"audio_effect",
|
||||
"audio-effect",
|
||||
"stereo",
|
||||
"mono",
|
||||
"limiter",
|
||||
|
||||
@@ -415,7 +415,7 @@ impl ClapPlugin for PubertySimulator {
|
||||
const CLAP_ID: &'static str = "nl.robbertvanderhelm.puberty-simulator";
|
||||
const CLAP_DESCRIPTION: &'static str = "Simulates a pitched down cracking voice";
|
||||
const CLAP_FEATURES: &'static [&'static str] =
|
||||
&["audio_effect", "stereo", "glitch", "pitch_shifter"];
|
||||
&["audio-effect", "stereo", "glitch", "pitch_shifter"];
|
||||
const CLAP_MANUAL_URL: &'static str = Self::URL;
|
||||
const CLAP_SUPPORT_URL: &'static str = Self::URL;
|
||||
}
|
||||
|
||||
@@ -298,7 +298,7 @@ impl SafetyLimiter {
|
||||
impl ClapPlugin for SafetyLimiter {
|
||||
const CLAP_ID: &'static str = "nl.robbertvanderhelm.safety-limiter";
|
||||
const CLAP_DESCRIPTION: &'static str = "Plays SOS in Morse code when redlining";
|
||||
const CLAP_FEATURES: &'static [&'static str] = &["audio_effect", "stereo", "utility"];
|
||||
const CLAP_FEATURES: &'static [&'static str] = &["audio-effect", "stereo", "utility"];
|
||||
const CLAP_MANUAL_URL: &'static str = Self::URL;
|
||||
const CLAP_SUPPORT_URL: &'static str = Self::URL;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user