Skip to content

Commit

Permalink
Fix carla.lv2 ttl validation
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed Jan 2, 2024
1 parent 73ddea2 commit 98479fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/plugin/carla-lv2-export.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ static void writeManifestFile(PluginListManager& plm, const uint32_t microVersio
text += "@prefix lv2: <" LV2_CORE_PREFIX "> .\n";
text += "@prefix mod: <http://moddevices.com/ns/mod#> .\n";
text += "@prefix opts: <" LV2_OPTIONS_PREFIX "> .\n";
text += "@prefix owl: <http://www.w3.org/2002/07/owl#> .\n";
text += "@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n";
text += "@prefix ui: <" LV2_UI_PREFIX "> .\n";
text += "\n";
Expand All @@ -130,7 +131,7 @@ static void writeManifestFile(PluginListManager& plm, const uint32_t microVersio
// Project

text += "<https://kx.studio/carla>\n";
text += " a owl:Ontology, lv2:Project, doap:Project ;\n";
text += " a owl:Ontology, doap:Project ;\n";
text += " doap:homepage <https://kx.studio/carla> ;\n";
text += " doap:maintainer [\n";
text += " foaf:homepage <https://falktx.com/> ;\n";
Expand Down

0 comments on commit 98479fd

Please sign in to comment.