aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lv2/lv2plug.in/ns/extensions/ui/lv2-ui.doap.ttl9
-rw-r--r--lv2/lv2plug.in/ns/extensions/ui/ui.h2
-rw-r--r--wscript2
3 files changed, 11 insertions, 2 deletions
diff --git a/lv2/lv2plug.in/ns/extensions/ui/lv2-ui.doap.ttl b/lv2/lv2plug.in/ns/extensions/ui/lv2-ui.doap.ttl
index dccecb1..094fccc 100644
--- a/lv2/lv2plug.in/ns/extensions/ui/lv2-ui.doap.ttl
+++ b/lv2/lv2plug.in/ns/extensions/ui/lv2-ui.doap.ttl
@@ -13,6 +13,15 @@
doap:developer <http://lv2plug.in/ns/meta#larsl> ;
doap:maintainer <http://drobilla.net/drobilla#me> ;
doap:release [
+ doap:revision "2.15" ;
+ doap:created "2013-10-08" ;
+ dcs:blame <http://drobilla.net/drobilla#me> ;
+ dcs:changeset [
+ dcs:item [
+ rdfs:label "Fix LV2_UI_INVALID_PORT_INDEX identifier in documentation."
+ ]
+ ]
+ ] , [
doap:revision "2.14" ;
doap:created "2013-03-18" ;
doap:file-release <http://lv2plug.in/spec/lv2-1.6.0.tar.bz2> ;
diff --git a/lv2/lv2plug.in/ns/extensions/ui/ui.h b/lv2/lv2plug.in/ns/extensions/ui/ui.h
index 3ebddbb..b816581 100644
--- a/lv2/lv2plug.in/ns/extensions/ui/ui.h
+++ b/lv2/lv2plug.in/ns/extensions/ui/ui.h
@@ -261,7 +261,7 @@ typedef struct _LV2UI_Port_Map {
/**
Get the index for the port with the given @p symbol.
- @return The index of the port, or LV2_UI_INVALID_PORT_INDEX if no such
+ @return The index of the port, or LV2UI_INVALID_PORT_INDEX if no such
port is found.
*/
uint32_t (*port_index)(LV2UI_Feature_Handle handle, const char* symbol);
diff --git a/wscript b/wscript
index 1258ee3..08803e1 100644
--- a/wscript
+++ b/wscript
@@ -14,7 +14,7 @@ import waflib.Scripting as Scripting
# Variables for 'waf dist'
APPNAME = 'lv2'
-VERSION = '1.6.0'
+VERSION = '1.6.1'
# Mandatory variables
top = '.'