diff options
author | David Robillard <d@drobilla.net> | 2015-10-28 18:31:14 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-10-28 18:31:14 +0000 |
commit | fa730d2423662aeb4c34f7395e448e3316358823 (patch) | |
tree | 905d65d8f9a6b8481520d0ab46f7162bf0b51994 | |
parent | 438eefdd67368dbd8fb8a6aa7ab207aac44e9715 (diff) | |
download | lilv-fa730d2423662aeb4c34f7395e448e3316358823.tar.gz lilv-fa730d2423662aeb4c34f7395e448e3316358823.tar.bz2 lilv-fa730d2423662aeb4c34f7395e448e3316358823.zip |
Fix outdated comment references to lilv_uri_to_path()
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5795 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | lilv/lilv.h | 8 |
2 files changed, 7 insertions, 5 deletions
@@ -1,8 +1,10 @@ lilv (0.22.1) unstable; * Fix Python bindings + * Fix documentation installation + * Fix outdated comment references to lilv_uri_to_path() - -- David Robillard <d@drobilla.net> Fri, 09 Oct 2015 13:01:14 -0400 + -- David Robillard <d@drobilla.net> Wed, 28 Oct 2015 14:31:05 -0400 lilv (0.22.0) stable; diff --git a/lilv/lilv.h b/lilv/lilv.h index 27ed6d0..6bced5e 100644 --- a/lilv/lilv.h +++ b/lilv/lilv.h @@ -1,5 +1,5 @@ /* - Copyright 2007-2014 David Robillard <http://drobilla.net> + Copyright 2007-2015 David Robillard <http://drobilla.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -750,7 +750,7 @@ lilv_plugin_get_uri(const LilvPlugin* plugin); Typical hosts should not need to use this function. Note this always returns a fully qualified URI. If you want a local - filesystem path, use lilv_uri_to_path(). + filesystem path, use lilv_file_uri_parse(). @return a shared string which must not be modified or freed. */ LILV_API const LilvNode* @@ -760,7 +760,7 @@ lilv_plugin_get_bundle_uri(const LilvPlugin* plugin); Get the (resolvable) URIs of the RDF data files that define a plugin. Typical hosts should not need to use this function. Note this always returns fully qualified URIs. If you want local - filesystem paths, use lilv_uri_to_path(). + filesystem paths, use lilv_file_uri_parse(). @return a list of complete URLs eg. "file:///foo/ABundle.lv2/aplug.ttl", which is shared and must not be modified or freed. */ @@ -770,7 +770,7 @@ lilv_plugin_get_data_uris(const LilvPlugin* plugin); /** Get the (resolvable) URI of the shared library for `plugin`. Note this always returns a fully qualified URI. If you want a local - filesystem path, use lilv_uri_to_path(). + filesystem path, use lilv_file_uri_parse(). @return a shared string which must not be modified or freed. */ LILV_API const LilvNode* |