diff --git a/CMakeLists.txt b/CMakeLists.txt index 3e81d1b..b6c91b7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,10 +1,10 @@ cmake_minimum_required(VERSION 3.16.0) project(pipedal - VERSION 0.1.0 + VERSION 0.1.3 DESCRIPTION "PiPedal Guitar Effect Pedal For Raspberry Pi" HOMEPAGE_URL "https://github.com/rerdavies/pipedal" ) -set (DISPLAY_VERSION "v0.1.0.alpha.1") +set (DISPLAY_VERSION "v0.1.3-alpha.2") include(CTest) enable_testing() @@ -69,10 +69,9 @@ install( set(CPACK_GENERATOR "DEB") set(CPACK_DEBIAN_PACKAGE_MAINTAINER "Robin Davies . +@prefix lv2: . +@prefix rdf: . +@prefix rdfs: . +@prefix units: . +@prefix urid: . +@prefix atom: . +@prefix midi: . +@prefix epp: . +@prefix uiext: . +@prefix idpy: . +@prefix foaf: . +@prefix mod: . +@prefix param: . +@prefix work: . +@prefix pg: . + +@prefix atom: . +@prefix patch: . +@prefix rdfs: . +@prefix state: . +@prefix urid: . +@prefix xsd: . +@prefix toobfreeverb: . + + + + a foaf:Person ; + foaf:name "Robin Davies" ; + foaf:mbox ; + foaf:homepage . + + + a lv2:Plugin , + lv2:SimulatorPlugin ; + doap:name "TooB FreeVerb" , + "TooB FreeVerb"@en-gb + ; + doap:license ; + doap:maintainer ; + lv2:minorVersion 0 ; + lv2:microVersion 13 ; + rdfs:comment """ +ToobFreeVerb is an Lv2 implementation of the famous FreeVerb reverb effect. + +The core implementation is taken from the The Synthesis Toolkit in C++ (STK), https://github.com/thestk/stk, Perry R. Cook and Gary P. Scavone. + +""" ; + + mod:brand "TooB"; + mod:label "FreeVerb"; + lv2:optionalFeature lv2:hardRTCapable; + + lv2:port + [ + a lv2:InputPort , + lv2:ControlPort ; + + lv2:index 0; + lv2:symbol "dryWet" ; + lv2:name "Dry/Wet"; + lv2:default 0.75 ; + lv2:minimum 0; + lv2:maximum 1 ; + ], + [ + a lv2:InputPort , + lv2:ControlPort ; + + lv2:index 1 ; + lv2:symbol "roomSize" ; + lv2:name "Room Size"; + + lv2:default 0.5 ; + lv2:minimum 0.0 ; + lv2:maximum 1.0 ; + ], [ + a lv2:InputPort , + lv2:ControlPort ; + + lv2:index 2 ; + lv2:symbol "damping" ; + lv2:name "Damping"; + + + lv2:default 0.0 ; + lv2:minimum 0.0 ; + lv2:maximum 1.0 ; + + ], + [ + a lv2:AudioPort , + lv2:InputPort ; + lv2:index 3 ; + lv2:symbol "inL" ; + lv2:name "InL" + ], + [ + a lv2:AudioPort , + lv2:InputPort ; + lv2:index 4 ; + lv2:symbol "inR" ; + lv2:name "InR" + ], + [ + a lv2:AudioPort , + lv2:OutputPort ; + lv2:index 5 ; + lv2:symbol "outL" ; + lv2:name "OutL" + ] + , + [ + a lv2:AudioPort , + lv2:OutputPort ; + lv2:index 6 ; + lv2:symbol "outR" ; + lv2:name "OutR" + ] + . + + diff --git a/lv2/aarch64/ToobAmp.lv2/manifest.ttl b/lv2/aarch64/ToobAmp.lv2/manifest.ttl index 3bb1659..91efa9e 100644 --- a/lv2/aarch64/ToobAmp.lv2/manifest.ttl +++ b/lv2/aarch64/ToobAmp.lv2/manifest.ttl @@ -39,6 +39,11 @@ lv2:binary ; rdfs:seeAlso . + a lv2:Plugin ; + lv2:binary ; + rdfs:seeAlso . + + diff --git a/package b/makePackage similarity index 100% rename from package rename to makePackage