From 1fd2287771ced4ac6172ced9568da1e21c651cb8 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 15 Jan 2008 23:52:45 +0000 Subject: Move debian/changelog to ChangeLog. Fix librdf warning. git-svn-id: http://svn.drobilla.net/lad/slv2@1057 a436a847-0d15-0410-975c-d299462d15a1 --- ChangeLog | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ debian/changelog | 46 ---------------------------------------------- src/plugin.c | 1 + 3 files changed, 52 insertions(+), 46 deletions(-) create mode 100644 ChangeLog delete mode 100644 debian/changelog diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..64f9e84 --- /dev/null +++ b/ChangeLog @@ -0,0 +1,51 @@ +slv2 (0.4.5) unstable; urgency=low + + * Fix redland librdf_free_query_results warning + +slv2 (0.4.4) unstable; urgency=low + + * Add slv2_port_has_property + * Add slv2_plugin_has_feature + * Add plugin template and port signature interface for much faster plugin + discovery with port input/output/type inspection. + + -- Dave Robillard Sat, 12 Jan 2008 12:52:35 -0500 + +slv2 (0.4.3) unstable; urgency=low + + * Fix lv2_inspect command line handling bug (always prints help) + * Fix case where multiple plugins are described in the same file + (avoid port symbol clashing). + + -- Dave Robillard Thu, 10 Jan 2008 20:03:19 -0500 + +slv2 (0.4.2) unstable; urgency=low + + * Update for LV2 specification release 1 + + -- Dave Robillard Tue, 08 Jan 2008 20:16:56 -0500 + +slv2 (0.4.1) unstable; urgency=low + + * Debian packaging (no functional changes) + + -- Dave Robillard Sun, 6 Jan 2008 18:39:57 -0500 + +slv2 (0.4.0) unstable; urgency=low + + * Update for most recent LV2 GUI specification + * Fix plugin detection bugs + + -- Dave Robillard Sun, 6 Jan 2008 17:11:18 -0500 + +slv2 (0.3.2) unstable; urgency=low + + * Build man pages + + -- Dave Robillard Wed, 30 Nov 2007 18:19:00 -0500 + +slv2 (0.3.1) unstable; urgency=low + + * Initial Debian Release. + + -- Dave Robillard Wed, 14 Nov 2007 22:29:49 -0500 diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index 8eb91c7..0000000 --- a/debian/changelog +++ /dev/null @@ -1,46 +0,0 @@ -slv2 (0.4.4) unstable; urgency=low - - * Add slv2_port_has_property - * Add plugin template and port signature interface for much faster plugin - discovery with port input/output/type inspection. - - -- Dave Robillard Sat, 12 Jan 2008 12:52:35 -0500 - -slv2 (0.4.3) unstable; urgency=low - - * Fix lv2_inspect command line handling bug (always prints help) - * Fix case where multiple plugins are described in the same file - (avoid port symbol clashing). - - -- Dave Robillard Thu, 10 Jan 2008 20:03:19 -0500 - -slv2 (0.4.2) unstable; urgency=low - - * Update for LV2 specification release 1 - - -- Dave Robillard Tue, 08 Jan 2008 20:16:56 -0500 - -slv2 (0.4.1) unstable; urgency=low - - * Debian packaging (no functional changes) - - -- Dave Robillard Sun, 6 Jan 2008 18:39:57 -0500 - -slv2 (0.4.0) unstable; urgency=low - - * Update for most recent LV2 GUI specification - * Fix plugin detection bugs - - -- Dave Robillard Sun, 6 Jan 2008 17:11:18 -0500 - -slv2 (0.3.2) unstable; urgency=low - - * Build man pages - - -- Dave Robillard Wed, 30 Nov 2007 18:19:00 -0500 - -slv2 (0.3.1) unstable; urgency=low - - * Initial Debian Release. - - -- Dave Robillard Wed, 14 Nov 2007 22:29:49 -0500 diff --git a/src/plugin.c b/src/plugin.c index b2af232..b77479f 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -259,6 +259,7 @@ slv2_plugin_load(SLV2Plugin p) librdf_free_query_results(results); librdf_free_query(q); + librdf_model_print(p->rdf, stdout); //printf("%p %s: NUM PORTS: %d\n", (void*)p, p->plugin_uri, slv2_plugin_get_num_ports(p)); } -- cgit v1.2.1