# HG changeset patch # User Chris Cannam # Date 1302000994 -3600 # Node ID ed55dc6aabf5d7a20497bd5266d6ed3b27e97a3c # Parent 011d4fc47ebf11dac287a63c10364045fea45cb4 * README and version updates, minor Linux build update diff -r 011d4fc47ebf -r ed55dc6aabf5 README.txt --- a/README.txt Wed Feb 09 14:26:13 2011 +0000 +++ b/README.txt Tue Apr 05 11:56:34 2011 +0100 @@ -7,7 +7,7 @@ http://www.elec.qmul.ac.uk/digitalmusic/ -Version 1.6.1. +Version 1.7. For more information about Vamp plugins, see http://www.vamp-plugins.org/ . @@ -15,9 +15,9 @@ About This Release ================== -This is a bug-fix release, fixing a failure to correctly smooth the -onset detection function which caused the onset and beat tracking -plugins occasionally to miss onsets or find spurious ones. +This release corresponds to a change in the licensing terms under +which the QM plugins are published (from a closed-source license to +the GPL). It contains no new functionality over 1.6. Plugins Included @@ -63,7 +63,7 @@ contact the Centre for Digital Music at Queen Mary, University of London for further licensing terms. -Copyright (c) 2006-2010 Queen Mary, University of London. +Copyright (c) 2006-2011 Queen Mary, University of London. To Install @@ -71,18 +71,17 @@ Installation depends on your operating system. - Windows -> Copy qm-vamp-plugins.dll and qm-vamp-plugins.cat to - C:\Program Files\Vamp Plugins\ + Win 32 -> Copy qm-vamp-plugins.dll, qm-vamp-plugins.cat and + qm-vamp-plugins.n3 to C:\Program Files\Vamp Plugins\ - OS/X -> Copy qm-vamp-plugins.dylib and qm-vamp-plugins.cat to - $HOME/Library/Audio/Plug-Ins/Vamp/ - or - /Library/Audio/Plug-Ins/Vamp/ + Win 64 -> Copy qm-vamp-plugins.dll, qm-vamp-plugins.cat and + qm-vamp-plugins.n3 to C:\Program Files\Vamp Plugins (x86)\ - Linux -> Copy qm-vamp-plugins.so and qm-vamp-plugins.cat to - $HOME/vamp/ - or - /usr/local/lib/vamp/ - or - /usr/lib/vamp/ + OS/X -> Copy qm-vamp-plugins.dylib, qm-vamp-plugins.cat and + qm-vamp-plugins.n3 to $HOME/Library/Audio/Plug-Ins/Vamp/ + or /Library/Audio/Plug-Ins/Vamp/ + Linux -> Copy qm-vamp-plugins.so, qm-vamp-plugins.cat and + qm-vamp-plugins.n3 to $HOME/vamp/ or /usr/local/lib/vamp/ + or /usr/lib/vamp/ + diff -r 011d4fc47ebf -r ed55dc6aabf5 build/linux/Makefile.linux --- a/build/linux/Makefile.linux Wed Feb 09 14:26:13 2011 +0000 +++ b/build/linux/Makefile.linux Tue Apr 05 11:56:34 2011 +0100 @@ -5,5 +5,7 @@ LDFLAGS := -Wl,-Bstatic -lqm-dsp -lvamp-sdk -L/usr/lib/sse2/atlas -L/usr/lib/atlas/sse -llapack -lblas -Wl,-Bdynamic -lpthread -Wl,--version-script=vamp-plugin.map +PLUGIN_EXT := .so + include build/general/Makefile.inc diff -r 011d4fc47ebf -r ed55dc6aabf5 build/linux/Makefile.linux64 --- a/build/linux/Makefile.linux64 Wed Feb 09 14:26:13 2011 +0000 +++ b/build/linux/Makefile.linux64 Tue Apr 05 11:56:34 2011 +0100 @@ -5,5 +5,7 @@ LDFLAGS := -shared -Lbuild/linux/amd64 -Wl,-Bstatic -lqm-dsp -lvamp-sdk -L/usr/lib/sse2/atlas -L/usr/lib/atlas/sse -llapack -lcblas -latlas -Wl,-Bdynamic -lpthread -Wl,--version-script=vamp-plugin.map +PLUGIN_EXT := .so + include build/general/Makefile.inc