File: CHANGELOG

package info (click to toggle)
sonic-visualiser 5.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 24,744 kB
  • sloc: cpp: 158,888; ansic: 11,920; sh: 1,785; makefile: 517; xml: 64; perl: 31
file content (995 lines) | stat: -rw-r--r-- 38,480 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995

Changes in Sonic Visualiser v5.2.1 (21 Mar 2025) since the previous release 5.2:

 - Fix hang on exporting an image or SVG during interactive use

 - Fix failure to highlight some points on mouse-over when using a
   hi-dpi display


Changes in Sonic Visualiser v5.2 (6 Mar 2025) since the previous release 5.0.1:

 - On the Mac, substantially improve responsiveness during scrolling
   and zooming, with threaded paint and various perceptual changes.
   If threaded paint causes instability, it can be disabled by setting
   the SV_NO_THREADED_PAINT environment variable (to anything).
   (Sonic Visualiser was previously perceptually more sluggish on the
   Mac than on other platforms, where this change was not necessary)

 - Fix habit of holding open the device microphone after recording

 - Improve compatibility with Vamp plugins that return unexpectedly
   many values in features

 - Improve compatibility with Vamp plugins that express units in
   variant forms such as "Hertz"

 - Fix incorrect choice of UI language on systems with more than one
   of the supported languages configured, and on which English (that is
   not explicitly regionalised to en_US or en_GB) has a higher priority
   than any other supported language. Previously the first other
   matching language would have been used; now it will be English

 - Fix tendency to pop up a progress dialog over the top of any user
   input needed when opening a file


Changes in Sonic Visualiser v5.0.1 (1 Oct 2024) since the previous release 5.0.0:

 - Fix occasional crashes in the Mac package, caused by a Qt bug, by
   updating the version of Qt used when packaging

 - Fix bug in Preferences that prevented some of the analysis settings
   from taking effect

 - Fix failure to load some older 32-bit Windows Vamp plugins

 - Update UI translation loading logic to better reflect system locale
   settings


Changes in Sonic Visualiser v5.0 (31 July 2024) since the previous release 4.5.2:

 - Port to Qt6. The code now builds only with Qt6, and Qt5 is no
   longer supported

 - Add mechanism to ignore plugins on subsequent runs if they fail to
   load, and to review ignored plugins from the preferences dialog

 - Add Mel scale to the options for vertical spectrogram scale

 - Add an opaque toggle to the spectrogram; switching it off gives
   spectrograms some transparency, so they can be overlaid over other
   layers, including other spectrograms

 - Update opaque toggle in colour 3d layers so that it works like the
   new one in the spectrogram. Previously colour 3d plot layers could
   be translucent at low resolutions but not at higher ones; now the
   setting affects all resolutions. Correspondingly make it default to
   off, as in the spectrogram

 - Add smoothing toggle directly to spectrogram parameters, like the
   one already found in colour 3d plot layers. Previously spectrogram
   smoothing could be toggled only from the preferences

 - Stop snapping spectrogram frequency range to bin frequencies. This
   already-confusing feature caused problems with the new support for
   translucent spectrograms, which permits overlaying spectrograms of
   differing bin counts that would be too hard to line up properly if
   the frequency extents were always snapped to the nearest bin

 - Clarify keyboard and mouse shortcut descriptions in the Key And
   Mouse Reference window, especially for the platform-specific
   descriptions used on the Mac, and add a few more alternative
   shortcuts including more standard zoom in/out shortcuts

 - Fix disappearing peaks in peak-bin display mode in the spectrogram,
   caused by overzealous smoothing

 - Fix jumps in spectrogram when changing zoom level between certain
   values in hi-dpi pixel-doubled situations, caused by a failure of
   cache invalidation

 - Fix some very slow spectrogram painting

 - Fix disappearance of right-button Transforms menu after file load

 - Fix inconsistent default vs set threshold values in spectrogram

 - Fix crash on painting very low-resolution dense 3d plots


Changes in Sonic Visualiser v4.5.2 (3 May 2023) since the previous release 4.5.1:

 - Support multi-line text labels on time instants

 - Improve refresh and rendering of text labels in various layers

 - Improve abbreviation of layer names in the key at bottom-right of a
   pane

 - Fix repeated writes to settings file when rendering time-ruler
   layers at close zoom levels

 - Use system Vamp host SDK if provided


