From 039023c4b4b0e3cdf787c33fcfe62c97def07dd4 Mon Sep 17 00:00:00 2001
From: David Robillard <d@drobilla.net>
Date: Mon, 3 Oct 2016 22:51:41 -0400
Subject: Add patch:accept property

---
 lv2/lv2plug.in/ns/ext/patch/lv2-patch.doap.ttl | 9 +++++++++
 lv2/lv2plug.in/ns/ext/patch/manifest.ttl       | 2 +-
 lv2/lv2plug.in/ns/ext/patch/patch.h            | 1 +
 lv2/lv2plug.in/ns/ext/patch/patch.ttl          | 7 +++++++
 4 files changed, 18 insertions(+), 1 deletion(-)

(limited to 'lv2/lv2plug.in/ns/ext')

diff --git a/lv2/lv2plug.in/ns/ext/patch/lv2-patch.doap.ttl b/lv2/lv2plug.in/ns/ext/patch/lv2-patch.doap.ttl
index 0f11efd..f5e1f7f 100644
--- a/lv2/lv2plug.in/ns/ext/patch/lv2-patch.doap.ttl
+++ b/lv2/lv2plug.in/ns/ext/patch/lv2-patch.doap.ttl
@@ -12,6 +12,15 @@
 	doap:name "LV2 Patch" ;
 	doap:shortdesc "Messages for accessing and manipulating properties." ;
 	doap:release [
+		doap:revision "2.5" ;
+		doap:created "2016-10-03" ;
+		dcs:blame <http://drobilla.net/drobilla#me> ;
+		dcs:changeset [
+			dcs:item [
+				rdfs:label "Add patch:accept property."
+			]
+		]
+	] , [
 		doap:revision "2.4" ;
 		doap:created "2015-04-07" ;
 		doap:file-release <http://lv2plug.in/spec/lv2-1.12.0.tar.bz2> ;
diff --git a/lv2/lv2plug.in/ns/ext/patch/manifest.ttl b/lv2/lv2plug.in/ns/ext/patch/manifest.ttl
index 78e07f5..9803a5d 100644
--- a/lv2/lv2plug.in/ns/ext/patch/manifest.ttl
+++ b/lv2/lv2plug.in/ns/ext/patch/manifest.ttl
@@ -4,5 +4,5 @@
 <http://lv2plug.in/ns/ext/patch>
 	a lv2:Specification ;
 	lv2:minorVersion 2 ;
-	lv2:microVersion 4 ;
+	lv2:microVersion 5 ;
 	rdfs:seeAlso <patch.ttl> .
diff --git a/lv2/lv2plug.in/ns/ext/patch/patch.h b/lv2/lv2plug.in/ns/ext/patch/patch.h
index 3ade25e..e78164d 100644
--- a/lv2/lv2plug.in/ns/ext/patch/patch.h
+++ b/lv2/lv2plug.in/ns/ext/patch/patch.h
@@ -45,6 +45,7 @@
 #define LV2_PATCH__Request        LV2_PATCH_PREFIX "Request"         ///< http://lv2plug.in/ns/ext/patch#Request
 #define LV2_PATCH__Response       LV2_PATCH_PREFIX "Response"        ///< http://lv2plug.in/ns/ext/patch#Response
 #define LV2_PATCH__Set            LV2_PATCH_PREFIX "Set"             ///< http://lv2plug.in/ns/ext/patch#Set
+#define LV2_PATCH__accept         LV2_PATCH_PREFIX "accept"          ///< http://lv2plug.in/ns/ext/patch#accept
 #define LV2_PATCH__add            LV2_PATCH_PREFIX "add"             ///< http://lv2plug.in/ns/ext/patch#add
 #define LV2_PATCH__body           LV2_PATCH_PREFIX "body"            ///< http://lv2plug.in/ns/ext/patch#body
 #define LV2_PATCH__destination    LV2_PATCH_PREFIX "destination"     ///< http://lv2plug.in/ns/ext/patch#destination
diff --git a/lv2/lv2plug.in/ns/ext/patch/patch.ttl b/lv2/lv2plug.in/ns/ext/patch/patch.ttl
index 1d22aef..79ada4e 100644
--- a/lv2/lv2plug.in/ns/ext/patch/patch.ttl
+++ b/lv2/lv2plug.in/ns/ext/patch/patch.ttl
@@ -272,6 +272,13 @@ values for the property before setting the new value.  For example:</p>
 </pre>
 """ .
 
+patch:accept
+	a rdf:Property ;
+	rdfs:label "accept" ;
+	rdfs:domain patch:Request ;
+	rdfs:range rdfs:Class ;
+	rdfs:comment "An accepted type for a response." .
+
 patch:add
 	a rdf:Property ,
 		owl:ObjectProperty ,
-- 
cgit v1.2.1