From f1e44c6acf77cdf44eed75575fe07d52d62a91f9 Mon Sep 17 00:00:00 2001 From: Christopher Arndt Date: Sat, 20 Jan 2024 17:23:49 +0100 Subject: [PATCH] [docs] feat: add readme and license Signed-off-by: Christopher Arndt --- LICENSE.md | 21 +++++++++++++++++++++ README.md | 20 ++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 LICENSE.md create mode 100644 README.md diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..8e8baae --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +# License + +Copyright (c) 2024 Christopher Arndt + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..1822e6a --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ +# My Ardour Scripts + +This repository contains the [Lua scripts] I have written for the [Ardour DAW]. + +The scripts are released under the [MIT License]. Please see the details in the +file [LICENSE.md](./LICENSE.md). + +## Scripts + +[rename_regions_from_markers.lua](./rename_regions_from_markers.lua) + +Renames all selected regions to the name of the track they are on plus the +label of the range marker, which starts where the region starts. If no range +marker is found at this position, the region name remains unchanged. Supports +undo. + +[Ardour DAW]: https://ardour.org/ +[Lua scripts]: https://manual.ardour.org/lua-scripting/ +[MIT License]: https://spdx.org/licenses/MIT.html +