aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-06-19 20:27:22 +0200
committerDavid Robillard <d@drobilla.net>2020-06-19 20:27:22 +0200
commit8e651d28aec21fefebbfc0746826b76172506902 (patch)
treea7bc7ca957798243aed40c1242c80edd5bbc37a4
parent7fb5846d75854feaaf364e364b84fa85772532af (diff)
downloadlv2-8e651d28aec21fefebbfc0746826b76172506902.tar.xz
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.
-rw-r--r--lv2/state/manifest.ttl2
-rw-r--r--lv2/state/state.meta.ttl10
-rw-r--r--lv2/state/state.ttl4
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 @@
<http://lv2plug.in/ns/ext/state>
a lv2:Specification ;
lv2:minorVersion 2 ;
- lv2:microVersion 6 ;
+ lv2:microVersion 7 ;
rdfs:seeAlso <state.ttl> .
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 @@
<http://drobilla.net/drobilla#me> ;
doap:maintainer <http://drobilla.net/drobilla#me> ;
doap:release [
+ doap:revision "2.7" ;
+ dcs:blame <http://drobilla.net/drobilla#me> ;
+ 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 <http://lv2plug.in/spec/lv2-1.18.0.tar.bz2> ;
@@ -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." .