diff options
Diffstat (limited to 'lv2')
-rw-r--r-- | lv2/atom/atom.meta.ttl | 2 | ||||
-rw-r--r-- | lv2/atom/manifest.ttl | 2 | ||||
-rw-r--r-- | lv2/core/lv2core.meta.ttl | 6 | ||||
-rw-r--r-- | lv2/core/lv2core.ttl | 2 | ||||
-rw-r--r-- | lv2/core/manifest.ttl | 2 | ||||
-rw-r--r-- | lv2/event/event.meta.ttl | 2 | ||||
-rw-r--r-- | lv2/event/event.ttl | 2 | ||||
-rw-r--r-- | lv2/event/manifest.ttl | 2 | ||||
-rw-r--r-- | lv2/patch/manifest.ttl | 2 | ||||
-rw-r--r-- | lv2/patch/patch.meta.ttl | 2 | ||||
-rw-r--r-- | lv2/state/manifest.ttl | 2 | ||||
-rw-r--r-- | lv2/state/state.meta.ttl | 2 | ||||
-rw-r--r-- | lv2/ui/manifest.ttl | 2 | ||||
-rw-r--r-- | lv2/ui/ui.meta.ttl | 2 |
14 files changed, 16 insertions, 16 deletions
diff --git a/lv2/atom/atom.meta.ttl b/lv2/atom/atom.meta.ttl index 9d714d8..cc09060 100644 --- a/lv2/atom/atom.meta.ttl +++ b/lv2/atom/atom.meta.ttl @@ -258,7 +258,7 @@ may assume any binary Path (e.g. in an event payload) is a valid file path which can passed to system functions like fopen() directly, without any character encoding or escape expansion required. -Any implemenation that creates a Path atom to transmit to another is +Any implementation that creates a Path atom to transmit to another is responsible for ensuring it is valid. A Path SHOULD always be absolute, unless there is some mechanism in place that defines a base path. Since this is not the case for plugin instances, effectively any Path sent to or received from a diff --git a/lv2/atom/manifest.ttl b/lv2/atom/manifest.ttl index 46d6de5..9cf13aa 100644 --- a/lv2/atom/manifest.ttl +++ b/lv2/atom/manifest.ttl @@ -4,6 +4,6 @@ <http://lv2plug.in/ns/ext/atom> a lv2:Specification ; lv2:minorVersion 2 ; - lv2:microVersion 2 ; + lv2:microVersion 3 ; rdfs:seeAlso <atom.ttl> . diff --git a/lv2/core/lv2core.meta.ttl b/lv2/core/lv2core.meta.ttl index 465917d..7dac5c1 100644 --- a/lv2/core/lv2core.meta.ttl +++ b/lv2/core/lv2core.meta.ttl @@ -256,7 +256,7 @@ necessarily constant). ### Threading Rules -To faciliate use in multi-threaded programs, LV2 functions are partitioned into +To facilitate use in multi-threaded programs, LV2 functions are partitioned into several threading classes: | Discovery Class | Instantiation Class | Audio Class | @@ -271,7 +271,7 @@ Hosts MUST guarantee that: * A function in any class is never called concurrently with another function in that class. - * A _Discovery_ function is never called concurrently with any other fuction + * A _Discovery_ function is never called concurrently with any other function in the same shared object file. * An _Instantiation_ function for an instance is never called concurrently @@ -337,7 +337,7 @@ lv2:PluginBase An abstract plugin-like resource that may not actually be an LV2 plugin, for example that may not have a lv2:binary. This is useful for describing things -that share common structure with a plugin, but are not themselves an actul +that share common structure with a plugin, but are not themselves an actual plugin, such as presets. """^^lv2:Markdown . diff --git a/lv2/core/lv2core.ttl b/lv2/core/lv2core.ttl index 8754169..bd9fc93 100644 --- a/lv2/core/lv2core.ttl +++ b/lv2/core/lv2core.ttl @@ -657,7 +657,7 @@ lv2:FunctionPlugin owl:Class ; rdfs:subClassOf lv2:UtilityPlugin ; rdfs:label "Function Plugin" ; - rdfs:comment "A plugin whose output is a mathmatical function of its input." . + rdfs:comment "A plugin whose output is a mathematical function of its input." . lv2:ConstantPlugin a rdfs:Class , diff --git a/lv2/core/manifest.ttl b/lv2/core/manifest.ttl index 7f1512b..179076d 100644 --- a/lv2/core/manifest.ttl +++ b/lv2/core/manifest.ttl @@ -5,7 +5,7 @@ <http://lv2plug.in/ns/lv2core> a lv2:Specification ; lv2:minorVersion 18 ; - lv2:microVersion 0 ; + lv2:microVersion 1 ; rdfs:seeAlso <lv2core.ttl> . <http://lv2plug.in/ns/lv2> diff --git a/lv2/event/event.meta.ttl b/lv2/event/event.meta.ttl index ecc40c7..05476d8 100644 --- a/lv2/event/event.meta.ttl +++ b/lv2/event/event.meta.ttl @@ -156,7 +156,7 @@ ev:FrameStamp lv2:documentation """ The default time stamp unit for an LV2 event: the frames field represents audio -frames (in the sample rate passed to intantiate), and the subframes field is +frames (in the sample rate passed to instantiate), and the subframes field is 1/UINT32_MAX of a frame. """^^lv2:Markdown . diff --git a/lv2/event/event.ttl b/lv2/event/event.ttl index 3114fc5..119e606 100644 --- a/lv2/event/event.ttl +++ b/lv2/event/event.ttl @@ -65,7 +65,7 @@ ev:supportsTimeStamp lv2:InputPort ; rdfs:range rdfs:Class ; rdfs:label "supports time stamp type" ; - rdfs:comment "A time stamp type suported by this input port." . + rdfs:comment "A time stamp type supported by this input port." . ev:generatesTimeStamp a rdf:Property , diff --git a/lv2/event/manifest.ttl b/lv2/event/manifest.ttl index 0194d71..8581a6e 100644 --- a/lv2/event/manifest.ttl +++ b/lv2/event/manifest.ttl @@ -4,6 +4,6 @@ <http://lv2plug.in/ns/ext/event> a lv2:Specification ; lv2:minorVersion 1 ; - lv2:microVersion 12 ; + lv2:microVersion 13 ; rdfs:seeAlso <event.ttl> . diff --git a/lv2/patch/manifest.ttl b/lv2/patch/manifest.ttl index 25150bd..90419bb 100644 --- a/lv2/patch/manifest.ttl +++ b/lv2/patch/manifest.ttl @@ -4,6 +4,6 @@ <http://lv2plug.in/ns/ext/patch> a lv2:Specification ; lv2:minorVersion 2 ; - lv2:microVersion 8 ; + lv2:microVersion 9 ; rdfs:seeAlso <patch.ttl> . diff --git a/lv2/patch/patch.meta.ttl b/lv2/patch/patch.meta.ttl index ebe0807..53cbdc0 100644 --- a/lv2/patch/patch.meta.ttl +++ b/lv2/patch/patch.meta.ttl @@ -41,7 +41,7 @@ dcs:blame <http://drobilla.net/drobilla#me> ; dcs:changeset [ dcs:item [ - rdfs:label "Define patch:Get with no subject to implicitly apply to reciever. This can be used by UIs to get an initial description of a plugin." + rdfs:label "Define patch:Get with no subject to implicitly apply to receiver. This can be used by UIs to get an initial description of a plugin." ] , [ rdfs:label "Add patch:Copy method." ] diff --git a/lv2/state/manifest.ttl b/lv2/state/manifest.ttl index 02e7aa1..67beca1 100644 --- a/lv2/state/manifest.ttl +++ b/lv2/state/manifest.ttl @@ -4,6 +4,6 @@ <http://lv2plug.in/ns/ext/state> a lv2:Specification ; lv2:minorVersion 2 ; - lv2:microVersion 8 ; + lv2:microVersion 9 ; rdfs:seeAlso <state.ttl> . diff --git a/lv2/state/state.meta.ttl b/lv2/state/state.meta.ttl index 6f54641..271814c 100644 --- a/lv2/state/state.meta.ttl +++ b/lv2/state/state.meta.ttl @@ -459,7 +459,7 @@ This is a one-way notification, intended to be used as the type of an [Object](atom.html#Object) sent from plugins when necessary. Plugins SHOULD emit such an event whenever a change has occurred that would -result in a different state being saved, but not when the host explicity makes +result in a different state being saved, but not when the host explicitly makes a change which it knows is likely to have that effect, such as changing a parameter. diff --git a/lv2/ui/manifest.ttl b/lv2/ui/manifest.ttl index 9f259ad..304005a 100644 --- a/lv2/ui/manifest.ttl +++ b/lv2/ui/manifest.ttl @@ -4,6 +4,6 @@ <http://lv2plug.in/ns/extensions/ui> a lv2:Specification ; lv2:minorVersion 2 ; - lv2:microVersion 22 ; + lv2:microVersion 23 ; rdfs:seeAlso <ui.ttl> . diff --git a/lv2/ui/ui.meta.ttl b/lv2/ui/ui.meta.ttl index cb92a86..540dc4b 100644 --- a/lv2/ui/ui.meta.ttl +++ b/lv2/ui/ui.meta.ttl @@ -223,7 +223,7 @@ toolkits, the one the UI main loop runs in). There is no requirement that a Note that UIs are completely separate from plugins. From the plugin's perspective, control from a UI is indistinguishable from any other control, as -it all occcurs via ports. +it all occurs via ports. """^^lv2:Markdown . |