summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--slv2.ttl41
2 files changed, 25 insertions, 22 deletions
diff --git a/ChangeLog b/ChangeLog
index 38c60b7..8931c77 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,11 +1,11 @@
-slv2 (9999) unstable; urgency=low
+slv2 (0.6.1) unstable; urgency=low
- * NOT YET RELEASED
+ * I18N support.
* Add slv2_port_get_value (analogous to slv2_plugin_get_value).
* Add slv2_instance_get_extension_data.
* Fix slv2_plugin_get_supported_features (previously non-functional).
- -- Dave Robillard <dave@drobilla.net> Sun, 01 Jan 9999 00:00:00 -0400
+ -- Dave Robillard <dave@drobilla.net> Sat, 08 Nov 2008 14:27:10 -0500
slv2 (0.6.0) unstable; urgency=low
diff --git a/slv2.ttl b/slv2.ttl
index 440bf7d..b8a126f 100644
--- a/slv2.ttl
+++ b/slv2.ttl
@@ -1,26 +1,29 @@
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix : <http://usefulinc.com/ns/doap#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
-[]
- a :Project;
- :name "SLV2";
- :shortname "SLV2";
- :shortdesc "Library for simple use of LV2 plugins";
- :homepage <http://drobilla.net/software/slv2>;
- :download-page <http://download.drobilla.net>;
- :bug-database <http://dev.drobilla.net/query?status=new&status=assigned&status=reopened&component=SLV2&order=priority>;
- :programming-language "C", "Turtle";
- :license <http://usefulinc.com/doap/licenses/gpl>;
+<http://drobilla.net/software/slv2>
+ a :Project ;
+ :bug-database <http://dev.drobilla.net/query?status=new&status=assigned&status=reopened&component=SLV2&order=priority> ;
:developer [
- a foaf:Person;
- foaf:name "Dave Robillard";
- foaf:homepage <http://drobilla.net>;
- foaf:mbox_sha1sum "253b3c58086250260bac1232d744d150274ad308"
- ];
+ a foaf:Person ;
+ rdfs:seeAlso <http://drobilla.net/drobilla.rdf> ;
+ foaf:homepage <http://drobilla.net> ;
+ foaf:mbox_sha1sum "253b3c58086250260bac1232d744d150274ad308" ;
+ foaf:name "Dave Robillard"
+ ] ;
+ :download-page <http://download.drobilla.net> ;
+ :homepage <http://drobilla.net/software/slv2> ;
+ :license <http://usefulinc.com/doap/licenses/gpl> ;
+ :name "SLV2" ;
+ :programming-language "C", "Turtle" ;
:repository [
- a :SVNRepository;
- :browse <http://dev.drobilla.net/browser/slv2>;
- :location <http://svn.drobilla.net/lad/slv2>
- ] .
+ :browse <http://dev.drobilla.net/browser/trunk/slv2> ;
+ :location <http://svn.drobilla.net/lad/trunk/slv2> ;
+ a :SVNRepository
+ ] ;
+ :shortdesc "Library for simple use of LV2 plugins" ;
+ :shortname "SLV2" .
+