Changes in Sonic Visualiser v4.5.1 (7 Nov 2022) since the previous release 4.5:

 - Update to use Rubber Band v3 with its higher quality timestretcher
   (the older, lower-CPU one is still available in preferences). This
   means the build requires rubberband-3.0.0 or newer, so you may need
   to install it separately if building on an older system.

 - Fix inability to select Hz as the unit of a layer following import

 - Provisional fix to bailing out on startup when invoked with "Open
   With..." on Mac

 - Fix nonsense display when showing frequency scaled points with value
   of 0Hz


Changes in Sonic Visualiser v4.5 (31 March 2022) since the previous release 4.4:

 - Add option to switch off the interpolation used in the waveform
   view for zoom levels closer than one pixel per frame: sometimes it
   can be an unnecessary distraction. With interpolation switched off,
   the individual samples are shown as unconnected points instead

 - Make it possible to toggle segment colouring in the segmentation
   view of the time value layer, as well as toggling segment division
   lines

 - When importing CSV files, if a column heading indicates a likely
   unit for the column, use it by default; also remember last user
   settings for the import dialog

 - Ensure the Choose Default Template option on the templates menu can
   be reached even when no file is loaded

 - Give the spectrum layer the same effective scale range as it had
   before the dB scale fix in v4.4, fixing the accidental halving of
   the visible range for that layer in v4.4

 - Fix hang when opening two plugin parameter dialogs at once

 - Fix crash when rendering slice or spectrum layers scrolled to
   earlier than the start of the audio or later than the end

 - Fix crash when more than one audio file is supplied at the command
   line with a default session template that requires regenerating one
   or more feature extraction layers and layer generation produces an
   error or warning

 - Fix failure to exit fully if the window is closed before plugin
   scan is complete at startup


Changes in Sonic Visualiser v4.4 (17 September 2021) since the previous release 4.3:

 - Update Mac build to add support for Apple M1 (arm64) architecture:
   the official package is now a universal binary app, and the arm64
   slice can use both (existing) x86_64 and (future) arm64 Vamp plugins

 - Fix long-standing idiosycratic choice of dB scale, so as to conform
   to conventional usage for root-power quantities. That is, dB values
   for audio signals are now 20 x log10 rather than 10 x log10. Power
   and power-like signals (where units are available) remain 10 x
   log10

 - Fix time lag between visual position of playback pointer and actual
   audio played, particularly when playing files resampled from one
   rate to another

 - When recording audio into an empty session with an active session
   template that includes one or more plugin transforms, re-run the
   transforms when recording finishes, instead of only when the
   recorded model is first created (so as to get proper results for
   the full recording)

 - Fix failure to re-run transforms when loading a session or template
   before the initial plugin scan has completed

 - Fix misalignment and potential crash when rendering 3d plots with
   variant sample rates

 - Change interpretation of modifiers (shift/alt) for the mouse
   scroll-wheel, and the documentation for them, so as to be
   consistent with one another and with other contexts


Changes in Sonic Visualiser v4.3 (18 January 2021) since the previous release 4.2:

 - Fix failure to activate the Align button on startup, even when the
   appropriate alignment plugin is installed

 - Fix (obviously) incorrect colour display for closely zoomed-in
   colour 3d plot views

 - Switch the build system from autoconf/qmake/make to meson/ninja


Changes in Sonic Visualiser v4.2 (14 August 2020) since the previous release 4.1:

 - Speed up startup, especially on Windows and especially when a lot
   of plugins are installed. Plugins are now scanned after the main
   window has been displayed, and the Transform menus are populated
   dynamically when the results are available.

 - Fix incompatibility of 64-bit Windows build with Windows 7


