From 8e651d28aec21fefebbfc0746826b76172506902 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 19 Jun 2020 20:27:22 +0200 Subject: Fix state:StateChanged URI in metadata and documentation This was a mistake, and it's arguable which URI was correct before. It was supposed to be "StateChanged" since the name of URIs should stand alone (ignoring the conventional prefix, even though this has been screwed up in several places in the past). Normally, the specification in Turtle is considered canonical for URIs, but in this case, the URI defined in the corresponding header used "StateChanged" (both in name and value), as did all the news. Really everything except the subject in the metadata. So, consider this a documentation bug, and fix the URI in the spec/documentation to match the implemented one. --- lv2/state/manifest.ttl | 2 +- lv2/state/state.meta.ttl | 10 +++++++++- lv2/state/state.ttl | 4 ++-- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/lv2/state/manifest.ttl b/lv2/state/manifest.ttl index 6d12358..089baf2 100644 --- a/lv2/state/manifest.ttl +++ b/lv2/state/manifest.ttl @@ -4,6 +4,6 @@ a lv2:Specification ; lv2:minorVersion 2 ; - lv2:microVersion 6 ; + lv2:microVersion 7 ; rdfs:seeAlso . diff --git a/lv2/state/state.meta.ttl b/lv2/state/state.meta.ttl index 766ac57..3c0fc43 100644 --- a/lv2/state/state.meta.ttl +++ b/lv2/state/state.meta.ttl @@ -15,6 +15,14 @@ ; doap:maintainer ; doap:release [ + doap:revision "2.7" ; + dcs:blame ; + dcs:changeset [ + dcs:item [ + rdfs:label "Fix state:StateChanged URI in metadata and documentation." + ] + ] + ] , [ doap:revision "2.6" ; doap:created "2020-04-26" ; doap:file-release ; @@ -439,7 +447,7 @@ state:makePath). """^^lv2:Markdown . -state:Changed +state:StateChanged lv2:documentation """ A notification that the internal state of the plugin has been changed in a way diff --git a/lv2/state/state.ttl b/lv2/state/state.ttl index 704b312..19ccaa2 100644 --- a/lv2/state/state.ttl +++ b/lv2/state/state.ttl @@ -53,8 +53,8 @@ state:freePath rdfs:label "free path" ; rdfs:comment "A feature for freeing paths allocated by the host." . -state:Changed +state:StateChanged a rdfs:Class ; - rdfs:label "Changed" ; + rdfs:label "State Changed" ; rdfs:comment "A notification that the internal state of the plugin has changed." . -- cgit v1.2.1