# HG changeset patch # User Chris Cannam # Date 1568987299 -3600 # Node ID f2dd9218617e0ece64a3362c0d33f89a08c061fa # Parent 0359c178d5c3a9d21ab347dcc77677ceae3c9dd5 I think actually this must be v4.0, because of the file format change. Add the beta-release warning for the moment diff -r 0359c178d5c3 -r f2dd9218617e CHANGELOG --- a/CHANGELOG Fri Sep 20 14:46:47 2019 +0100 +++ b/CHANGELOG Fri Sep 20 14:48:19 2019 +0100 @@ -1,5 +1,14 @@ -Changes in Sonic Visualiser v3.3 (Apr 2019) since the previous release 3.2.1: +Changes in Sonic Visualiser v4.0 since the previous release 3.3: + + - Add Time-Frequency Box annotation layer type. Because this + introduces a new layer type into the session file format, the major + version number has been bumped to v4.0. (Sessions saved from v4.0 + can be opened in earlier versions of Sonic Visualiser, but any + Time-Frequency Box layers will not be loaded.) + + +Changes in Sonic Visualiser v3.3 (May 2019) since the previous release 3.2.1: - Add support for reading the Opus audio codec on all platforms diff -r 0359c178d5c3 -r f2dd9218617e main/MainWindow.cpp --- a/main/MainWindow.cpp Fri Sep 20 14:46:47 2019 +0100 +++ b/main/MainWindow.cpp Fri Sep 20 14:48:19 2019 +0100 @@ -357,9 +357,7 @@ startOSCQueue(false); } -/* QTimer::singleShot(500, this, SLOT(betaReleaseWarning())); -*/ QString warning = PluginScan::getInstance()->getStartupFailureReport(); if (warning != "") { @@ -4540,7 +4538,6 @@ shownOnce = true; } -/* void MainWindow::betaReleaseWarning() { @@ -4548,7 +4545,6 @@ (this, tr("Beta release"), tr("This is a beta release of Sonic Visualiser

Please see the \"What's New\" option in the Help menu for a list of changes since the last proper release.

")); } -*/ void MainWindow::pluginPopulationWarning() diff -r 0359c178d5c3 -r f2dd9218617e main/MainWindow.h --- a/main/MainWindow.h Fri Sep 20 14:46:47 2019 +0100 +++ b/main/MainWindow.h Fri Sep 20 14:48:19 2019 +0100 @@ -155,9 +155,7 @@ virtual void midiEventsAvailable(); virtual void playStatusChanged(bool); -/* virtual void betaReleaseWarning(); -*/ virtual void pluginPopulationWarning(); virtual void saveSessionAsTemplate(); diff -r 0359c178d5c3 -r f2dd9218617e sonic-visualiser.qrc --- a/sonic-visualiser.qrc Fri Sep 20 14:46:47 2019 +0100 +++ b/sonic-visualiser.qrc Fri Sep 20 14:48:19 2019 +0100 @@ -61,6 +61,7 @@ icons/scalable/smooth.svg icons/scalable/invert-colour.svg icons/scalable/values.svg + icons/scalable/timefreq.svg icons/scalable/waveform.svg icons/scalable/zoom.svg icons/scalable/zoom-in.svg diff -r 0359c178d5c3 -r f2dd9218617e version.h --- a/version.h Fri Sep 20 14:46:47 2019 +0100 +++ b/version.h Fri Sep 20 14:48:19 2019 +0100 @@ -1,1 +1,1 @@ -#define SV_VERSION "3.4-pre1" +#define SV_VERSION "4.0-pre1"