Changes in Sonic Visualiser v4.1 (18 June 2020) since the previous release 4.0.1:

 - Support "dark mode" on Windows and Linux as well as macOS

 - Add right-click (or Ctrl-click, on the Mac) context menus to the
   layer property tabs, pane zoom controls, and all dial controls,
   providing some basic edit and reset functions

 - Provide format options when exporting layers to CSV, allowing
   control over column separator, header row, and timestamp format

 - Permit and handle optional header row when importing from CSV

 - Add export of spectrogram data to CSV formats

 - Support doubling escapes for quotes in quoted CSV fields on import

 - Fix truncated image export when exporting from spectrogram view
   that hasn't finished loading when the export is requested

 - Fix failure to show parameter updates when changing the current
   program in a Vamp plugin that supports programs (e.g. Melodia)

 - Fix inability of Windows builds to open https:// URLs

 - Add references to Vamp Plugin Pack in "Find a Transform" results
   for plugins that are not yet installed but are available in pack

 - Improve and tidy various aspects of OSC support, and update
   documentation for it

 - Improve performance of peak-frequency spectrogram

 - Fix missing undo/redo of layer renames

 - Fix failure to audition effects plugins live, while adjusting their
   parameters in preparation for applying them - this worked in some
   cases, but not the most common ones; it should now work everywhere


Changes in Sonic Visualiser v4.0.1 (10 Dec 2019) since the previous release 4.0:

 - Fix nonsense vertical scale in NoteLayer when displaying a model
   with non-Hz scale (e.g. from an analysis plugin that outputs MIDI
   note values)

 - Fix failure to open playback device when using macOS Catalina with
   certain audio devices

 - Fix failure to make installed executables executable when
   compiling and installing the source package


Changes in Sonic Visualiser v4.0 (25 Oct 2019) since the previous release 3.3:

 - Add Box annotation layer type, typically used for time-frequency
   boxes to be annotated over a spectrogram. 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 still
   be opened in earlier versions of Sonic Visualiser, but any Box
   layers will not be loaded

 - Fix behaviour of auto-align layers on top of waveform: they can now
   be aligned in the vertical scale, if they have a unit of V and the
   waveform is of a single channel in linear or dB mode

 - Make the UI more readable in macOS "dark mode"

 - Fix sluggishness in starting and stopping playback when using
   PulseAudio v13.0+


Changes in Sonic Visualiser v3.3 (21 May 2019) since the previous release 3.2.1:

 - Add support for reading the Opus audio codec on all platforms

 - Add support for WMA and AAC formats on 64-bit Windows. (AAC was
   already supported on macOS.) Note that AAC support on Windows does
   not support "gapless" import, i.e. removing the encoder gaps at
   start and end of the stream

 - Add ability to choose the field separator when importing CSV and
   CSV-like files, if more than one possible candidate separator is
   found in the file

 - Fix crash when closing session or starting a new session while
   calculating alignment of multiple audio files

 - Fix crash when running certain plugins that call for
   frequency-domain input at non-power-of-two block sizes

 - Fix wandering left edge of measure-tool rectangle while dragging
   out the area

 - Ensure that plugin stderr debug output is logged to the SV log file


Changes in Sonic Visualiser 3.2.1 (07 Jan 2019) since the previous release 3.2:

 - Fix failure to record from built-in microphone on macOS 10.14
   (caused by lack of microphone permission request text)

 - Fix crash when closing SV or starting a new session during recording

 - Fix crash on exit in some builds that disable OSC support

 - Fix flashing effect when scrolling certain configurations of colour 3d
   plot layer leftwards


Changes in Sonic Visualiser 3.2 (07 Dec 2018) since the previous release 3.1.1:

 - Add ability to zoom closer than one sample per pixel, so as to see
   the interpolated signal level between samples

 - Add oversampling control to the spectrogram and spectrum layers

 - Highlight and label frequency peaks in the spectrum as the mouse
   rolls over them, when enabled in the parameter area

 - Add feature to convert and import audio from a CSV data file

 - Add some new colour maps, and restore the old Blue on Black one

 - Speed up spectrum rendering at high resolutions

 - Fix failure to pass Nyquist bins correctly to
   frequency-domain-input Vamp plugins in some circumstances

 - Fix sometimes incorrect shortcut associations for new-layer menu
   items

 - Various other rendering improvements and bug fixes


Changes in Sonic Visualiser 3.1.1 (14 Aug 2018) since the previous release 3.1:

 - Fix failure to record correctly into an empty session with certain
   audio drivers

 - Fix failure to run LADSPA plugins at all, except with some unusual
   path layouts

 - Fix failure to silence sonified notes when rewinding backwards or
   jumping back from a loop endpoint

 - Fix macOS .dmg image so as to use older HFS+ filesystem for compatibility


