Browse Source

Fix mod fileTypes in lv2 audio/midi file plugins

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.3.0-RC1
falkTX 3 years ago
parent
commit
aa6a81023e
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      source/plugin/carla-lv2-export.cpp

+ 2
- 2
source/plugin/carla-lv2-export.cpp View File

@@ -197,14 +197,14 @@ static void writeManifestFile(PluginListManager& plm, const uint32_t microVersio

text += "<http://kxstudio.sf.net/carla/file/audio>\n";
text += " a lv2:Parameter ;\n";
text += " mod:fileTypes \"audiofiles,audioloops\" ;\n";
text += " mod:fileTypes \"audioloop,audiorecording,audiotrack\" ;\n";
text += " rdfs:label \"audio file\" ;\n";
text += " rdfs:range atom:Path .\n";
text += "\n";

text += "<http://kxstudio.sf.net/carla/file/midi>\n";
text += " a lv2:Parameter ;\n";
text += " mod:fileTypes \"midi\" ;\n";
text += " mod:fileTypes \"midisong\" ;\n";
text += " rdfs:label \"midi file\" ;\n";
text += " rdfs:range atom:Path .\n";
text += "\n";


Loading…
Cancel
Save