From 5f6fccb4d88e49ca62b5803fe7ba5d4d2128936c Mon Sep 17 00:00:00 2001 From: Alexandros Theodotou Date: Sun, 23 Feb 2020 13:26:00 +0000 Subject: [PATCH] fix lv2 validate fail --- src/zlfo_ttl_gen.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/zlfo_ttl_gen.c b/src/zlfo_ttl_gen.c index b218396..89f9d14 100644 --- a/src/zlfo_ttl_gen.c +++ b/src/zlfo_ttl_gen.c @@ -69,6 +69,12 @@ int main ( @prefix urid: .\n\ @prefix ui: .\n\n"); + fprintf (f, +"<" PROJECT_URI ">\n\ + a doap:Project ;\n\ + doap:name \"Zrythm plugins\" .\n\ +\n"); + fprintf (f, "<" LFO_URI ">\n\ a lv2:Plugin,\n\ @@ -429,7 +435,7 @@ int main ( lv2:extensionData ui:idleInterface ,\n\ ui:showInterface ;\n\ ui:portNotification [\n\ - ui:plugin \"" LFO_URI "\" ;\n\ + ui:plugin <" LFO_URI "> ;\n\ lv2:symbol \"notify\" ;\n\ ui:notifyType atom:Blank ;\n\ ] .");