Changes in Sonic Visualiser 3.1 (14 July 2018) since the previous release 3.0.3:

 - Add Plugins tab to Preferences dialog, from which you can review
   the plugin load paths and see which plugins were loaded from which
   locations, and also customise load paths (though the various path
   environment variables are still supported)

 - Stream the export of audio data and other CSV data so that
   very large exports don't hang the UI or run us out of memory
   (thanks to Lucas Thompson)

 - Ensure vertical scale appears for auto-align layers when there is
   nothing else to auto-align them to

 - Fix another long-standing Windows-platform wide-char/utf8
   conversion problem, with environment variable naming and contents

 - Improve handling of incomplete session loads, i.e. situations where
   the audio files referred to by a session could not be found -
   previously the session could be re-saved immediately thus losing
   the audio reference; now at least we disable Save (enabling only
   Save As) and show a warning

 - Update pane and layer menu shortcuts so that the
   waveform/spectrogram/etc shortcuts (Shift+G etc) operate on the
   source model in the currently-selected pane rather than the main
   model. This is a backward-incompatible change but is a far more
   intuitive way for the function to work

 - Use dark background for bright colours in time-value/note/etc
   layers as well as e.g. waveforms - this is how it was always
   "intended to" work, but it is a backward-incompatible change

 - Make "Select All" select the whole span of everything that exists,
   not just the main model

 - Add horizontal scale to Spectrum layer

 - Improve spacing and labelling of vertical log scales

 - Update build system for better Cap'n Proto version support and to
   use Repoint for code management in the repository

 - Various other bug fixes


Changes in Sonic Visualiser 3.0.3 (25 May 2017) since the previous release 3.0.2:

 - Improve decisions about where and how to label vertical scales

 - Update build support material and documentation to reflect the
   official release of Cap'n Proto 0.6 (which we can now use rather
   than depending on git builds)


Changes in Sonic Visualiser 3.0.2 (25 Mar 2017) since the previous release 3.0.1:

 - Fix crash when changing parameters for spectrum view

 - Fix incorrect measure tool crosshairs in spectrum view

 - Update Russian and Czech UI translations (thanks to Alexandre Prokoudine
   and Pavel Fric respectively)


Changes in Sonic Visualiser 3.0.1 (12 Mar 2017) since the previous release 3.0:

 - Fix crashes with MIDI devices and speedup/slowdown control on Windows

 - Update MIDI input driver layer


Changes in Sonic Visualiser 3.0 (07 Mar 2017) since the previous release 2.5:

 - Add ability to record audio, and ability to change the audio device
   for playback or recording in the preferences

 - Add complete support for high-resolution (Hi-DPI or retina)
   displays, including for layer data rendering as well as UI controls
   and icons. This makes the biggest difference when using a retina
   Mac, on which previous versions did not render layer data at retina
   resolution, but it also improves scaling and rendering of UI
   elements on Hi-DPI displays on Windows and Linux

 - Add ability to export scalable (SVG) image files

 - Run plugins in a separate process, so that if a plugin crashes, it
   no longer brings down Sonic Visualiser with it. In every other
   respect the behaviour should be unchanged

 - Scan plugins on startup in a separate process, and report on any
   that crash or won't load

 - Add ability to open, display, and analyse very long audio files (of
   more than 2^32 sample frames)

 - Change mp3 file loading so as to compensate for encoder/decoder
   delay and padding (using "gapless playback" logic). While this is a
   real improvement, unfortunately it does mean that the initial
   padding in mp3 file load has changed from previous versions, which
   may mean some sessions saved in previous versions are no longer
   correctly aligned. It's not a great idea to use mp3 as a file
   format of record, because of differences like this between
   decoders. The previous behaviour is still available as a preference.

 - Add new Hybrid normalisation type for spectrogram and colour 3d
   plot layers. This normalises each column to its peak value and then
   scales the normalised values by the log of the peak in order to
   restore some distinction in scale between columns with different
   levels. It can provide quite visually clear results.

 - Add function to subdivide time instant layers into regular
   intervals (and its inverse)

 - Add new preference for default colour scales

 - Add a basic ability to zoom (in the frequency axis) to the spectrum

 - Switch to using combined level/pan controls in layer property boxes
   and for the main volume control

 - Make CSV file reader better able to handle files with varying
   numbers of columns

 - Fix a number of problems on Windows with loading and saving some
   file formats to filenames not representable in system codepage

 - Add "What's New" dialog

 - Finally switch the Windows build to 64-bit by default (with
   adapters to run either 32- or 64-bit plugins)


