mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Add factory plugin tags + favorites
This commit is contained in:
parent
257a1dde91
commit
49130df35b
4 changed files with 28 additions and 0 deletions
1
plugin_metadata/plugin_statuses
Normal file
1
plugin_metadata/plugin_statuses
Normal file
|
|
@ -0,0 +1 @@
|
|||
|
||||
9
plugin_metadata/plugin_tags
Normal file
9
plugin_metadata/plugin_tags
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<PluginTags>
|
||||
<Plugin type="LV2" id="urn:ardour:a-reverb" tags="reverb"/>
|
||||
<Plugin type="LV2" id="urn:ardour:a-fluidsynth" tags="sampler piano organ drum synth bass trumpet horn rhodes guitar"/>
|
||||
<Plugin type="LV2" id="urn:ardour:a-eq" tags="eq:parametric"/>
|
||||
<Plugin type="LV2" id="urn:ardour:a-delay" tags="delay"/>
|
||||
<Plugin type="LV2" id="urn:ardour:a-comp#stereo" tags="compressor dynamic"/>
|
||||
<Plugin type="LV2" id="urn:ardour:a-comp" tags="compressor dynamic"/>
|
||||
</PluginTags>
|
||||
17
plugin_metadata/wscript
Normal file
17
plugin_metadata/wscript
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
import os
|
||||
|
||||
top = '.'
|
||||
out = 'build'
|
||||
|
||||
def configure(conf):
|
||||
pass
|
||||
|
||||
def build(bld):
|
||||
maps = bld.path.ant_glob ('*')
|
||||
bld.install_files (os.path.join(bld.env['DATADIR'], 'plugin_metadata'),
|
||||
maps)
|
||||
|
||||
def options(opt):
|
||||
pass
|
||||
1
wscript
1
wscript
|
|
@ -252,6 +252,7 @@ children = [
|
|||
'mcp',
|
||||
'osc',
|
||||
'patchfiles',
|
||||
'plugin_metadata',
|
||||
'scripts',
|
||||
'headless',
|
||||
'session_utils',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue