diff options
| author | David Robillard <d@drobilla.net> | 2015-04-05 05:37:20 -0400 | 
|---|---|---|
| committer | David Robillard <d@drobilla.net> | 2015-04-05 05:37:20 -0400 | 
| commit | fc14fc9a14532f2bf1efa39f670322b60415473b (patch) | |
| tree | 6edd329f59178708e0f270c78b83f1b70fbfa67b /lv2/lv2plug.in/ns/lv2core | |
| parent | 770af26981ef5734806d81794aca29baa258107e (diff) | |
| download | lv2-fc14fc9a14532f2bf1efa39f670322b60415473b.tar.xz | |
Add lv2:isSideChain port property.
Diffstat (limited to 'lv2/lv2plug.in/ns/lv2core')
| -rw-r--r-- | lv2/lv2plug.in/ns/lv2core/lv2core.doap.ttl | 4 | ||||
| -rw-r--r-- | lv2/lv2plug.in/ns/lv2core/lv2core.ttl | 5 | 
2 files changed, 8 insertions, 1 deletions
| diff --git a/lv2/lv2plug.in/ns/lv2core/lv2core.doap.ttl b/lv2/lv2plug.in/ns/lv2core/lv2core.doap.ttl index 60c231e..852256d 100644 --- a/lv2/lv2plug.in/ns/lv2core/lv2core.doap.ttl +++ b/lv2/lv2plug.in/ns/lv2core/lv2core.doap.ttl @@ -17,13 +17,15 @@  	doap:maintainer <http://drobilla.net/drobilla#me> ;  	doap:release [  		doap:revision "12.3" ; -		doap:created "2014-11-01" ; +		doap:created "2015-04-05" ;  		dcs:blame <http://drobilla.net/drobilla#me> ;  		dcs:changeset [  			dcs:item [  				rdfs:label "Relax domain of lv2:minimum lv2:maximum and lv2:default so they can be used to describe properties/parameters as well."  			] , [  				rdfs:label "Add extern C and visibility attribute to LV2_SYMBOL_EXPORT." +			] , [ +				rdfs:label "Add lv2:isSideChain port property."  			]  		]  	] , [ diff --git a/lv2/lv2plug.in/ns/lv2core/lv2core.ttl b/lv2/lv2plug.in/ns/lv2core/lv2core.ttl index f6e4b3f..7434aa0 100644 --- a/lv2/lv2plug.in/ns/lv2core/lv2core.ttl +++ b/lv2/lv2plug.in/ns/lv2core/lv2core.ttl @@ -780,6 +780,11 @@ lv2:enumeration  	rdfs:label "enumeration" ;  	rdfs:comment """Indicates that a port's only reasonable values are the scale points defined for that port. A host SHOULD NOT allow a user to set the value of such a port to anything other than a scale point. However, a plugin MUST operate reasonably even if such a port has an input that is not a scale point, preferably by simply choosing the largest enumeration value less than or equal to the actual input value (i.e. round the input value down).""" . +lv2:isSideChain +	a lv2:PortProperty ; +	rdfs:label "is side-chain" ; +	rdfs:comment """Indicates that a port is a "sidechain", which affects the output somehow but should not be considered a main input.  Sidechain ports should be connectionOptional, and may be ignored by hosts.""" . +  lv2:GeneratorPlugin  	a rdfs:Class ,  		owl:Class ; |