Changes in Sonic Visualiser 2.5 (23 Oct 2015) since the previous release 2.4.1:

 - Add unit-converter dialog, for converting between various pitch and
   timing units

 - Fix failure to reload note layers from session file

 - Use a more sensible scale for the play-speed dial

 - Fix crash when importing very wide CSV files

 - Fix generation of wrong layer type from some CSV files

 - Fix failure to export last instant in a time-instant layer


Changes in Sonic Visualiser 2.4.1 (01 Oct 2014) since the previous release 2.4:

 - Fix a crash when rendering certain colour 3d plot layers


Changes in Sonic Visualiser 2.4 (01 Sep 2014) since the previous release 2.3:

 - Add support for left/right scrolling using a two-finger touchpad
   gesture (where available)

 - Make the octave numbering into a configurable option, and change
   the default. Previously Sonic Visualiser labelled middle-C as "C3";
   now it labels middle-C as "C4", a more common standard in the world
   outside MIDI sequencer software. The previous system is available
   as an option in the Preferences. This affects only the visible
   labels: there is no change to analysis or to the file format

 - Sonify time-value layers. Any time-value curve whose scale unit is
   set to Hz will now acquire a playback toggle control; this control
   is off by default, but if it is switched on, the curve will be
   played back using a variable-frequency sound generator

 - Add support for playback of note layers with non-MIDI frequencies
   (formerly the note playback was limited to exact MIDI pitch)

 - Change the default playback sample for note layers from piano to an
   electric piano with sustain. The piano sample is still available,
   and any sessions saved using it should continue to use it

 - Add a cancel button for Vamp plugin processing: currently,
   cancelling a transform results in a part-complete layer rather than
   removing the results

 - Add keyboard shortcuts to cycle the current layer (in addition to
   the existing ones to cycle the current pane)

 - Fix various bugs related to layer ordering: layer tabs re-ordering
   themselves randomly when new layer added, layers being ordered
   randomly when saving and reloading a session

 - Fix incorrect interaction with non-Unicode usernames when creating
   temporary and template directories on Windows

 - Shade the start and end of the main audio file, to make them easier
   to see for files that start or end in silence

 - Speed up rendering and scrolling in time-value layers

 - Make it possible to import CSV files directly into Note layers by
   adding Pitch as a data type in the CSV file import dialog

 - Fix play pointer jump to wrong frame when clicking on row in the
   layer edit dialog

 - Fix problems with keyboard shortcuts when using Qt5 on OS/X. This
   is the first release in which the official builds use Qt5 for all
   platforms.


Changes in Sonic Visualiser 2.3 (12 Dec 2013) since the previous release 2.2:

 - Add a startup welcome dialog that also explains what SV makes
   network connections for and allows user to forbid them

 - Add "Export Audio Data" feature

 - Show piano keyboard scale in note and time-value layers as well
   as spectrogram, where vertical scale is log Hz; also show
   numerical scale in note and region layers when not auto-aligned

 - Speed up CSV file import and avoid showing crazily wide window
   for CSV file format dialog when file has lots of columns

 - Fix incorrectly saved window geometry when exiting from maximised
   state

 - Reduce number of timer wakeups when idle

 - Add American English translation and make choice of translation
   into a preference (defaulting to system locale)

 - Permit installation to non-default location with Windows installer
   build


Changes in Sonic Visualiser 2.2 (31 July 2013) since the previous release 2.1:

 - Build with support for hidpi ("retina") text on OS/X

 - Fix very slow analysis when using Ogg or FLAC files decoded
   via libsndfile

 - Fix inaccurate scale auto-align between time-value layers and
   others

 - Fix failure to open files specified on command line (or via
   Open With) on Windows

 - Reset cyclical counters and switch back to navigate mode when
   a new session is started


Changes in Sonic Visualiser 2.1 (16 May 2013) since the previous release 2.0.1:

 - Fix incorrect handling of FixedSampleRate outputs (Vamp SDK fix)

 - Make it easier to see results from transforms that return a single point

 - Make labelling clearer on time-value layers

 - Add discrete-curve mode for time-value layers (for curves with gaps)

 - Update code to build against Qt5


