diff --git a/share/scripts/__convolv.lua b/share/scripts/__convolv.lua index 23ad9034ed..b84f0d3db9 100644 --- a/share/scripts/__convolv.lua +++ b/share/scripts/__convolv.lua @@ -1,4 +1,4 @@ -ardour { ["type"] = "dsp", name = "Lua Convolver", license = "MIT", author = "Ardour Lua Task Force", description = [[Another simple DSP example]] } +ardour { ["type"] = "dsp", name = "Lua Convolver", license = "MIT", author = "Ardour Team", description = [[Another simple DSP example]] } function dsp_ioconfig () return { diff --git a/share/scripts/__fluidsynth1.lua b/share/scripts/__fluidsynth1.lua index f2e0ea2b52..ead316277c 100644 --- a/share/scripts/__fluidsynth1.lua +++ b/share/scripts/__fluidsynth1.lua @@ -3,7 +3,7 @@ ardour { name = "Lua Fluid Synth", category = "Instrument", license = "MIT", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = [[An Example Synth for Prototyping.]] } diff --git a/share/scripts/__plugin_modulation.lua b/share/scripts/__plugin_modulation.lua index bb94b64a00..daee88184d 100644 --- a/share/scripts/__plugin_modulation.lua +++ b/share/scripts/__plugin_modulation.lua @@ -16,7 +16,7 @@ ardour { ["type"] = "session", name = "Modulate Plugin Parameter", license = "MIT", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = [[An example session to modulate a plugin parameter.]] } diff --git a/share/scripts/_amp1.lua b/share/scripts/_amp1.lua index 03be3961b6..ecc76beeea 100644 --- a/share/scripts/_amp1.lua +++ b/share/scripts/_amp1.lua @@ -3,7 +3,7 @@ ardour { name = "Simple Amp", category = "Example", license = "MIT", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = [[ An Example DSP Plugin for processing audio, to be used with Ardour's Lua scripting facility.]] diff --git a/share/scripts/_amp2.lua b/share/scripts/_amp2.lua index 5a594d57e3..4aab5fa4d7 100644 --- a/share/scripts/_amp2.lua +++ b/share/scripts/_amp2.lua @@ -3,7 +3,7 @@ ardour { name = "Simple Amp II", category = "Example", license = "MIT", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = [[ An Example DSP Plugin for processing audio, to be used with Ardour's Lua scripting facility.]] diff --git a/share/scripts/_amp3.lua b/share/scripts/_amp3.lua index 006a22afbb..6606b7517b 100644 --- a/share/scripts/_amp3.lua +++ b/share/scripts/_amp3.lua @@ -3,7 +3,7 @@ ardour { name = "Simple Amp III", category = "Example", license = "MIT", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = [[ An Example DSP Plugin for processing audio, to be used with Ardour's Lua scripting facility.]] diff --git a/share/scripts/_biquad_filter.lua b/share/scripts/_biquad_filter.lua index 5dc6e3be1b..4a4f4a0355 100644 --- a/share/scripts/_biquad_filter.lua +++ b/share/scripts/_biquad_filter.lua @@ -3,7 +3,7 @@ ardour { name = "Biquad Filter", category = "Filter", license = "MIT", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = [[A Versatile Filter Plugin]] } diff --git a/share/scripts/_cron.lua b/share/scripts/_cron.lua index 3f412d9ddd..8e7c8e76d8 100644 --- a/share/scripts/_cron.lua +++ b/share/scripts/_cron.lua @@ -1,7 +1,7 @@ ardour { ["type"] = "EditorHook", name = "Timed Event Example", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = "Perform actions at specific wallclock time, example record", } diff --git a/share/scripts/_export_plugins_on_save.lua b/share/scripts/_export_plugins_on_save.lua index c732717bd8..4ced4d6972 100644 --- a/share/scripts/_export_plugins_on_save.lua +++ b/share/scripts/_export_plugins_on_save.lua @@ -1,7 +1,7 @@ ardour { ["type"] = "EditorHook", name = "Save Extra Data (instruments)", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = "Export custom data when the session is saved", } diff --git a/share/scripts/_fir.lua b/share/scripts/_fir.lua index 64448ef8f6..9c5b58b40d 100644 --- a/share/scripts/_fir.lua +++ b/share/scripts/_fir.lua @@ -1,4 +1,4 @@ -ardour { ["type"] = "dsp", name = "Lua FIR Convolver", license = "MIT", author = "Ardour Lua Task Force", description = [[Another simple DSP example]] } +ardour { ["type"] = "dsp", name = "Lua FIR Convolver", license = "MIT", author = "Ardour Team", description = [[Another simple DSP example]] } function dsp_ioconfig () return { diff --git a/share/scripts/_hook_test.lua b/share/scripts/_hook_test.lua index c5b00445ce..a2c3b87630 100644 --- a/share/scripts/_hook_test.lua +++ b/share/scripts/_hook_test.lua @@ -1,7 +1,7 @@ ardour { ["type"] = "EditorHook", name = "Callback Example", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = "Rewind On Solo Change, Write a file when regions are moved", } diff --git a/share/scripts/_midi_lfo.lua b/share/scripts/_midi_lfo.lua index fd8b2b07ef..5fa520bec8 100644 --- a/share/scripts/_midi_lfo.lua +++ b/share/scripts/_midi_lfo.lua @@ -3,7 +3,7 @@ ardour { name = "MIDI LFO", category = "Example", -- Utility license = "MIT", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = [[MIDI CC LFO Example -- Triangle full scale CC Parameter automation]] } diff --git a/share/scripts/_midi_rec_start.lua b/share/scripts/_midi_rec_start.lua index b2e03ba28b..0e084c935f 100644 --- a/share/scripts/_midi_rec_start.lua +++ b/share/scripts/_midi_rec_start.lua @@ -3,7 +3,7 @@ ardour { name = "MIDI Record Enable", category = "Example", -- "Utility" license = "MIT", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = [[An example script to start recording on note-on.]] } diff --git a/share/scripts/_midi_rewrite.lua b/share/scripts/_midi_rewrite.lua index 4dfc28a6c3..42f266211d 100644 --- a/share/scripts/_midi_rewrite.lua +++ b/share/scripts/_midi_rewrite.lua @@ -2,7 +2,7 @@ ardour { ["type"] = "session", name = "Rewrite Midi", license = "MIT", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = [[An example session script preprocesses midi buffers.]] } diff --git a/share/scripts/_midifilter.lua b/share/scripts/_midifilter.lua index 48f61a8277..5a2587e4ec 100644 --- a/share/scripts/_midifilter.lua +++ b/share/scripts/_midifilter.lua @@ -3,7 +3,7 @@ ardour { name = "Midi Filter", category = "Example", -- "Utility" license = "MIT", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = [[An Example Midi Filter for prototyping.]] } diff --git a/share/scripts/_midigenerator.lua b/share/scripts/_midigenerator.lua index 9c093946f9..c3fd51af60 100644 --- a/share/scripts/_midigenerator.lua +++ b/share/scripts/_midigenerator.lua @@ -3,7 +3,7 @@ ardour { name = "MIDI Generator", category = "Example", -- "Utility" license = "MIT", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = [[An Example Midi Generator for prototyping.]] } diff --git a/share/scripts/_midigenerator2.lua b/share/scripts/_midigenerator2.lua index 074b0db611..3b6b001693 100644 --- a/share/scripts/_midigenerator2.lua +++ b/share/scripts/_midigenerator2.lua @@ -3,7 +3,7 @@ ardour { name = "MIDI Generator II", category = "Example", license = "MIT", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = [[An Example Midi Generator for prototyping.]] } diff --git a/share/scripts/_new_playlist.lua b/share/scripts/_new_playlist.lua index ef2e808539..2726b5bc69 100644 --- a/share/scripts/_new_playlist.lua +++ b/share/scripts/_new_playlist.lua @@ -2,7 +2,7 @@ ardour { ["type"] = "EditorAction", name = "New Playlists", license = "MIT", - author = "Ardour Lua Taskforce", + author = "Ardour Team", description = [[Prompts and builds a new playlist for every track in the session. Beware the operation cannot be cancelled.]] } diff --git a/share/scripts/_osc_hook_example.lua b/share/scripts/_osc_hook_example.lua index 2ef81cd5bb..738822eb53 100644 --- a/share/scripts/_osc_hook_example.lua +++ b/share/scripts/_osc_hook_example.lua @@ -1,7 +1,7 @@ ardour { ["type"] = "EditorHook", name = "OSC Callback Example", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = "Send OSC messages", } diff --git a/share/scripts/_pong.lua b/share/scripts/_pong.lua index 5e9bec56ec..f436b7bbc1 100644 --- a/share/scripts/_pong.lua +++ b/share/scripts/_pong.lua @@ -3,7 +3,7 @@ ardour { name = "Pong", category = "Toy", license = "MIT", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = [[A console classic for your console]] } diff --git a/share/scripts/_rawmidi.lua b/share/scripts/_rawmidi.lua index 426feb6652..a9bdccd8f6 100644 --- a/share/scripts/_rawmidi.lua +++ b/share/scripts/_rawmidi.lua @@ -3,7 +3,7 @@ ardour { name = "Midi Passthru", category = "Example", license = "MIT", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = [[An Example Audio/MIDI Passthrough Plugin using Buffer Pointers]] } diff --git a/share/scripts/_remember_file.lua b/share/scripts/_remember_file.lua index 13de71e3de..e6a210f5ee 100644 --- a/share/scripts/_remember_file.lua +++ b/share/scripts/_remember_file.lua @@ -1,7 +1,7 @@ ardour { ["type"] = "EditorAction", name = "File Name Test", - author = "Ardour Lua Taskforce", + author = "Ardour Team", description = [[Example Plugin to show to to select a file and remember the most recently used file.]] } diff --git a/share/scripts/_rewind.lua b/share/scripts/_rewind.lua index 88e150612c..a385d93954 100644 --- a/share/scripts/_rewind.lua +++ b/share/scripts/_rewind.lua @@ -1,7 +1,7 @@ ardour { ["type"] = "EditorAction", name = "Rewind", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = [[An Example Ardour Editor Action Script.]] } diff --git a/share/scripts/_session_load_hook.lua b/share/scripts/_session_load_hook.lua index 82546814f8..5f61d1f4d7 100644 --- a/share/scripts/_session_load_hook.lua +++ b/share/scripts/_session_load_hook.lua @@ -1,7 +1,7 @@ ardour { ["type"] = "EditorHook", name = "Load Session Hook Example", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = "Display some dialogs during session load and execute actions", } diff --git a/share/scripts/_session_test.lua b/share/scripts/_session_test.lua index f6adea38c7..40bf84c3f0 100644 --- a/share/scripts/_session_test.lua +++ b/share/scripts/_session_test.lua @@ -1,7 +1,7 @@ ardour { ["type"] = "session", name = "Good Night", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = [[ Example Ardour Session Script. Session scripts are called at the beginning of every process-callback (before doing any audio processing). diff --git a/share/scripts/_smash.lua b/share/scripts/_smash.lua index 2ebcac19aa..53ba9cd9ec 100644 --- a/share/scripts/_smash.lua +++ b/share/scripts/_smash.lua @@ -1,4 +1,4 @@ -ardour { ["type"] = "dsp", name = "Sound Smasher", category = "Dynamics", license = "MIT", author = "Ardour Lua Task Force", description = [[Another simple DSP example]] } +ardour { ["type"] = "dsp", name = "Sound Smasher", category = "Dynamics", license = "MIT", author = "Ardour Team", description = [[Another simple DSP example]] } function dsp_ioconfig () return -- -1, -1 = any number of channels as long as input and output count matches diff --git a/share/scripts/_sort_tracks_by_name.lua b/share/scripts/_sort_tracks_by_name.lua index 39e0a458b1..8c273b8b08 100644 --- a/share/scripts/_sort_tracks_by_name.lua +++ b/share/scripts/_sort_tracks_by_name.lua @@ -1,7 +1,7 @@ ardour { ["type"] = "EditorAction", name = "Track Sort", - author = "Ardour Lua Taskforce", + author = "Ardour Team", description = [[Sort tracks alphabetically by name]] } diff --git a/share/scripts/_spike_synth.lua b/share/scripts/_spike_synth.lua index 167e0e27d2..ce3131afc6 100644 --- a/share/scripts/_spike_synth.lua +++ b/share/scripts/_spike_synth.lua @@ -3,7 +3,7 @@ ardour { name = "Spike Synth", category = "Instrument", license = "MIT", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = [[A debug and test-instrumentation synth. This plugin is useful with Ardour's "Dummy" backend "Engine-Pulse" mode to verify capture alignment. This plugin generate the exact same audio-signal from MIDI data that the backend also generates: Note-on: +1, Note-off: -1.]] } diff --git a/share/scripts/_transparent_regions.lua b/share/scripts/_transparent_regions.lua index 7db81fb7af..841ae0b48d 100644 --- a/share/scripts/_transparent_regions.lua +++ b/share/scripts/_transparent_regions.lua @@ -1,7 +1,7 @@ ardour { ["type"] = "EditorHook", name = "Make all Regions Transparent", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = "While the transport is looping, all regions become transparent.", } @@ -25,4 +25,4 @@ function factory () end ::next:: end -end end \ No newline at end of file +end end diff --git a/share/scripts/_varispeed_callback.lua b/share/scripts/_varispeed_callback.lua index fe3f2721c1..6575d62b4b 100644 --- a/share/scripts/_varispeed_callback.lua +++ b/share/scripts/_varispeed_callback.lua @@ -1,7 +1,7 @@ ardour { ["type"] = "EditorHook", name = "Varispeed Test - 100ms Callback", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = "An example script that invokes a callback a every 0.1sec and modifies the transport speed", } diff --git a/share/scripts/avldrums_midimap.lua b/share/scripts/avldrums_midimap.lua index bb87c7f46f..c3c8536cd1 100644 --- a/share/scripts/avldrums_midimap.lua +++ b/share/scripts/avldrums_midimap.lua @@ -3,7 +3,7 @@ ardour { name = "AVL Drumkit MIDI Map", category = "Utility", license = "MIT", - author = "AVL and Friends", -- based on MIDI Note Mapper by Alby Musaelian + author = "Ardour Community", -- based on MIDI Note Mapper by Alby Musaelian description = [[Map MIDI notes to drum-kit pcs of 'Black Pearl' or 'Red Zeppelin' AVL drumkit plugins. Unmapped notes are ignored. In case of duplicate assignments the later one is preferred.]] } diff --git a/share/scripts/metering_point.lua b/share/scripts/metering_point.lua index 3383970baf..487e93c27f 100644 --- a/share/scripts/metering_point.lua +++ b/share/scripts/metering_point.lua @@ -1,7 +1,7 @@ ardour { ["type"] = "EditorAction", name = "Meter Point", - author = "Ardour Lua Taskforce", + author = "Ardour Team", description = [[Batch change metering point for selected or tracks in the given session.]] } diff --git a/share/scripts/periodic_backup.lua b/share/scripts/periodic_backup.lua index 0142f41c6d..3965a580ab 100644 --- a/share/scripts/periodic_backup.lua +++ b/share/scripts/periodic_backup.lua @@ -1,7 +1,7 @@ ardour { ["type"] = "EditorHook", name = "Periodically Save Snapshot", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = "Save a session-snapshot periodically (every 15mins) named after the current date-time", } diff --git a/share/scripts/post_export_save_hook.lua b/share/scripts/post_export_save_hook.lua index 3b31ee320b..8c9979510d 100644 --- a/share/scripts/post_export_save_hook.lua +++ b/share/scripts/post_export_save_hook.lua @@ -1,7 +1,7 @@ ardour { ["type"] = "EditorHook", name = "Save Snapshot after Export", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = "Save a session-snapshot on export, named after the export-timespan", } diff --git a/share/scripts/stop_at_marker.lua b/share/scripts/stop_at_marker.lua index 0d5da48b91..a2f69ddd2f 100644 --- a/share/scripts/stop_at_marker.lua +++ b/share/scripts/stop_at_marker.lua @@ -2,7 +2,7 @@ ardour { ["type"] = "session", name = "Stop at Marker", license = "MIT", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = [[Stop the transport on every location marker when rolling forward.]] } diff --git a/share/scripts/store_recall_mixer.lua b/share/scripts/store_recall_mixer.lua index e58fd40831..a1d7a698e2 100644 --- a/share/scripts/store_recall_mixer.lua +++ b/share/scripts/store_recall_mixer.lua @@ -1,7 +1,7 @@ ardour { ["type"] = "EditorAction", name = "Mixer Store", - author = "Ardour Lua Taskforce", + author = "Ardour Team", description = [[ Stores the current Mixer state as a file that can be read and recalled arbitrarily. diff --git a/share/scripts/synth1.lua b/share/scripts/synth1.lua index 3b765d87c4..4fe2f97f89 100644 --- a/share/scripts/synth1.lua +++ b/share/scripts/synth1.lua @@ -3,7 +3,7 @@ ardour { name = "Simple Synth", category = "Instrument", license = "MIT", - author = "Ardour Lua Task Force", + author = "Ardour Team", description = [[An Example synth for prototyping: Sine-wave with a basic attack/sustain/release envelope, variable number of output channels.]] } diff --git a/share/scripts/track_organizer.lua b/share/scripts/track_organizer.lua index 6a270ff5b6..0ad516ed1f 100644 --- a/share/scripts/track_organizer.lua +++ b/share/scripts/track_organizer.lua @@ -1,7 +1,7 @@ ardour { ["type"] = "EditorAction", name = "Track Organizer", - author = "Mixbus Lua Taskforce", + author = "Mixbus Team", description = [[Easily modifiable session overview and track property editor]] } diff --git a/share/scripts/voice_activate.lua b/share/scripts/voice_activate.lua index ef4380b9bb..634653b809 100644 --- a/share/scripts/voice_activate.lua +++ b/share/scripts/voice_activate.lua @@ -2,7 +2,7 @@ ardour { ["type"] = "dsp", name = "Voice/Level Activate", category = "Utility", - author = "Ardour Lua Task Force", + author = "Ardour Team", license = "MIT", description = [[Roll the transport when the signal level on the plugin's input exceeds a given threshold.]] }