summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-04-21 22:34:38 +0000
committerDavid Robillard <d@drobilla.net>2012-04-21 22:34:38 +0000
commit291525cdb3ba98eb309ff594851a13bc992b82d8 (patch)
treed85095f26701d9a4cf455aa84a8c265ca60f7371
parent6b564aa8e7f27e93212dc8d695a9bae35efe83e6 (diff)
downloadlilv-291525cdb3ba98eb309ff594851a13bc992b82d8.tar.gz
lilv-291525cdb3ba98eb309ff594851a13bc992b82d8.tar.bz2
lilv-291525cdb3ba98eb309ff594851a13bc992b82d8.zip
Lilv 0.14.0
git-svn-id: http://svn.drobilla.net/lad/tags/lilv-0.14.0@4221 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r--NEWS2
-rw-r--r--doc/reference.doxygen.in4
-rw-r--r--lilv/lilv.h1
-rw-r--r--wscript10
4 files changed, 8 insertions, 9 deletions
diff --git a/NEWS b/NEWS
index f9a6540..73f0f95 100644
--- a/NEWS
+++ b/NEWS
@@ -27,7 +27,7 @@ lilv (0.14.0) stable;
* Add lilv_plugin_get_project() and get author information from project if
it is not given directly on the plugin.
- -- David Robillard <d@drobilla.net> Tue, 17 Apr 2012 18:46:50 -0400
+ -- David Robillard <d@drobilla.net> Wed, 18 Apr 2012 20:06:28 -0400
lilv (0.5.0) stable;
diff --git a/doc/reference.doxygen.in b/doc/reference.doxygen.in
index 97cb0e7..ce4f291 100644
--- a/doc/reference.doxygen.in
+++ b/doc/reference.doxygen.in
@@ -527,7 +527,7 @@ WARNINGS = YES
# for undocumented members. If EXTRACT_ALL is set to YES then this flag will
# automatically be disabled.
-WARN_IF_UNDOCUMENTED = YES
+WARN_IF_UNDOCUMENTED = NO
# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for
# potential errors in the documentation, such as not documenting some
@@ -794,7 +794,7 @@ HTML_FOOTER =
# the style sheet file to the HTML output directory, so don't put your own
# stylesheet in the HTML output directory as well, or it will be erased!
-HTML_STYLESHEET = @LILV_SRCDIR@/doc/style.css
+HTML_STYLESHEET = doc/style.css
# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
# files or namespaces will be aligned in HTML using tables. If set to
diff --git a/lilv/lilv.h b/lilv/lilv.h
index 893d1ad..7d4cb9f 100644
--- a/lilv/lilv.h
+++ b/lilv/lilv.h
@@ -1357,7 +1357,6 @@ lilv_state_restore(const LilvState* state,
@param uri URI of state, may be NULL.
@param dir Path of the bundle directory to save into.
@param filename Path of the state file relative to @c dir.
- @param features Host provided features.
The format of state on disk is compatible with that defined in the LV2
preset extension, i.e. this function may be used to save presets which can
diff --git a/wscript b/wscript
index 893a96a..628d7c1 100644
--- a/wscript
+++ b/wscript
@@ -77,11 +77,11 @@ def configure(conf):
conf.env['BASH_COMPLETION'] = not Options.options.no_bash_completion
autowaf.check_pkg(conf, 'lv2', uselib_store='LV2',
- atleast_version='0.5.0', mandatory=True)
+ atleast_version='1.0.0', mandatory=True)
autowaf.check_pkg(conf, 'serd-0', uselib_store='SERD',
- atleast_version='0.11.0', mandatory=True)
+ atleast_version='0.14.0', mandatory=True)
autowaf.check_pkg(conf, 'sord-0', uselib_store='SORD',
- atleast_version='0.7.0', mandatory=True)
+ atleast_version='0.8.0', mandatory=True)
autowaf.check_pkg(conf, 'sratom-0', uselib_store='SRATOM',
atleast_version='0.2.0', mandatory=True)
@@ -346,9 +346,9 @@ def fix_docs(ctx):
os.chdir(build_dir(ctx, 'doc/html'))
os.system("sed -i 's/LILV_API //' group__lilv.html")
os.system("sed -i 's/LILV_DEPRECATED //' group__lilv.html")
+ os.system("sed -i 's/href=\"doc\/style.css\"/href=\"style.css\"/' group__lilv.html")
os.remove('index.html')
- os.symlink('group__lilv.html',
- 'index.html')
+ os.symlink('group__lilv.html', 'index.html')
os.chdir(top)
os.chdir(build_dir(ctx, 'doc/man/man3'))
os.system("sed -i 's/LILV_API //' lilv.3")