diff options
author | falkTX <falktx@gmail.com> | 2015-07-01 15:45:43 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-11-13 10:40:21 -0500 |
commit | a34ea338a347c4ebd3a190b60cde664d977412e8 (patch) | |
tree | 82e31e6eb18ede8212cf254b33b5e6d14a44d86c | |
parent | bb94e4c2b4967c67cec479d3b194840aed8e9a6b (diff) | |
download | lv2-a34ea338a347c4ebd3a190b60cde664d977412e8.tar.xz |
Add lv2:shortName property
-rw-r--r-- | lv2/lv2plug.in/ns/lv2core/lv2core.ttl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lv2/lv2plug.in/ns/lv2core/lv2core.ttl b/lv2/lv2plug.in/ns/lv2core/lv2core.ttl index 36a07ec..5d5f699 100644 --- a/lv2/lv2plug.in/ns/lv2core/lv2core.ttl +++ b/lv2/lv2plug.in/ns/lv2core/lv2core.ttl @@ -473,6 +473,15 @@ lv2:name This property is required for Ports, but MUST NOT be used by the host for port identification. The plugin author may change the values of this property without changing the Plugin URI.""" . +lv2:shortName + a rdf:Property , + owl:DatatypeProperty ; + rdfs:label "short name" ; + rdfs:range xsd:string ; + rdfs:comment """A short display name for labeling in a user interface. + +The same rules for port names apply here, with the exception that short names should not be longer than 16 characters.""" . + lv2:Designation a rdfs:Class , owl:Class ; |