Files
ardour/share/scripts
Maciej Bliziński 1c8b91ed86 Keep the search term in the dialog box.
When user wants to keep the dialog box open, it's probably with the intention to edit the search term rather than typing it from scratch again.
2023-09-09 21:48:21 +02:00
..
2022-11-19 20:25:22 +01:00
2020-09-30 22:06:35 +02:00
2020-09-30 22:06:35 +02:00
2020-09-30 22:06:35 +02:00
2020-04-19 00:49:43 +02:00
2020-09-30 22:06:35 +02:00
2020-09-30 22:06:35 +02:00
2022-04-08 19:51:02 +02:00
2020-09-30 22:06:35 +02:00
2022-04-08 19:51:02 +02:00
2020-09-30 22:06:35 +02:00
2020-09-30 22:06:35 +02:00
2022-04-08 19:51:02 +02:00
2020-03-15 11:24:55 +01:00
2023-05-12 02:49:37 +02:00
2022-08-21 23:36:17 +03:00
2023-07-06 00:27:30 +02:00
2022-09-04 23:32:25 +03:00
2022-04-08 19:51:02 +02:00
2022-02-08 23:06:45 +01:00
2022-04-08 19:51:02 +02:00
2022-04-08 19:51:02 +02:00
2023-08-26 14:09:53 +02:00
2022-04-08 19:51:02 +02:00
2022-04-08 19:51:02 +02:00
2022-04-08 19:51:02 +02:00
2022-04-08 19:51:02 +02:00
2022-04-08 19:51:02 +02:00
2023-06-28 19:10:34 +02:00
2022-04-08 19:51:02 +02:00
2022-10-17 15:57:01 +02:00
2022-04-08 19:51:02 +02:00
2022-09-04 23:32:25 +03:00

Ardour Lua Scripts
==================

https://manual.ardour.org/lua-scripting/

For upstream script addition, please file a pull-request at
https://github.com/Ardour/ardour/tree/master/share/scripts

Script Naming conventions:

_
 A script filename with a leading underscore indicates an example script.
 These scripts are only available from ardour's git repository and not
 installed nor included with binary bundles.

__
 Scripts with a filename starting with two underscores are excluded from
 unit-tests.  This is currently the case for convolver, fluidsynth and
 plugin-modulation.
 They depend on external files (soundfont, impulse-response) or a specific
 session-setup (plugin-modulation needs an automatable plugin).

s_
 A filename beginning with "s_" indicates a code snippet.
 These scripts can only be used in the interactive interpreter
 (Window > Scripting). They may be useful by themselves or handy for copy/edit
 to create EditorActions.
 The filename prefix is only for convenience, "type" = "Snippet" is used when
 scripts are listed at runtime.

_-*.lua
 git ignores those. Intended for local/custom dev scripts or work in progress.