1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-15 15:49:36 +02:00

Rename Nyquist plug-in debug button header

This commit is contained in:
Steve Daulton 2017-05-30 14:25:05 +01:00
parent 2ef243fe60
commit 73d2478d0b
9 changed files with 9 additions and 8 deletions

View File

@ -6,7 +6,7 @@
;categories "http://lv2plug.in/ns/lv2core#MixerPlugin" ;categories "http://lv2plug.in/ns/lv2core#MixerPlugin"
;name "Adjustable Fade..." ;name "Adjustable Fade..."
;manpage "Adjustable_Fade" ;manpage "Adjustable_Fade"
;debug false ;debugbutton false
;action "Applying Fade..." ;action "Applying Fade..."
;author "Steve Daulton" ;author "Steve Daulton"
;copyright "Released under terms of the GNU General Public License version 2" ;copyright "Released under terms of the GNU General Public License version 2"

View File

@ -3,7 +3,7 @@
;type process ;type process
;name "Crossfade Tracks..." ;name "Crossfade Tracks..."
;manpage "Crossfade_Tracks" ;manpage "Crossfade_Tracks"
;debug disabled ;debugbutton disabled
;action "Crossfading..." ;action "Crossfading..."
;preview selection ;preview selection
;author "Steve Daulton" ;author "Steve Daulton"

View File

@ -4,7 +4,7 @@
;preview linear ;preview linear
;name "High Pass Filter..." ;name "High Pass Filter..."
;manpage "High_Pass_Filter" ;manpage "High_Pass_Filter"
;debug disabled ;debugbutton disabled
;action "Performing High Pass Filter..." ;action "Performing High Pass Filter..."
;author "Dominic Mazzoni" ;author "Dominic Mazzoni"
;copyright "Released under terms of the GNU General Public License version 2" ;copyright "Released under terms of the GNU General Public License version 2"

View File

@ -4,7 +4,7 @@
;categories "http://lv2plug.in/ns/lv2core/#DynamicsPlugin" ;categories "http://lv2plug.in/ns/lv2core/#DynamicsPlugin"
;name "Limiter..." ;name "Limiter..."
;manpage "Limiter" ;manpage "Limiter"
;debug false ;debugbutton false
;action "Limiting..." ;action "Limiting..."
;preview enabled ;preview enabled
;author "Steve Daulton" ;author "Steve Daulton"

View File

@ -4,7 +4,7 @@
;preview linear ;preview linear
;name "Low Pass Filter..." ;name "Low Pass Filter..."
;manpage "Low_Pass_Filter" ;manpage "Low_Pass_Filter"
;debug disabled ;debugbutton disabled
;action "Performing Low Pass Filter..." ;action "Performing Low Pass Filter..."
;author "Dominic Mazzoni" ;author "Dominic Mazzoni"
;copyright "Released under terms of the GNU General Public License version 2" ;copyright "Released under terms of the GNU General Public License version 2"

View File

@ -4,7 +4,7 @@
;preview linear ;preview linear
;name "Notch Filter..." ;name "Notch Filter..."
;manpage "Notch_Filter" ;manpage "Notch_Filter"
;debug false ;debugbutton false
;action "Applying Notch Filter..." ;action "Applying Notch Filter..."
;author "Steve Daulton and Bill Wharrie" ;author "Steve Daulton and Bill Wharrie"
;copyright "Released under terms of the GNU General Public License version 2" ;copyright "Released under terms of the GNU General Public License version 2"

View File

@ -4,6 +4,7 @@
;categories "http://lv2plug.in/ns/lv2core#GeneratorPlugin" ;categories "http://lv2plug.in/ns/lv2core#GeneratorPlugin"
;name "Pluck..." ;name "Pluck..."
;manpage "Pluck" ;manpage "Pluck"
;debugbutton false
;preview linear ;preview linear
;action "Generating pluck sound..." ;action "Generating pluck sound..."
;info "MIDI values for C notes: 36, 48, 60 [middle C], 72, 84, 96." ;info "MIDI values for C notes: 36, 48, 60 [middle C], 72, 84, 96."

View File

@ -5,7 +5,7 @@
;categories "http://lv2plug.in/ns/lv2core#ModulatorPlugin" ;categories "http://lv2plug.in/ns/lv2core#ModulatorPlugin"
;name "Tremolo..." ;name "Tremolo..."
;manpage "Tremolo" ;manpage "Tremolo"
;debug disabled ;debugbutton disabled
;action "Applying Tremolo..." ;action "Applying Tremolo..."
;author "Steve Daulton" ;author "Steve Daulton"
;copyright "Released under terms of the GNU General Public License version 2" ;copyright "Released under terms of the GNU General Public License version 2"

View File

@ -1655,7 +1655,7 @@ void NyquistEffect::Parse(const wxString &line)
// TODO: Document. // TODO: Document.
// Debug button may be disabled for release plug-ins. // Debug button may be disabled for release plug-ins.
if (len >= 2 && tokens[0] == wxT("debug")) { if (len >= 2 && tokens[0] == wxT("debugbutton")) {
if (tokens[1] == wxT("disabled") || tokens[1] == wxT("false")) { if (tokens[1] == wxT("disabled") || tokens[1] == wxT("false")) {
mEnableDebug = false; mEnableDebug = false;
} }