Changes in Sonic Visualiser 2.0.1 (07 Mar 2013) since the previous release 2.0:

 - Fix incorrect samplerate in reading m4a files on OS/X


Changes in Sonic Visualiser 2.0 (16 July 2012) since the previous release 1.9:

 - Support 64-bit builds on OS/X (using CoreAudio instead of
   obsolete QuickTime audio file reader)

 - Simplify RDF reading and fix some bugs. Now requires Dataquay
   (http://breakfastquay.com/dataquay/) rather than using Redland
   directly. Release builds use Sord/Serd rather than Redland

 - Add a fullscreen mode on the F11 key


Changes in Sonic Visualiser 1.9 (10 Oct 2011) since the previous release 1.8:

 - Add session templates; save session as template; apply template to
   session

 - Tidy up the file open logic so as to remove the dialog asking how
   to open a file, where possible

 - Various bug fixes.


Changes in Sonic Visualiser 1.8 (08 Apr 2011) since the previous release 1.7.2:

 - Sonic Visualiser now registers as a file type handler on OS/X,
 providing better integration with the desktop generally (thanks to
 Dan Stowell)

 - There is a new function to toggle all Time Rulers at once (key #)

 - The CSV import dialog has been overhauled, allowing more flexible
 selection of purpose for each column

 - Text overlays are now easier to read on dark backgrounds

 - Hidden layers are now ignored when exporting an image (thanks to
 Dan Stowell)

 - A crash when starting a new session or exiting the application
 after loading a session with saved alignment data has been fixed

 - The duplication of right-button menu functions when multiple files
 were loaded has been fixed

 - The layer-add menu functions now have shortcuts (thanks to Dan
 Stowell)

 - The codebase has been reorganised into libraries and a configure
 step added.  It should be easier to build and maintain on OS/X and
 Linux than previously, although it won't make much difference on
 Windows.

 - A Czech translation is now included (thanks to Pavel Fric).


Changes in Sonic Visualiser 1.7.2 (05 May 2010) since the previous release 1.7.1:

 - The time-value layer now has an origin line and an option to
 show derivatives (change from one point to the next) rather than
 raw values

 - A static initialiser race has been fixed, possibly fixing an
 occasional crash on startup in Windows

 - A crash when pressing Play straight after New Session has been
 fixed


Changes in Sonic Visualiser 1.7.1 (22 Oct 2009) since the previous release 1.7:

 - The RDF importer does a better job of assigning labels to layers,
 layers to panes, and values to labelled regions

 - Interactive editing in the Text layer benefits from the same
 improvements as made in 1.7 to Note and Region layers

 - The layer data editor window has a text search feature

 - The main window status bar now shows the last label to have passed
 the playback position in the current layer, at the right end of the
 status bar

 - The Russian translation has been updated (thanks Alexandre)


Changes in Sonic Visualiser 1.7 (05 Sep 2009) since the previous release 1.6:

 - A new "Insert Item At Selection" function on the Edit menu
 can be used to create Note and Region layer items whose time
 extents correspond to the current selection(s)

 - Interactively editing points in the Note and Region layers
 now works much more smoothly

 - SV can now import MIDI files that use SMPTE timecode for event
 timing (importing MIDI files using with the more common
 timebase-based timing was already supported)

 - Time values throughout the display may optionally be shown in
 seconds and frames at various frame rates

 - A crash on exit in Windows has been fixed

 - A very unobtrusive user survey is now included

 - Various other bug fixes.


Changes in Sonic Visualiser 1.6 (22 Jun 2009) since the previous release 1.5:

 - The Colour 3D Plot layer now supports logarithmic vertical
 scale and linear interpolation options.

 - A new colour scheme (High Gain) has been added for spectrogram
 and Colour 3D Plot, which improves readability for some data.

 - Further performance improvements have been made to Colour 3D
 Plot.

 - Various other bug fixes.


Changes in Sonic Visualiser 1.5 (16 Mar 2009) since the previous release 1.4:

 - You can now insert time instants, time values, and notes using
 a MIDI device during playback.  If a time value or note layer is
 current it will be used for insertion (giving a value equal to
 the pitch class, or the played note, respectively); otherwise an
 existing or new time instants layer will be used just as it is
 when inserting instants using the PC keyboard.  Using a MIDI
 device should give better timing than using the PC keyboard.

 - There is a new Activity Log window with a (purely informative) list
 of events and user interactions that happen while SV is running.

 - The spectrogram has somewhat improved graphical scaling, and
 this is now the default (being much faster than the 4x oversampled
 method).  The previous default is still available as a preference.

 - Visualisation of very dense colour plots (such as spectrograms
 calculated by plugins) is substantially faster in this release.

 - Spectrogram display is now faster in many circumstances.

 - Alignment using the MATCH plugin is faster on OS/X than before.

 - SV will take into account RDF plugin descriptions, if available,
 in order to make somewhat better decisions about display of plugin
 outputs (for example, placing segmentation data into a layer with
 segmentation plot type).

 - You can now switch layers by clicking on the spare area at the left
 end of the pane that is also used for the current pane indicator.

 - The vertical black lines dividing segments in the time value
 layer's segmentation plot style are now optional.

 - Several widget layout bugs on OS/X have been fixed.

 - Several serious crashing, deadlock, and data corruption bugs have
 been fixed.


Changes in Sonic Visualiser 1.4 (05 Dec 2008) since the previous release 1.3:

 - SV now has a Region layer type, used for display of features with
 durations.  It also supports Vamp v2.0 plugins that provide durations
 for features.

 - Layer data can now be imported from RDF described using the Audio
 Features Ontology, as well as from the existing text file types.  SV
 can also export annotation layer data to RDF/Turtle, although in a
 somewhat simplistic manner at present.

 - You can search for transforms by text in the new "Find a Transform"
 dialog.  This searches both installed plugins, and plugins that have
 not been installed but that have descriptions available on the
 semantic web.

 - You can now zoom and scroll vertically in the time-value, note,
 and colour 3d plot layers.

 - Sonic Visualiser can now load sessions from uncompressed XML files
 as well as its own compressed-XML .sv format.  Files with extension
 .xml that contain suitable session data will be loaded as sessions.
 Note that .xml extension files still do not show up in the default
 file load filter.  This is intentional, as there may be any kind of
 data in them - if you want to load uncompressed session files from
 XML, you need to know you're doing it.

 - Several crashes and other bugs have been fixed.


Changes in Sonic Visualiser 1.3 (10 Jul 2008) since the previous release 1.2:

 - There is a new spreadsheet-style data viewer and editor for
 viewing and editing the data in some types of annotation layer.

 - Alignments are now saved to the session file.

 - The spectrogram layer is usually somewhat faster than it was.

 - You can now hold Shift while dragging to move an item, in order
 to override the initial drag resistance introduced in 1.2.

 - The gross mis-labelling of time lines in the ruler has been fixed.

 - There is a new, somewhat provisional PulseAudio output driver.

 - Several other bug fixes.


Changes in Sonic Visualiser 1.2 (20 Feb 2008) since the previous release 1.0:

 - SV now supports time-alignment of multiple performances of a work
 loaded at the same time.  This option is enabled when the MATCH Vamp
 plugin is installed.  When alignment is switched on and more than one
 audio file is open, SV will assume that all open files are
 differently timed performances of the same work, and will calculate
 time alignments for them.  Playback will then play only a single file
 at a time, and the playback cursors in other files will track at the
 varying speeds to try to ensure that each is at the same point in the
 underlying score.  This enables effective comparison of several such
 files, as well as a meaningful way to switch from one performance to
 another during playback (ensuring that the switch happens at the
 correct point in the performance being switched to).

 - There is a new Image layer, which can display images from the
 local filesystem or retrieved via HTTP or FTP.

 - A new measurement tool has been added.  With the measurement tool
 selected, dragging in a pane draws a rectangle labelled with the
 scale values for its start and end corners and its size.  You can
 have any number of measurements present at once; they are associated
 with the top layer, their scale values depend on the scale for that
 layer, and they are only shown when that layer is at the top and the
 measurement tool is active.  Measurements are saved and reloaded in
 the session file.  Drawing measurements can be undone and redone, and
 a measurement can be deleted by hitting Del when highlighted.  Note
 that the measurement tool shows the scale values associated with the
 pixel positions of the mouse when dragging, not any values associated
 with actual features present in the audio or its analysis (e.g. the
 values are not rounded to the nearest spectrogram bin).

 - You can double-click using the measurement tool in the spectrogram
 to get an instant measurement rectangle for a feature.  This is a
 purely graphical feature that works by calculating the boundary of a
 contiguous region of pixels "similar to" the one you double-clicked
 on; it does not use audio analysis.  Adjusting the gain and colour
 scheme etc of the spectrogram will (by design) affect the
 measurements obtained this way.

 - The spectrum can now optionally show frequency estimates of peaks
 aligned with a piano keyboard along the horizontal axis (this needs
 some refinement).

 - The harmonic cursor in the spectrogram has moved from the Select
 tool to the Measurement tool.  There is now a similar harmonic cursor
 in the spectrum.  Both of them show more information as text
 alongside the cursor than previously.

 - There is a new Erase tool for erasing individual points from an
 editable layer.

 - Several keyboard shortcuts have changed: all of the Alt+key
 shortcuts now either use Ctrl or a plain keypress with no modifier,
 to avoid clashes with window manager shortcuts and to make them
 easier to use and remember

 - The playback controls are now in a Playback menu as well as the
 toolbar.

 - There is a new key and mouse control reference under Help (or press
 F2).

 - You can double-click on a pane in navigate mode to jump to a time.

 - All of the single-colour layers (waveform, time values etc) now
 allow you to define your own colours as well as using the built-in
 set.  The colour of a layer is now shown next to its name on the pane.

 - When you add a new single-colour layer it will use a default colour
 that is not yet in use in another layer (if there is one).

 - Single-colour layers can now optionally have black backgrounds (with
 a set of lighter colours in the default colour palette that use black
 backgrounds by default).

 - There's a new Printer colour scheme in the spectrogram with only a
 small number of grey shades.

 - Vertical zoom in a log-scaled spectrogram is much more intuitive;
 it now leaves the point that was in the centre of the visible area in
 the centre after zoom, instead of the point that was in the centre of
 the linear range corresponding to the visible area.

 - You can now turn a colour 3d plot layer upside down by clicking the
 Invert Vertical Scale button.

 - There's a new Layer Summary window which shows the panes and
 layer data in a tree layout.  This is very simplistic at the moment.

 - Each pane now has an [X] button at its top left, which removes that
 pane when clicked.

 - There's a new Solo play mode toggle button; when active, only the
 currently selected pane is played.  This is also the default when
 time alignment is in use.

 - Rewind/ffwd now stay confined to the selection if Play Selection is
 enabled; also, the rewind and ffwd "one step" buttons are now enabled
 even if there is no time instants layer for them to align to (they
 align to the time ruler instead and so jump in steps of a size
 dependent on the zoom level).

 - You can now export note layers to MIDI.

 - MIDI note velocity is partially supported.  Note velocity is
 retained when importing and exporting MIDI and is used in playback,
 but it is not yet shown in the display and cannot yet be edited.

 - You can now drag-and-drop files (of whatever type) onto SV from
 other programs such as file managers or web browsers.

 - mp3 files (and Ogg, but they aren't supported on Windows at the
 moment) are now decoded in a background thread so you can see the
 start of the track without waiting for the rest to decode.

 - Mac builds of SV can now load AAC/mp4 files and anything else
 supported by QuickTime.

 - There is now an option to resample audio files on import if they
 don't match the samplerate of the first file loaded.  By default this
 is switched off, as it affects the visible waveform.  The default
 behaviour is unchanged (play at the wrong rate).  There is still no
 option to handle multiple rates "correctly" (i.e. by resampling
 on playback and showing the waveforms at different resolutions
 according to each one's underlying rate) and there probably never
 will be.

 - SV can now open .m3u playlist files, though it's a hazardous thing
 to do as it simply loads all the files in the playlist at once.

 - SV now has various options for how to number tapped time instants
 (bar/beat, plain counter, time in seconds, tempo etc).

 - The official builds use Qt 4.3, which fixes some nasty
 bugs in the file dialog that the version 1.0 builds suffered from.


Changes in Sonic Visualiser 1.0 (10 May 2007):

 - First official release of Sonic Visualiser