# HG changeset patch # User Chris Cannam # Date 1256736536 0 # Node ID 0258a32639e6909d3cf5dee7512f9a4b747b3f74 # Parent c655fa61884fb6c58596553ea1337f54524fb549 * Update README and version numbers for plugins affected by this fix diff -r c655fa61884f -r 0258a32639e6 README.txt --- 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 diff -r c655fa61884f -r 0258a32639e6 plugins/BarBeatTrack.cpp --- 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 diff -r c655fa61884f -r 0258a32639e6 plugins/BeatTrack.cpp --- 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 diff -r c655fa61884f -r 0258a32639e6 plugins/OnsetDetect.cpp --- 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