diff options
| -rw-r--r-- | lv2/lv2plug.in/ns/ext/state/lv2-state.doap.ttl | 9 | ||||
| -rw-r--r-- | lv2/lv2plug.in/ns/ext/state/manifest.ttl | 2 | ||||
| -rw-r--r-- | lv2/lv2plug.in/ns/ext/state/state.h | 3 | 
3 files changed, 12 insertions, 2 deletions
diff --git a/lv2/lv2plug.in/ns/ext/state/lv2-state.doap.ttl b/lv2/lv2plug.in/ns/ext/state/lv2-state.doap.ttl index 9e699ad..6af90ea 100644 --- a/lv2/lv2plug.in/ns/ext/state/lv2-state.doap.ttl +++ b/lv2/lv2plug.in/ns/ext/state/lv2-state.doap.ttl @@ -14,6 +14,15 @@  		<http://drobilla.net/drobilla#me> ;  	doap:maintainer <http://drobilla.net/drobilla#me> ;  	doap:release [ +		doap:revision "2.1" ; +		doap:created "2015-12-04" ; +		dcs:blame <http://drobilla.net/drobilla#me> ; +		dcs:changeset [ +			dcs:item [ +				rdfs:label "Add LV2_STATE_ERR_NO_SPACE status flag." +			] +		] +	] , [  		doap:revision "2.0" ;  		doap:created "2013-01-16" ;  		doap:file-release <http://lv2plug.in/spec/lv2-1.4.0.tar.bz2> ; diff --git a/lv2/lv2plug.in/ns/ext/state/manifest.ttl b/lv2/lv2plug.in/ns/ext/state/manifest.ttl index c2aec02..fab89a5 100644 --- a/lv2/lv2plug.in/ns/ext/state/manifest.ttl +++ b/lv2/lv2plug.in/ns/ext/state/manifest.ttl @@ -4,5 +4,5 @@  <http://lv2plug.in/ns/ext/state>  	a lv2:Specification ;  	lv2:minorVersion 2 ; -	lv2:microVersion 0 ; +	lv2:microVersion 1 ;  	rdfs:seeAlso <state.ttl> . diff --git a/lv2/lv2plug.in/ns/ext/state/state.h b/lv2/lv2plug.in/ns/ext/state/state.h index 1b08852..d446b30 100644 --- a/lv2/lv2plug.in/ns/ext/state/state.h +++ b/lv2/lv2plug.in/ns/ext/state/state.h @@ -103,7 +103,8 @@ typedef enum {  	LV2_STATE_ERR_BAD_TYPE    = 2,  /**< Failed due to unsupported type. */  	LV2_STATE_ERR_BAD_FLAGS   = 3,  /**< Failed due to unsupported flags. */  	LV2_STATE_ERR_NO_FEATURE  = 4,  /**< Failed due to missing features. */ -	LV2_STATE_ERR_NO_PROPERTY = 5   /**< Failed due to missing property. */ +	LV2_STATE_ERR_NO_PROPERTY = 5,  /**< Failed due to missing property. */ +	LV2_STATE_ERR_NO_SPACE    = 6   /**< Failed due to insufficient space. */  } LV2_State_Status;  /**  |