From 413f33c3bbe27c6835592d892be8628ecfa09b24 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 10 Jan 2013 06:11:23 +0000 Subject: Add lv2:control for designating primary event-based control ports. Set range of lv2:designation to lv2:Designation. Make lv2:Parameter rdfs:subClassOf rdf:Property. --- lv2/lv2plug.in/ns/lv2core/lv2.h | 1 + lv2/lv2plug.in/ns/lv2core/lv2core.doap.ttl | 10 ++++++++-- lv2/lv2plug.in/ns/lv2core/lv2core.ttl | 16 ++++++++++++++-- lv2/lv2plug.in/ns/lv2core/manifest.ttl | 4 ++-- 4 files changed, 25 insertions(+), 6 deletions(-) (limited to 'lv2/lv2plug.in/ns/lv2core') diff --git a/lv2/lv2plug.in/ns/lv2core/lv2.h b/lv2/lv2plug.in/ns/lv2core/lv2.h index 5848691..a63aead 100644 --- a/lv2/lv2plug.in/ns/lv2core/lv2.h +++ b/lv2/lv2plug.in/ns/lv2core/lv2.h @@ -86,6 +86,7 @@ #define LV2_CORE__appliesTo LV2_CORE_PREFIX "appliesTo" #define LV2_CORE__binary LV2_CORE_PREFIX "binary" #define LV2_CORE__connectionOptional LV2_CORE_PREFIX "connectionOptional" +#define LV2_CORE__control LV2_CORE_PREFIX "control" #define LV2_CORE__default LV2_CORE_PREFIX "default" #define LV2_CORE__designation LV2_CORE_PREFIX "designation" #define LV2_CORE__documentation LV2_CORE_PREFIX "documentation" diff --git a/lv2/lv2plug.in/ns/lv2core/lv2core.doap.ttl b/lv2/lv2plug.in/ns/lv2core/lv2core.doap.ttl index 432f6ba..25cace6 100644 --- a/lv2/lv2plug.in/ns/lv2core/lv2core.doap.ttl +++ b/lv2/lv2plug.in/ns/lv2core/lv2core.doap.ttl @@ -16,11 +16,17 @@ ; doap:maintainer ; doap:release [ - doap:revision "8.3" ; - doap:created "2012-12-19" ; + doap:revision "9.1" ; + doap:created "2013-01-10" ; dcs:changeset [ dcs:item [ rdfs:label "Add lv2:EnvelopePlugin class." + ] , [ + rdfs:label "Add lv2:control for designating primary event-based control ports." + ] , [ + rdfs:label "Set range of lv2:designation to lv2:Designation." + ] , [ + rdfs:label "Make lv2:Parameter rdfs:subClassOf rdf:Property." ] ] ] , [ diff --git a/lv2/lv2plug.in/ns/lv2core/lv2core.ttl b/lv2/lv2plug.in/ns/lv2core/lv2core.ttl index cefd146..c339343 100644 --- a/lv2/lv2plug.in/ns/lv2core/lv2core.ttl +++ b/lv2/lv2plug.in/ns/lv2core/lv2core.ttl @@ -509,13 +509,15 @@ lv2:Channel rdfs:subClassOf lv2:Designation ; rdfs:label "Channel" ; lv2:documentation """ -

A specific channel of audio, e.g. left or right.

+

A specific channel, e.g. left or right. A channel may be +audio, or another type such as a MIDI control stream.

""" . lv2:Parameter a rdfs:Class , owl:Class ; - rdfs:subClassOf lv2:Designation ; + rdfs:subClassOf lv2:Designation , + rdf:Property ; rdfs:label "Parameter" ; lv2:documentation """

A parameter, i.e. a recognized property. A parameter is a designation for a @@ -532,6 +534,7 @@ lv2:designation a rdf:Property , owl:ObjectProperty , owl:FunctionalProperty ; + rdfs:range lv2:Designation ; rdfs:label "designation" ; lv2:documentation """

Indicates a channel or parameter designation.

@@ -567,6 +570,15 @@ wall-clock time and the passage of time in the data being processed (e.g. audio frames).

""" . +lv2:control + a lv2:Channel ; + rdfs:label "control" ; + lv2:documentation """ +

The primary control channel. This should be used as the lv2:designation of +ports that are used to send commands and receive responses. Typically this +will be an event port that supports some protocol, e.g. MIDI or LV2 Atoms.

+""" . + lv2:Point a rdfs:Class , owl:Class ; diff --git a/lv2/lv2plug.in/ns/lv2core/manifest.ttl b/lv2/lv2plug.in/ns/lv2core/manifest.ttl index 7231951..af55481 100644 --- a/lv2/lv2plug.in/ns/lv2core/manifest.ttl +++ b/lv2/lv2plug.in/ns/lv2core/manifest.ttl @@ -4,6 +4,6 @@ a lv2:Specification ; - lv2:minorVersion 8 ; - lv2:microVersion 3 ; + lv2:minorVersion 9 ; + lv2:microVersion 1 ; rdfs:seeAlso . -- cgit v1.2.1