-
Notifications
You must be signed in to change notification settings - Fork 38
/
Changelog
11819 lines (10679 loc) · 485 KB
/
Changelog
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
996
997
998
999
1000
Changes 7.3.84 -> 7.4.76:
* Instruments: Fix current instrument changing
automatically when playing song and switching
between blocks. This was only a bug in the offical
binary releases of Radium 7.3.84.
* Help: Minor fix
* About: Include Faust version in the about window.
* Mac/ARM: Fix deadlock happening when showing
assertion reporter.
* Gui: Fix crash when exiting program and waiting for
a plugins to finish running.
* JUCE: 7.0.3 -> 7.0.11
* Sequencer: Don't throw error if pasting automation
from the clipboard where the two first nodes had
the same time values.
Changes 7.2.89 -> 7.3.84:
* MacOS: Don't crash when loading files with
certain non-ascii characters (e.g. Japanese) in
their filename. (Possibly only a problem in very
recent versions of MacOS.)
* Demo songs: New song called "Night comes" by Nay.
* MacOS: Workaround for strange trackpad behavior
causing two-finger-touching a seqblock not always
working.
* Instrument: Remove the "locked instrument" concept.
(Yustin / Kmatheussen)
* Instrument: Never automatically change instrument
when playing song when the cursor is moved to a new
editor track. (Yustin / Kmatheussen)
* Instrument: Replace the "locked" checkbox with
a "select" button.
* GUI: Remember window positions and so forth between
sessions. (Akimaze)
* Instruments Clarify what the "set new name" option
does.
* Sequencer: Enable "Delete all selected" also when
only one seqblock is selected.
* Sequencer: Remove the "Delete" popup menu entry
since it was too similar to "Delete current".
(It only differered for the behavior of assigned
keybindings.)
* Automatically add extension to preset names if
missing. (Akimaze)
* Faust: Use linear velocity->gain conversion for
very low velocities so that gain can reach zero.
* Audio: Fix pops/scratches/clicks for quite silent
sounds in the graph that were volume-boosted up
later in the DSP graph. (Even the "Demo song" demo
song suffered from this.)
* Build: Add option to use qwebengine instead of
qtwebkit. (qwebengine has some shortcomings, but
it can be convenient to use to avoid having to
compile up qtwebkit.)
* Editor: Fixed coordinate calculation when dropping
a file. (Akimaze)
* GUI: Option to use the alt key as a horizontal
scroll modifier (in sequencer and mixer). (Akimaze)
* Faust: Update Faust 2.54.9 -> 2.70.3. (Yustin)
Changes 7.2.87 -> 7.2.89:
* Demo song: "Locrans Shop" made by Trumpetrespas.
* Editor: Add "Drums" to the "(click me)" menu.
* Fluidsynth: Replaced the default soundfont
Orgue.sf2 with FluidR3_GM_drums.sf2. FluidR3_GM is
made by Frank Wen. Trumpetrespas stripped it down
to only include drums.
* Audio: Fix LV2 plugins (bug introduced in 7.2.87).
* Build: Fix having to run "make packages" twice/etc.
Changes 7.1.92 -> 7.2.87:
* Macos: Always enable incremental GC when running
ARM. May improve scrolling performance in the
editor.
* Sequencer: Fix "Delete" entry in seqblock popup
menu.
* Build: Update bdw-gc from 7.4.16 to 8.2.4.
* Macos: Fix the ZL1 key again.
* Macos: Add support for LV2 plugins.
* Startup/Mac: Fix long startup time on Macos.
* OpenGL: Fix laggy editor interface after moving
the main window to a screen with a different
refresh rate.
* GUI: Paint thin black border around all
checkboxes.
* GUI: Make the color of Mute buttons lighter if
background color is too similar to the default
mute color.
* Preferences: Option to turn off checking for
abnormal signals. Might shave off a few CPU
cycles.
* Add support for aarch64 CPUs, i.e. 64 bit ARM.
* Remote control: Disable access from other computers
by default, i.e. only allow requests from
localhost. Access from other computers can be
enabled in preferences if needed.
* GUI/Preferences: Fix program not remembering
"CPU friendly audio meter updates" between
sessions.
* Demo songs: "Poptikus" by Nil Geissweiller /
A-Lin (Europe). All instruments in this song are
made with the FaustDev instrument.
* Build: Upgrade QScintilla from 2.10.8 to 2.14.0.
* Build: Fix build with gcc >= 11 and clang >= 15.
* Build: Various patches from Arch Linux.
* Build: Fix for building faust on Manjaro Linux.
* API: controlPortOpenForRemoteConnections,
setControlPortOpenForRemoteConnections,
getCheckAbnormalSignals, setCheckAbnormalSignals,
gui_colorDistance
Changes 7.1.90 -> 7.1.92:
* Editor: Include the main editor-popup-menu into the
bottom of the track-header popup menu.
* Edit: Button to "reverse song" (i.e. reverse all
blocks).
* Edit: Fix the functions to reverse notes. They
weren't very good before.
* GUI: Highlight tab elements when mouse hovers
above.
* GUI: Add JUCE version to the About-window.
* GUI: Increase default height of message window
somewhat.
* MIDI learn: Fix incremental mode when recording
automation to editor.
* API: backwardsSong.
Changes 7.1.89 -> 7.1.90:
* Editor: Fix sligthly wrong memory handling. Might
have led to crashes sometimes after copying a
range that contains stops, but only after the
second time or later, and probably only in very
rare cases. Bug introduced in V6.6.77.
* Midi Learn: Rough implementation of
"incremental mode". The feature is likely to
require some tweaking though.
* Sequencer: Make the song tempo automation popup
menu less confusing.
* Sequencer: Fix gfx garbage in uppermost pixel row
when song tempo automation is visible.
* Editor: Fix a possible, but if so, probably
extremely rare, crash when creating undo for range.
The bug seems to have always been there.
* Internal: Fix memory leak if trying to allocate
very large memory blocks in realtime code.
* GUI: Attempt to fix Qt sometimes translating
strings. (That's not supposed to happen since
Radium is an English-only program.)
* Linux: Turn off crash reporter if radium couldn't
start because of missing AM pitch shift plugin
during startup. Only for custom builds though.
* Soundfile saver: Fix pressing "Save" if Qt
has decided to translate the text "Save" to
another language. Qt is not supposed to
translate anything, but reportedly it has.
* Internal: Fix a bug in a function that divides two
ratio numbers. The bug could in theory have caused
all kinds of errors, but probably not.
* GUI: Decrease memory garbage collection time
somewhat.
* API: instrumentEffectMidiLearnIsIncremental,
setInstrumentEffectMidiLearnIsIncremental.
Changes 7.1.88 -> 7.1.89:
* Demo songs: Added "Test Automation" made by mward25.
* Sequencer: Fix moving seqblocks (and probably other
things) not working when sequencer is inside the
mixer and the mixer is displayed in its own window.
* Ladspa plugins: More detailed progress message
during program initialization. May help track down
why it sometimes takes so long time on Windows.
Changes 7.1.87 -> 7.1.88
* Instrument menu: Add "Assign to current editor track"
option.
* Editor: Fix double-playing notes when scrolling up
and down repeatedly on the same line and possibly
other situations.
* Sample requesters: Also show files with mixed lower
and upper case in file suffix, e.g. "sample.Wav"
* Sampler: Fix XI instruments not displayed in the
embedded file browser.
Changes 7.1.86 -> 7.1.87
* NSM: Fix if "getenv" returns #f instead of empty
string.
* Scheme: Fix converting character to string, which
suddenly stopped working.
* Editor: Fix moving first velocity node, which
sometimes behaved very strange.
* Editor: Fix holding shift not working to circumvent
other notes limiting where a can be placed.
* Sequencer: Fix clicking the seqtrack number
creating an undo.
* GUI: Reduce default maximum number of menu elements
that can be shown at once, from 200 to 100. 200 might
fill up the screen and sometimes even freeze the
program, at least if using fvwm.
* Fix tooltip for sequencer button in mixer. (akimaze)
* Fix compilation on systems with newer binutils dev
files (yzzyx)
Changes 7.0.01 -> 7.1.86
* Macos: Don't warn during startup if operating
system is too new to have been tested.
* Crashreporter: Make it clearer that a plugin
most likely caused the crash if a plugin was
processing when the crash happened.
* Macos: Compile with clang 15.
* Macos: Update LLVM from 10.0.1 to 15.0.6.
* JUCE: Update from 7.0.2 to 7.0.3.
* Upgrade faust 2.37.3 -> 2.54.9.
Changes 7.0.00 -> 7.0.01:
* Windows: Updated Qt to 5.15.7.
* Windows: Compile with GCC 11, and updated all
included dlls.
* Windows: Fix crashreporter not including source
files and line numbers. Use SymGetModuleInfo64
and friends instead of libbfd.
* Manual: Remove some external links that could
make the web browser crash. (qtwebkit must be
patched manually to prevent it from trying to
load plugins, it's easier just removing links
to external web pages.
* S7: Updated 10.0 / 9-Dec-2021.
Changes 6.9.99 -> 7.0.00:
* Qt: Updated Qt to 5.15.6 on Windows and Mac.
* Qt: Updated Qt to qtbase-kde (5.15.6++) on Linux.
* JUCE: Update JUCE from 6.1.6 to 7.0.2:
* VST3 plugins should work better on Linux.
* LV2 plugins are supported. (Only enabled on
Linux for now.)
* GUI: Significantly less CPU when drawing text.
* GUI: Use new logo designed by Andrzej "akimaze"
Kilijański.
* Instruments/Editor: New "Window" called
"Preset browser" to quickly try out and organize
instrument presets. See
https://github.com/kmatheussen/radium/pull/1383
for more info. Show it by Selecting Help ->
Beat features -> Preset browser. (akimaze)
* Mac: Replace the "Radium reset.app" with a
"Radium reset.command" clickable shell script
since the "Radium reset.app" app didn't always
work on Macos Sierra or later.
* Load: Don't ask for plugin file when loading song
and plugin is not available.
* Mac: Update startup warning message. The biggest
problem on Mac seems to be issues with the keyboard
now, not with OpenGL.
* Editor: Fix Left Alt + Up. For many release this
function has been deleting previous note if that
note ended on the current line.
* Editor: Fix backspace. For many release this
function has been deleting previous note if that
note ended on the current line.
* Export: Don't display assertion reporter when
exporting single block. (akimaze)
* VST/VL2: Fix "LSP Plugins" and other plugins not
returning the real size before window is visible.
(akimaze)
* VST/AU/LV2: Fix deadlock sometimes happening if
deleting and creating VST/AU/LV2 plugins very fast.
* GUI: Append "..." to the name of all menu entries
and buttons that opens a new GUI (except if the
name starts with "show " or similar).
* API:
* New: getPresedBrowserFrame, stringSplit,
getAllSettings, instrumentIsVisible.
* Add optional argument "is_visible" to
createAudioInstrument,
createAudioInstrumentFromPreset,
and createAudioInstrumentFromDescription.
Changes 6.9.98 -> 6.9.99:
* Editor: Make it possible to add keybinding for all
menu entries in the "(click me)" track header menu,
including opening the "(click me)" menu itself.
It's still not possible to configure keybinding for
currently used instruments though, but it's far
from straight forward how to such keybindings would
work.
* GUI: Create different set of keybindings when
opening the "From instrument/effect" menu depending
on what the instrument is used for. For instance,
when opening the menu from the "(click me)" menu,
you also want to let the keybindings assign the
instrument to the current track, not just create
the instrument.
* Timing: Fix rare crash that reportedly can happen
when drawing up the sequencer after inserting lines
in the editor, and possibly other situations. Bug
seems to have been introduced in V6.9.86.
* GUI: Add entries to also select from the list of
most frequently used instruments in the various
insert-instrument menus (in addition to select
from plugin manager/preset/etc.)
* Editor: Fix painting correct background for the
velocity nodes related to whether the nodes are
current or not. Bug probably introduced in
V6.9.80.
Changes 6.9.97 -> 6.9.98:
* Build: Upgraded Qt from 5.15.2 to 5.15.3.
* Build: Upgraded lots of system libraries for
all three platforms.
* Windows: Include a general README.txt file.
* Windows 32bit: Include the FaustDev instrument. By
mistake, the FaustDev instrument had not been
included before now.
* Song properties/Instruments/Editor: Add options to
simulate pitch changes by sending out discrete
glissando notes. Enabled by default in new songs
for instruments that don't support changing pitch
of playing notes.
* Editor: Fix some harmless but annoying error
messages sometimes popping up right after loading
a song.
* Audio: Fix notes not stopping for some instrument
when changing the pitch of a currently playing
note.
* JUCE: Upgrade from 6.1.4 to 6.1.6
* Build: Fix compiling with clang 13.
* Faust: Update to faust 2.37.3
* Editor: Don't set random sample for all selected
instruments when pressing SHIFT+R. This keybinding
belongs in the mixer only.
* Instruments: Remember highest instance number from
last time when loading songs. The instance number
is used when autocreating instrument names.
* Build: Fix shebangs (bandthedoge)
* JUCE: Don't enable jassert in RELEASE mode
(fixes crashes in VST3 plugins on linux.)
* Editor/Sequencer: Paint nodes correctly when they
are selected.
* Editor/Sequencer: Paint thicker borders on high
DPI screens.
Changes 6.9.96 -> 6.9.97:
* Linux: Removed libglib-2.0.so from the Linux
binaries since it sometimes caused 3rd party
plugins to fail loading. (Caused by conflicting
libraries)
* Linux: Update included system library files.
* GUI: Fix making Shift + Right mouse button reset
mute and solo in the sequencer.
* Plugin scanner: Fix displaying error messages on
Linux and Windows.
* JUCE: Update JUCE to 6.1.4. This might fix various
issues with VST3 on Linux and other things.
* Plugins: Fix crash when selecting the "Set ..."
option in the effect popup menus.
* GUI: Lots of high DPI fixes. The whole program
should look descent on high DPI screens now.
* Audio preferences window: Support high DPI
screens. (Probably not working on macOS though...)
* Plugins: Support high DPI screens for the GUI for
plugins. (Probably not working on macOS though...)
* Keyboard: Workaround to fix space and return keys
not always working (especially on newer and faster
computers).
* Startup: Fix custom python code added in the
keybinding configuration file sometimes not working
(especially on newer and faster computer).
* Demo songs: Fix sweeping filter automation in the
main demo song.
* GUI: Lots of mouse handling improvements.
* GUI: Make the "ZL1" key (i.e. the key one step to
the left of "Z" on a QWERTY keyboard) behave the
same way as pressing Shift + Right mouse button.
* GUI: Make the mouse "Back button" (for mice having
this button) behave the same way as pressing Shift
+ Right mouse button.
* Menus: If a function has more than one shortcut,
display the shortest of those shortcuts in popup
menus.
* GUI: Improve various popup menus.
* Instruments: Don't create a new undo entry when
resetting an effect and the effect already had the
default value.
* Linux: Fix scheme listener not always starting
unless running on Ubuntu 18.
* Preferences/Audio: Add option to not use JACK even
when JACK is running.
* Audio: Fix possible problems when initializing JUCE
audio.
* Playlist: Don't show error message if pressing the
delete key in an empty playlist.
* Editor: Make it possible to assign keybindings to
the "New Sample Player" and "New MIDI Instrument"
options in track header menu.
* LADSPA/Windows: Another attempt at preventing
windows from scanning the included ladspa plugins
during startup. It doesn't seem to always work
though. The built-in virus scanner in Windows seems
to be extremely aggressive. The LADSPA files are
never opened or read during initialization.
* Demo song: Fix low pass filter automation.
* Editor: In the pianoroll header, fix "A" button not
always behaving quite correctly.
* Audio: New song properties option for muting output
of the 5 system buses when a plugin is bypassed. By
default this option is ON for new songs and OFF for
old songs (to keep kompatibility).
* Manual: Add recipe to the Mixer FAQ on how to
create a sidechain compressor.
* Manual: Add how to set volume higher than 6db in
the mixer FAQ.
* Editor: In the "(click me)" menu, display currently
used audio instruments before currently used MIDI
instruments.
* Edit: Also expand/shrink end pitch value when
expanding/shrinking pitch.
* Edit: Fix expand/shrink pitch. Last release wrongly
assumed end pitch always had a legal value.
* Plugin Info box: Inform when a mono LADSPA plugin
has been automatically transformed into a stereo
plugin.
* API:
* New: setMuteSystemBusesWhenBypassed,
muteSystemBusesWhenBypassed, setPianorollRange,
simulateDeleteMouseButton,
gui_rerunLastMouseEvent,
hasEventConnectionUnderMouse,
hasAudioConnectionUnderMouse,
getEventConnectionUnderMouseSourceInstrument,
getEventConnectionUnderMouseDestInstrument,
getAudioConnectionUnderMouseSourceInstrument,
getAudioConnectionUnderMouseDestInstrument,
gui_getGfxScale.
* minimizeBlockTracks: Optional argument "force".
Changes 6.9.94 -> 6.9.96:
* Editor: Make pitch expand/shrink also work on pitch
changes, not just on the main pitch of notes.
* Editor: Shorten the main popup menu a little bit.
* Editor: Fix editing the value of a pitch change.
I.e. left alt + return when cursor is placed on
a pitch change for a note.
* Playlist: Clean up popup menus a little bit.
* Playlist: Make it possible to configure the color
of the border of current entries.
* Playlist: Split the concept of current blocklist
position and the concept of current block, making
it convenient to change playlist while playing
song. I.e. current block is not always the same as
the current blocklist position anymore.
* Playlist: Clean up various things.
* Editor: Fix possible glitch in sound when cutting
the length of a note while playing.
* Playlist: Make "C" keybinding change color of
highlighted block or audiofile if mouse pointer is
currently pointing inside a block or an audiofile,
also in the blocks browser in the playlist for
instance.
* Playlist: Light up playlist entries when mouse is
above.
* Playlist: Select current seqblock under mouse when
mouse is above a playlist entry. This is practical
when assigning keybinding to e.g. change block
color.
* Playlist: Add popup menu option to set current
seqtrack.
* Sequencer: Fix some unnecessary jumpingaroundness
when moving seqtracks up and down.
* Sequencer: Fix changing timing mode
unintentionally when changing seqtrack order.
* Sequencer: Don't create undo when changing
seqtrack order but ends up with the same order as
before.
* Linux: Fix space and return key not working, for
some reason, on Ubuntu 20 and probably other
distributions.
* Sequencer: Don't show error message when trying to
swap last seqtrack with next seqtrack.
* Sequencer: Fix dragging seqtrack number up and
down when there are invisible seqtracks.
* Modular mixer: add the "Mixer" submenu to the
bottom of the effects popup menu.
* Mixer: Clean up the various "Insert plugin" menus.
* Editor: Clean up the top of the "(click me)" menu.
* Editor: Add the timing tracks popup menu submenu
to the bottom of the bars/beats popup menu.
* Modular mixer: Fix module positioning when loading
.mrec files.
* Ladspa: Include the name of the audio input and
output ports in the info box.
* Sampler: Fix integer overflow problem in code to
generate waveforms. This fixes (rare) situations
with no waveforms in the editor
* Mixer: Add "Create new bus" option to the top of
the list of buses you can send to when selecting
"Insert send".
* Mixer: Add "New bus" option to the main popup menu
in the modular mixer.
* Mixer: Tweak the "New sound object" / "New audio
instrument" menu.
* Sequencer: Change "Set name" to "Rename" in the
popup menus.
* Playlist: Fix block names not being updated when
editor blocks are renamed, and other situations.
* New song: Hide signature track, tempo automation
track, and swing track.
* Editor: Automatically (and continously) resize all
tracks to fill all available space for clean
projects.
* API:
* New: getSeqtrackUuid,
setCurrEditorBlockUnderMouseForSequencer,
getCurrEditorBlockUnderMouseForSequencer,
setCurrSampleUnderMouseForSequencer,
getCurrSampleUnderMouseForSequencer,
getCurrBlocklistPos, setCurrBlocklistPos.
* setUsingSequencerTiming gets optional argument
'make_undo'.
Changes 6.9.91 -> 6.9.94:
* Instruments: Reorganize the "Insert new sound
object" / "New audio instrument" menu.
* Playlist: Give keyboard focus to the sequencer
instead of the editor when the mouse is inside the
playlist.
* Sequencer: Minimize sequencer height when
maximizing window or showing full-screen.
* GUI: Try to fix sequencer sometimes not being
fully minimized right after startup.
* Windows: Partially fix importing MIDI files, i.e.
smaller files are imported perfectly now. However,
larger MIDI files seems to only be partially
imported on Windows. The problem does not seem to
be present on Linux and macOS.
* GUI: When showing sequencer, make sure the mixer
is visible first if sequencer is inside the mixer.
* GUI: Fix keyboard focus when showing sequencer.
* GUI: Don't show mixer at program startup.
* MIDI: Give more information when warning about
possibly creating a recursive connection when
connecting an instrument to a MIDI output port.
Before it could look like the program was stuck in
an infinite loop when importing MIDI files.
* Sequencer: Clean up popup menus a little bit.
* Mixer strips: Clean up popup menus a little bit.
* Sequencer: Make sure first seqtrack is the current
seqtrack after loading an older song. Before this
commit, a hidden seqtrack bus was set as the
current seqtrack.
* Modular mixer: Let the "C2" button apply to all
buses, not just the 5 effect buses.
* Instrument effect popup menu: Replace the
"keybindings for.." sub menu with entries that
actually changes the value. This value can instead
be right-clicked to change keybinding. Redundant
functionality though, but it looks cleaner.
* Modular mixer: Include "mixer" elements in a
"mixer" sub menu for the popup menu.
* Modular mixer: Snap connections to modules when
being created.
* Modular mixer: Put connection lines on top of all
other graphical elements when being created.
* Modular mixer: Fix hovered connection color (it
was hardcoded to a bluish color).
* Mixer: Make event connections red. (The old color
looked too much like the audio connection color,
and yellow (used before that again) looks too much
like white which is used to show a current event
going through the connection.)
* Modular mixer: Fix possible division by zero
sometimes happening when using middle button to
drag.
* Modular mixer: Redesign GUI of the modules:
* Don't overlap volume sliders with the
mute/solo/bypass buttons.
* Modular mixer: Switch back to displaying simple
peaks.
* Modular mixer: Use the instrument color for the
background color of the M/S/B buttons.
* Modular mixer: Use black background color for
the volume sliders.
* Modular mixer: Write dB value inside the volume
sliders.
* Swap upper and bottom half of the modules. I.e.
paint text and note indicator above slider and
buttons.
* Less rounded and a little bit thinner borders.
* Limit the volume sliders between -40dB and +6dB.
Before, it was between -40dB and +35dB, which is
usually a too big range.
* Make non-linear scaling between effect value and
slider positions, similarly to the mapping in
the mixer strips. (i.e. we have approximately
equal room between -6dB and 6dB and between -35dB
and -6dB now).
* Adjust audio port colors.
* Light up elements below the mouse pointer.
* Don't draw audio input/output ports when they're
not used, not visible, or doesn't exist.
* Alternatively move module by left-dragging the
name instead of using the right-button.
* When right-clicking the volume slider, mute,
solo, or bypass, show the instrument effect
popup menu instead of the module popup menu.
* Manual: Document the FX/Velocity subtrack.
* Manual: Some minor improvements here and there.
* Help: Open help windows in external browser if the
built-in browser is not able to show the manual
(i.e. compiled against a too old version of
qtwebkit).
* API:
* Renamed: instrumentIsSeqtrackBus -> instrumentIsBus
* New: gui_webCanShowManual, getInstruments, getMidiInstruments, getAudioInstruments, getBuses
Changes 6.9.90 -> 6.9.91:
* Macos: Improve startup message.
* Internal: Minor improvements.
* Help: Fix the various help buttons and menu
entries not showing correct web page if user
had manually changed web page on the assigned
window (help windows are cached to open
quicker the second time).
Changes 6.9.89 -> 6.9.90:
* Internal: Reorganize code protecting s7 gc
variables a little bit. Might have fixed some
potential problems.
* Internal: Preallocate a little bit of memory for
vectors. Also remove some thread assertion code
from non-debug builds. Might improve performance
a little bit.
* Internal: Make sure memory allocated by the RT
memory allocator is always aligned at maximum.
This could theoretically increase performance.
Changes 6.9.88 -> 6.9.89:
* Editor: Fix crash when quantitizing notes. Bug
introduced in 6.9.80.
* Windows32: Fix import MOD.
* Macos: Open Help windows in an external browser
since the manual now uses javascript-features not
supported by QtWebkit 5.9.
* Manual: Include search field + various other
improvements.
* Faust: Fix possible performance problem for the
interpreter backend.
* API:
* gui_web: Handle local files with queries.
* gui_web: Only accept Escape key if currently
searching. (Previously it hindered all other
usage of the Escape key by web pages.)
Changes 6.9.86 -> 6.9.88:
* Editor/Instrument: Enable sample-seek by default.
* Macos: Runs under Macos 11.
* Windows: Antivirus programs should never scan
LADSPA plugins during startup anymore.
* JUCE: Don't allocate memory in realtime code for
VST3 plugins when setting parameter values.
* Editor: Fix "Rec" not being removed immediately
after stopping to record MIDI input.
* Linux: Fix JUCE thread issues which might have
caused glitches in sound when using VST plugins.
* JUCE: Upgrade to V6.0.8. Most important change is
probably support for VST3 plugins on Linux.
Changes 6.9.82 -> 6.9.86:
* Audio: Try not to open any audio input device by
default. Sometimes this screws up the output
sound.
* Audio: Try to use a default buffer size of 1024
when initializing the audio device. Earlier the
audio device was sometimes initialized with an
incompatible block size.
* Sequencer: Fix inserting several audio files at
once when selecting "Insert audio file(s)" from
the popup menu. For a few releases now, inserting
several audio files inserted the new audio files
into the wrong sequencer tracks.
* Sequencer: Also set seqtrack-under-mouse when
changing current seqtrack.
* Sequencer: Fix moving several seqblocks at once
when there are hidden seqtracks.
* Sequencer: Light up seqtrack names, both in
seqtrack headers and in the "Tracks" tab, when
mouse is above.
* Sequencer: Light up the editable path name field in
the "Files" tab when mouse is above.
* Sequencer: Light up seqtrack currently under mouse.
* Sequencer: Fix keybindings not always working on
current seqtrack pointed to by the mouse.
* Sequencer: Paint orange border around current
seqblock in the sequencer navigators.
* Sequencer: Fix possible weird behavior when moving
more than one seqblock and one or more of those
seqblocks were deleted because they were moved to
a seqtrack of the wrong type.
* GUI: Make all sliders in the editor/mixer/sequencer
to light up when mouse is above the slider.
* Mixer: Make the volume text and peak text light up
when mouse is above.
* Editor: Convert various node assertions to fire in
debug builds only.
* Editor: Fix moving cursor left when the cursor is
positioned on the leftmost centtext subtrack and
the swing subtrack is visible.
* Editor: Fix transposing selected notes in the
pianoroll when using left meta + u/d.
* Editor: Improve logic for whether to show the
centtext subtrack or not.
* Editor: Convert pitches to TimeData.
* The most notable change is that any editing is
heard immediately if playing block or song at
the same time.
* Using less CPU cache. CPU usage might be notably
lower after notes themselves have been converted
to the new data structure.
* Necessary for future work such as replacing
OpenGL with Vulkan.
* Editor: Fix transpose velocity.
* Build: Fix compiling for LLVM12 (Teteros)
* Editor: Let the window that shows the
no-range-or-selection error show buttons to open
the manual instead of explaining directly how to
edit range and selection.
* Editor: Make sure editor graphics is updated when
pressing left alt + return.
* API: setCurrSeqtrackUnderMouse
Changes 6.9.81 -> 6.9.82:
* Editor: Don't show assertion window when changing
the number of lines in a block causes a note to
be shortened. Bug introduced in 6.9.80
Changes 6.9.80 -> 6.9.81:
* Load: Fix program freeze if loading a song with a
VST/AU plugin from the command line. Was probably
only a problem on Linux.
* VST/AU: Enable all audio channels of VST/AU plugins
when the plugin is initiated since some plugins
don't enable all channels by default. For instance,
the U-he Runciter plugin only enables one of its
channels. In the future there should be an option
to select bus layout for plugins
* Editor: Fix inserting a new note below another note
in a non-polyphonic matter, i.e. so that the end of
the first note stops where the second note starts.
This could in some situations fail spectacularly.
Bug introduced in 6.9.80
Changes 6.9.75 -> 6.9.80:
* Windows/Editor: Another workaround to fix garbled
fonts sometimes happening in the editor right after
startup.
* Editor: Changed the behavior when pressing DEL on a
veltext entry so that it behaves the same way as
when deleting a velocity node with the mouse.
* Manual: Minor updates.
* Sequencer: Make it optional in preferences
whether changing current seqtrack also changes
current editor block. Also disable this option by
default, before it was enabled.
* Sequencer: Add option in preferences whether mouse
wheel up/down starts/stops playing or scrolls
up/down seqtracks.
* Sequencer: New option in preferences to select
whether to autoselect the seqtrack which is
currently below the mouse pointer. In addition,
turn this option OFF by default (before this
behavior was ON).
* Mixer: Change the "Connected to main pipe" option
in the popup menus to "Connected to main bus".
* Preferences/colors: Add slider to adjust the amount
of gradient colors of various filled rectangles.
* GUI: Various tweaks to color shading.
* Preferences/colors: Fix setting correct default
values for the saturation and brightness sliders
when pressing "Reset".
* Sequencer: New option in preferences to select
whether to autoselect block currently under the
mouse pointer. In addition, turn this option OFF by
default (before this behavior was ON).
* Load: Add workaround for loading songs saved with
Radium older than 6.9.76. Before that there was a
bug that caused no volume change to be played if
there were only two velocity nodes for a note and
the last node had value 0 (i.e. plain
decrescendo where not played).
* GUI: Made the green audio peak color greener.
* Mixer: Paint a handler for the volume sliders to
better see current value.
* Colors: Adjusted check box colors a little bit.
* Modulator: Fix division by zero if min and max is
equal. (This caused illegal floating points to
wander around in the system).
* Audio: Assert that the value is a legal floating
point when setting plugin parameters.
* Editor: Convert note velocities to the new data
structure:
* The most notable change is that any editing is
heard immediately if playing block or song at
the same time.
* Using less CPU cache. CPU usage might be notably
lower after notes themselves have been converted
to the new data structure.
* Coincidentally fixed a bug that caused no
volume change to be heard if there were only
two velocity nodes for a note and the last node
had value 0 (i.e. plain decrescendos were not
played). Also add a workaround for this bug so
that loading old songs still sound the same.
* Necessary for future work such as replacing
OpenGL with Vulkan.
* Editor: Don't delete note when deleting the last
velocity node and there are pitch changes unless
there are only two velocity nodes.
* Loading: Fix showing correct line numbers when
loading song fails.
* Internal: Various improvements to the RT memory
allocator.
* API:
* New: autoselectEditorBlockUnderMouse,
setAutoselectEditorBlockUnderMouse,
getAmountOfGradient, setAmountOfGradient,
autoselectSeqtrackUnderMouse,
setAutoselectSeqtrackUnderMouse,
autoselectEditorBlockWhenChangingSeqtrack,
setAutoselectEditorBlockWhenChangingSeqtrack,
sequencerMouseScrollWheelStartsStopsPlaying,
setSequencerMouseScrollWheelStartsStopsPlaying.
* Change last argument (gradient) for gui_filledBox
from boolean to int, and add 13 different types of
gradients to choose from.
Changes 6.9.74 -> 6.9.75:
* GUI: Tweak default background color of the editor
and the modular mixer.
* Audio/MIDI: Fix erroneous error message
("RT_free failed") possibly being displayed when
sending and receing MIDI from VST plugins. Bug
probably introduced around 6.9.66.
* Sequencer: Warn about non-linear mapping if
loading an older song that has Crossover
automation for the sampler instrument.
* Editor: Warn about non-linear mapping if loading
an older song that has Crossover automation for
the sampler instrument.
* Mixer: Made it possible to configure the
background color of the modular mixer separately.
* Sampler instrument: Fix loading songs with custom
loops.
* API: Fix wrong error message possibly being
displayed when sending/receiving MIDI.
Changes 6.9.72 -> 6.9.74:
* GUI: Made it possible to configure all label
colors. Before this, it was hardcoded to light
gray.
* Sequencer: Made it possible to configure the
editor seqtrack header backgound color
separately. Before, it just used the "Sequencer
background" color.
* Sampler instrument: Made the crossfade slider
exponential so that it'll be possible to set
accurate small values.
* Sequencer: Paint name of current editor seqblock
in white color also in the navigator widgets.
* GUI: Adjust default colors a little bit.
* Editor: Fix assertion reporter popping up when
changing number of tracks in "block properties"
while playing.
* GUI: Paint gradient background color for various
text.
* Editor: Tweak tempo multiplier slider graphics a
little bit. Also make the colors for the slider
configurable.
* Playlist: Use same colors as in the sequencer and
paint a border around current entries instead of
using a different background color. Also paint a
small border around non-current entries.
* Sample instrument/Fluidsynth instrument: Make sure
the sample browser is wide enough to show all text
of normal-sized filenames.
* GUI: Make all buttons have the "Buttons" color.
* GUI: Make group boxes easier to see.
* Sampler instrument: Support loop crossfade when
using custom loop start/end points.
* Sampler instrument: New effect "Loop window".
* Internal: Change main timer interval from 5ms to
15ms. This might lighten up CPU usage a little bit.
Changes 6.9.71 -> 6.9.72:
* Sequencer: Add a "Duplicate seqblock and block"
option to the editor seqblock popup menu.
* Mixer: Make current mixer slot color red.
* Mixer: Make the sound object ports more visible.
* Mixer: Improved sound object port graphics.
* Colors: Made it possible to configure the color of
the current slot.
* Colors: Made the audio port color in the mixer
configurable.
* Colors: Make it possible to configure the
out-grayed color in the editor when a custom
widget has keyboard focus.
* Colors: Make it possible to configure dialog
help text color.
* Menus: Fix selecting "Show/Hide Mixer" and
"Show/Hide Sequencer" without using shortcuts.
* Editor: Fix editing BPM. Bug introduced in 6.8.71.
Changes 6.9.69 -> 6.9.71:
* Linux: Fix importing MOD files in the binaries.
(Probably broken in 6.7.76.)
* Sampler instrument / Fluidsynth instrument: Made
soundfile text color a little bit darker.
* Editor: Display "Automatically set pianoroll
range" in the status bar when the mouse pointer is
above an "A" button in the track headers.
* Sampler instrument: Fix sample browser stealing
keyboard focus when the current instrument is
changed to an instrument that had keyboard focus
inside the sample browser the last time it was
used.
* Editor: Don't show assertion reporter in release
mode when note structure is slightly corrupt.
* Sampler instrument: Fix illegal samples being
played if loading an audio file with less than 32
samples, or a sample loop is less than 32 samples.
Fixes playing chip tune MOD songs for instance.
Bug introduced in 6.5.81
* Sequencer: If soundfile is shorter than last time
it was used in Radium, also cut seqblock
automation so that nodes are not placed after the
end of the file (where they can't be edited).
* Build: Fix faust llvm build. Should fix #1339
* Sequencer: Give more detailed information if a
sound file couldn't be opened.
* Sequencer: Handle properly if an audio file is
physically replaced with a file with different
number of channels while the program is running.
Changes 6.9.67 -> 6.9.69:
* Windows: Fix showing current system font when
opening the "change system font" requester.
* Windows: Fix using "Lato Black" as the default