From d640cfdd7103f2c7231e4a0f94727dd505efd3fb Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Wed, 15 Jul 2020 18:43:34 +0200 Subject: LV2: Fix ttl manifest and plugin description. It appears the `doap:name` property needs to be in the `manifest.ttl`, so then we move both doap properties there. --- plugins/LV2/src/Acceleration/Acceleration.ttl | 7 ++----- plugins/LV2/src/Acceleration/manifest.ttl.in | 7 +++++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/plugins/LV2/src/Acceleration/Acceleration.ttl b/plugins/LV2/src/Acceleration/Acceleration.ttl index fec2952..9560858 100644 --- a/plugins/LV2/src/Acceleration/Acceleration.ttl +++ b/plugins/LV2/src/Acceleration/Acceleration.ttl @@ -1,6 +1,5 @@ # Airwindows Acceleration Limiter plugin description -@prefix doap: . @prefix lv2: . @prefix rdf: . @prefix rdfs: . @@ -10,12 +9,10 @@ a lv2:Plugin , lv2:LimiterPlugin ; lv2:project ; - doap:name "Airwindows Acceleration Limiter" ; - doap:license ; # Unsure what this does, and if the plugin conforms to it. # Taken from the LV2 sample amp plugin, figure out later. - lv2optionalFeature lv2:hardRTCapable ; + lv2:optionalFeature lv2:hardRTCapable ; # Define the ports for this plugin. # Two control ports - limit and dry/wet @@ -35,7 +32,7 @@ lv2:name "Dry/Wet" ; lv2:default 1.0 ; lv2:minimum 0.0 ; - lc2:maximum 1.0 ; + lv2:maximum 1.0 ; ] , [ a lv2:InputPort , lv2:AudioPort ; lv2:index 2 ; diff --git a/plugins/LV2/src/Acceleration/manifest.ttl.in b/plugins/LV2/src/Acceleration/manifest.ttl.in index f4fcbc7..6f00bd4 100644 --- a/plugins/LV2/src/Acceleration/manifest.ttl.in +++ b/plugins/LV2/src/Acceleration/manifest.ttl.in @@ -1,9 +1,12 @@ # LV2 Plugin manifest for airwindows Acceleration limiter plugin +@prefix doap: . @prefix lv2: . @prefix rdfs: . a lv2:Plugin ; - lv2:binary ; - rdfs:seeAlso . + doap:name "Airwindows Acceleration Limiter" ; + doap:license ; + lv2:binary ; + rdfs:seeAlso . -- cgit v1.2.3