changeset 131:0258a32639e6

* Update README and version numbers for plugins affected by this fix
author Chris Cannam <c.cannam@qmul.ac.uk>
date Wed, 28 Oct 2009 13:28:56 +0000
parents c655fa61884f
children d191dca7547a
files README.txt plugins/BarBeatTrack.cpp plugins/BeatTrack.cpp plugins/OnsetDetect.cpp
diffstat 4 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/README.txt	Mon Sep 14 13:01:57 2009 +0000
+++ b/README.txt	Wed Oct 28 13:28:56 2009 +0000
@@ -7,7 +7,7 @@
 
 http://www.elec.qmul.ac.uk/digitalmusic/
 
-Version 1.6.
+Version 1.6.1.
 
 For more information about Vamp plugins, see http://www.vamp-plugins.org/ .
 
@@ -15,9 +15,9 @@
 About This Release
 ==================
 
-This is a major feature release, adding four new plugins (adaptive
-spectrogram, polyphonic transcription, wavelet scalogram, and
-bar-and-beat tracker) as well as a new method for the beat tracker.
+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.
 
 
 Plugins Included
--- a/plugins/BarBeatTrack.cpp	Mon Sep 14 13:01:57 2009 +0000
+++ b/plugins/BarBeatTrack.cpp	Wed Oct 28 13:28:56 2009 +0000
@@ -95,7 +95,7 @@
 int
 BarBeatTracker::getPluginVersion() const
 {
-    return 1;
+    return 2;
 }
 
 string
--- a/plugins/BeatTrack.cpp	Mon Sep 14 13:01:57 2009 +0000
+++ b/plugins/BeatTrack.cpp	Wed Oct 28 13:28:56 2009 +0000
@@ -88,7 +88,7 @@
 int
 BeatTracker::getPluginVersion() const
 {
-    return 4;
+    return 5;
 }
 
 string
--- a/plugins/OnsetDetect.cpp	Mon Sep 14 13:01:57 2009 +0000
+++ b/plugins/OnsetDetect.cpp	Wed Oct 28 13:28:56 2009 +0000
@@ -84,7 +84,7 @@
 int
 OnsetDetector::getPluginVersion() const
 {
-    return 2;
+    return 3;
 }
 
 string