forked from jamulussoftware/jamulus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1372 lines (795 loc) · 45.5 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
### 3.8.2dev <- NOTE: the release version number will be 3.9.0 ###
### 3.8.2 (2022-02-20) ###
- Client: Added selection option for level meter style (#1688, #2352, #2356).
(contributed by @henkdegroot, @hoffie, @pgScorpio, @pljones)
- Client: On Windows, if no driver found while installing, the "Run Jamulus"
option will not be checked (#2103).
(contributed by @henkdegroot)
- Client: on macOS, corrected minimum OS version number for Legacy installer from 10.13 to 10.10.
Legacy installer will now install correctly on macOS Yosemite or newer (#2223).
(contributed by @softins)
- Client: Added Vibraphone to list of instruments (#2043, #2080, #2158).
(contributed by @DavidSavinkoff, @softins, photo by @vibraphon)
- Client: Added Conductor to list of instruments (#2140).
(contributed by @henkdegroot)
- Client: Fix wrong display of Unicode characters at line wrap and settings screen (#1994, #2274).
(contributed by @djfun, @pljones, @hoffie)
- Client: Fixed incorrect operation of feedback detection on first connect in run (#2120).
(contributed by @softins)
- Client: Added option always to show one's own fader first (#1809).
(contributed by @ngocdh)
- Client: Improved regex to highlight URLs in the chat window, avoiding terminating punctuation.
Also migrated from deprecated QRegExp to QRegularExpression, for future compatibility with
Qt6 (#2124, #2272, #2273).
(contributed by @softins, @corrados, @hoffie)
- Client: Improved keyboard control of the list of Custom Directories (#2129).
(contributed by @pljones)
- Client: Added the connected server name to the heading in the mixer panel (#2173).
(contributed by @pljones)
- Client: Enhanced the ASIO driver detection during installation on Windows (#2149).
(contributed by @henkdegroot)
- Client: On Windows, hide the ASIO button in the version that uses JACK instead (#2215).
(contributed by @henkdegroot)
- Client: Improved the "What's this?" text displayed for Buffer Delay (#2232).
(contributed by @henkdegroot)
- Client: Accelerator key clash between Settings button and Settings menu corrected (#2248).
(contributed by @henkdegroot)
- Client: Added option code 'o' in --ctrlmidich for "Mute Myself" (#2334).
(contributed by @henkdegroot)
- Client/Server: Output from --help and --version is now sent to StdOut instead of StdErr (#2244).
(contributed by @henkdegroot)
- Client/Server: Improved the version output on the command line to give more detail and Qt version (#2187).
(contributed by @henkdegroot)
- Client/Server: Added version and Jamulus URL to the Windows uninstall information registered when installing (#2201).
(contributed by @henkdegroot)
- Client/Server: Some improvements to text related to localisation (#2085).
(Contributed by @BLumia)
- GUI: Improved Connect Dialog help texts (#2121).
(contributed by @pljones)
- GUI: Translations have been updated:
* Dutch, by @henkdegroot and @jerogee (#2371, #2314)
* French, by @jujudusud (#2329, #2320, #2381)
* German, by @ann0see, @rolamos and @hoffie (#2349, #2387)
* Italian, by @dzpex (#2327)
* Polish, by @SeeLook (#2375, #2331)
* Portuguese Brazilian, by @melcon (#2369, #2358)
* Portuguese European, by @melcon (#2368)
* Simplified Chinese, by @BLumia (#2313, #2391)
* Slovak, by @jose1711 (#2348)
* Spanish, by @ignotus666 (#2378, #2326)
* Swedish, by @softins (#2364)
- Server: Fixed incorrect German translation (#2137).
(contributed by @rolamos)
- Server: Improved management and allocation of free channels, so that a new client always gets the
lowest available channel number. Improves operation of clients with MIDI faders (#2151).
(contributed by @softins)
- Server: Improved the icon that is displayed in the Windows system tray for a server (#2231).
(contributed by @henkdegroot)
- Bugfix: IPv6 address formatting and obfuscation has been improved (#2343).
(contributed by @rdica, @hoffie, @softins)
- Windows Installer: Updated NSIS to v3.08 (#2208).
(contributed by @ann0see)
- Android: Some internal improvements to the experimental Android port buffer handling (#1528, #2237).
(contributed by @j-santander, @softins)
- Documentation: Enhanced the iOS compilation guide and signing instructions (#2139, #2315).
(contributed by @ann0see, @RobyDati)
- Documentation: Added a man page for Jamulus, from the Debian project (#2180).
(contributed by @mirabilos)
- Build: Raspijamulus build script has been improved to work with the latest Raspberry Pi OS releases and to include a newer JACK version (#2267).
(contributed by @corrados, @softins)
- Internal: Improved accelerator key detection (#2061).
(contributed by @softins)
- Internal: A hypothetical CodeQL-detected multiplication overflow in sound buffer handling has been fixed (#2292, #2297).
(contributed by @softins)
- Internal: Changed "Central" to "Directory" in names of variables and functions (#2079).
(contributed by @pljones)
- Internal: Corrected "Protcol" to "Protocol" in names of variables and functions (#2146).
(contributed by @atsampson)
- Internal: Some code reordering, particularly of the settings initialisation (#2174, #2177).
(contributed by @pljones)
- Internal: Removed unneeded submodules from tools directory, and replaced with a RELATED-PROJECTS document (#2196).
(contributed by @softins)
- Internal: Improved generation of the changelog for the Debian package, using dch (#2138).
(contributed by @npostavs)
- Internal: Improved powershell redirect handling when building for Windows in Github (#2225).
(contributed by @henkdegroot)
- Internal: Prepared autobuild logic for upcoming Qt6 compatibility (#2328).
(contributed by @hoffie, @softins)
- Internal: Release build process has been refactored and uses pinned dependencies for better reproducibility now (#2345, #2336).
(contributed by @hoffie, @softins)
- Internal: Moved documentation files into docs/ folder to clean up root folder (#2283).
(contributed by @ann0see)
### 3.8.1 (2021-10-23) ###
- Client: JACK support on Windows has been improved (#1718).
(contributed by @jujudusud, @henkdegroot)
- Client: Rewrote multiple error messages to improve UX (#1568, #1732).
(contributed by @ann0see)
- Client: Add custom directory servers to Connect Dialog (#1869, #1894).
(contributed by @jp8)
- Client: Rearrange existing UI menu bar items (#1915, #1926).
(contributed by @jp8)
- Bug Fix: Mute myself has been made more consistent (#1838).
(contributed by @ngocdh)
- Bug Fix: Fix ampersand not being shown correctly on mixer (#1886, #1893).
(contributed by @HughePaul, @ann0see)
- Bug Fix: A crash fix related to the way iOS handles sockets in idle mode (#1875).
(contributed by @ngocdh)
- Server: A single click on the server application in the systemtray now opens the Jamulus Server main window (#1722, #1731).
(contributed by @henkdegroot)
- Server: Jam Recorder's internal locking and initialization code has been made more robust (#1826).
(contributed by @cdmahoney)
- Server: The list of servers registered on a directory can now be saved during directory restart. Use the new
--directoryfile CLI option to use this feature (#1867).
(contributed by @pljones)
- Server: Add link to website if a new version is available (#1980).
(contributed by: @ann0see)
- Bug Fix: Remove incorrect version of headless .service file (#2009).
(contributed by @ann0see)
- Client/Server: Add IPv6 support for direct connections (#1017, #1938).
(contributed by @jardous, @softins)
- CLI: Re-order and refactor help for client/server validation (#1896).
(contributed by @pljones)
- CLI: Jamulus now shows a link to the Website for translated content (#1759).
(contributed by @henkdegroot)
- Android: Add close button on Android to enhance UX (#1763, #1876).
(contributed by @ngocdh)
- iOS: Sound support, feature to allow switch between external device and the internal mic (#1875).
(contributed by @ngocdh)
- MacOS: Keyboard shortcuts now also work on macOS (#1726, #1873).
(contributed by @henkdegroot)
- Installer: Add zh_CN translation + for nsis win installer (#1922, #1954).
(contributed by @BLumia)
- Documentation: Move Demos, description of inputs options to Knowledge Base (#603, #551).
(contributed by: @pcar75, @gilgongo)
- Documentation: Add user experience section to CONTRIBUTING.md (#1885).
(contributed by: @ann0see)
- Documentation: Create Server Admin Manual (#527).
(contributed by: @gilgongo)
- Documentation: Update typo on links in compiling.md file (#1824).
(contributed by @jujudusud)
- Documentation: Number range command line error messages reworded accurately (#1978).
(contributed by @DavidSavinkoff)
- Website: switch to .po file format to make updating translations easier (various PRs)
(contributed by: @ignotus666)
- Website: Removed edit button from wiki layout file (#576).
(contributed by: @DevRish)
- Internal: Enable signing of macOS binaries (via build script and automatically via CI) (#1856, #1937).
(contributed by @emlynmac)
- Internal: Added Apple Appstore licence waiver (#1874)
(contributed by @ann0see, @pljones, @gilgongo)
- Internal: Add autobuild for Windows with JACK (#1829).
(contributed by @henkdegroot)
- Internal: Document release process on contribute page (#1594, #592).
(contributed by: @hoffie, @ann0see)
### 3.8.0 (2021-06-02) ###
- The term "Central server" has been replaced with "Directory server" (#1407, #1715, #1629).
Note that the program will still accept the --centralserver option for backward
compatibility with existing system startup scripts, but its usage is deprecated.
(contributed by @pljones, @softins)
- Mac: Generate build with Qt 5.15.2 for better compatibility with Big Sur (#1687, #1768).
We still build a legacy version with Qt 5.9.9 to support older versions of macOS:
* Users of 10.13 (High sierra) or newer should use the standard build with Qt 5.15.2
* Users of Yosemite, El Capitan or Sierra should use the legacy build with Qt 5.9.9
(contributed by @softins)
- GUI: Settings window has been reorganized into tabs (#1415, #1554, #1542, #1588):
* User Profile window has been integrated into the settings window.
* Input Pan has been moved to the newly created Advanced tab and removed from main window.
(contributed by @dcorson-ticino-com, @pljones)
- GUI: Moved the Ping and Delay stats from the Settings window to the main window (#1762):
This was partly to work around a Mac issue with updates to the settings window (#1643)
and is actually an improvement anyway, as the settings window does not need to remain open.
(contributed by @dcorson-ticino-com and @softins)
- GUI: Added "About Qt" to the help menu to display version of Qt (#1685, #1692).
(contributed by @softins)
- GUI: Corrected the operation of What's This in the settings dialog (#1622, #1635).
(contributed by @dcorson-ticino-com)
- GUI: Improved the muted speaker icon display (#1691).
(contributed by @henkdegroot)
- Added new icons for Linux desktop use (#1672).
(contributed by @jujudusud)
- GUI: Corrected handling of custom directory server in the server, to prevent
unintended registration with a directory server (#1624, #1627).
(contributed by @softins)
- GUI: Corrected alignment of Mute icon above fader (#811, #1312, #1640).
(contributed by @vimpostor)
- GUI: Support for more than two mixer rows has been added (#1549, #1560).
(contributed by @pljones)
- GUI: --clientname also works in dialog titles now (#1352, 1370).
(contributed by @dcorson-ticino-com)
- GUI: Translations have been updated
* Dutch, by @henkdegroot (#1562, #1623, #1714, #1557)
* French, by @jujudusud (#1648, #1708)
* German, by @rolamos (#1677, #1810)
* Italian, by @dzpex (#1620)
* Polish, by @SeeLook (#1619)
* Portuguese Brazilian, by @melcon (#1671, #1807)
* Portuguese European, by @Snayler (#1689)
* Slovak, by @jose1711 (#1647)
* Spanish, by @ignotus666 (#1621, #1730, #1808)
* Swedish, by @genesisproject2020 (#1664, #1696)
- Network: Support for DSCP Quality of Service flags has been added (#1310).
This is supposed to lead to improved network performance.
It is enabled by default.
On Windows, this requires additional configuration in order to work.
Please see the Tips & Tricks page on the website for a setup guide for Windows.
(contributed by @DavidSavinkoff)
- Client: Automatic channel fader adjustment simplifies mixer setup by using the channel level meters (#1071).
(contributed by @JohannesBrx)
- Client: Basic audio feedback detection has been added (#1179).
(contributed by @JohannesBrx)
- Client: Support for input gain boost has been added (#1222, #1030)
(contributed by @hoffie)
- Client: Grouping support has been extended to allow for up to eight groups (#1551).
(contributed by @pljones)
- Client: A hint regarding non-default Jack support has been added (#1397, #1438).
(contributed by @djfun)
- Server: Support for Delay Panning has been added (#332, #567, #1151, #1417, #1744):
This feature can be enabled on servers using the new --delaypan option.
Enabling this feature will slightly increase server CPU usage.
It can create a much more realistic spatial sound impression for clients
that are set to Stereo or Mono-in/Stereo-out mode.
(contributed by @DetlefHennings, @Hk1020, @softins, @henkdegroot)
- Server: Multi-threading performance has been improved (#960).
(contributed by @menzels, @softins)
- Server: Half-connected clients will no longer receive audio (#1243, #1589):
Note: This breaks compatibility with client versions before 3.3.0 (Feb 2013).
If you update your server, ensure that all clients use 3.3.0 or later as well.
(contributed by @softins)
- Server: HTML status file is now emptied on exit (#1423, #1427).
(contributed by @hoffie, @drummer1154)
- Server: An explicit bind address can now be specified (#141, #1561).
This can be done by the new --serverbindip option.
(contributed by @buv)
- Recorder: Compatibility with third-party tools such as Audacity has been improved (#1384, #1424, #1437).
Non-ASCII characters are now stripped out when creating filenames.
(contributed by @softins, @gilgongo, @reinhardwh)
- Recorder: Failures to start recording no longer result in crashes (#1163, #1289, #1463).
(contributed by @hoffie, @softins, @pljones)
- Recorder: Logging has been improved (#1284, #1463).
(contributed by @hoffie, @drummer1154)
- Bug fix: The mute indicator is now also shown in mono mode (#1074).
(contributed by @npostavs)
- Bug fix: Channel mapping on Windows now only resets if the sound card or the numbers of channels changed (#1347).
(contributed by @ann0see)
- Bug fix: Jamulus client should now close itself correctly if a non-working device was selected (#872).
(contributed by @npostavs)
- Bug fix: Server no longer crashes while changing the recording directory (#1501, #1573).
(contributed by @henkdegroot, @hoffie, @softins)
- Bug fix: Example systemd unit has been fixed to avoid crashing when sending signals (#1515, #1518).
(contributed by @softins, @helgeerbe, @gilgongo)
- Bug fix: The Windows installer now correctly compiles in a path with spaces (#864, #1319).
(contributed by @henkdegroot)
- Performance: Opus encoding/decoding now uses machine-specific optimizations (#1105).
(contributed by @npostavs)
- Performance: Timer configuration for Windows servers has been improved (#1536).
(contributed by @npostavs)
- iOS support is being worked on (#1450).
(contributed by @jeroenvv)
- Github autobuild for Mac now uses Xcode 11.7 and SDK 10.15 for compatibility with Qt5 (#1655).
(contributed by @softins)
- Build: Creation of debug builds has been simplified (#1516).
(contributed by @hoffie)
- Internal: Constants for JACK usage have been renamed (#1429).
(contributed by @djfun)
- Internal: Legacy IP address variables have been cleaned up (#1400).
(contributed by @wferi)
- Internal: Added automatic code formatting with clang-format (#901, #1127, #1751).
(contributed by @passing)
- Internal: New pull requests will now be checked for coding style automatically (#1735).
(contributed by @passing)
- Internal: Windows deploy script has been aligned to autobuilds (#1720).
(contributed by @henkdegroot)
### 3.7.0 (2021-03-17) ###
- Server lists have been reorganized to make room for more servers (#875):
* Default has been renamed to Any Genre 1.
* Any Genre has been renamed to Any Genre 2.
* Any Genre 3 has been added.
* Choral/Barbershop has been added.
* Classical/Folk/Choral has been renamed to Classical/Folk.
- Central server addresses have been moved to the jamulus.io domain (#919).
The fischvolk.de addresses are deprecated.
- GUI: If a name is provided using --clientname, that name is shown first in the window title, to avoid clipping in the Windows task bar (#789).
- GUI: Translations have been updated:
* Dutch, by @jerogee (#1110)
* French, by @trebmuh & @jujudusud (#1199 & #1113)
* German, by @rolamos (#1097)
* Italian, by @dzpex (#1112)
* Polish, by @SeeLook (#1099)
* Portugese, by @melcon & @Snayler (#1141 & #1168)
* Slovak, by @jose1711 (#1104)
* Spanish, by @ignotus666 (#1152)
* Swedish, by @genesisproject2020 (#1182 & #1106)
- Active recording state is now highlighted in the mixerboard title (#968).
(contributed by @dcorson-ticino-com)
- Client window makes it more obvious when not connected to a server by graying out input levels and showing a message (#847, #983).
(contributed by @ann0see)
- Screensaver and screen blanking are now prevented on Macs (#834).
(contributed by @jerogee)
- Windows installer has been improved (#792, #841).
Note: If you are using ASIO4ALL, we strongly suggest that you take a screenshot
of your ASIO4ALL settings before upgrading. The installer will try its best to
migrate your settings, but it may fail to do so when using custom
installation paths.
(contributed by @ann0see and @doloopuntil)
- Windows installer interface now supports English, Dutch, French, German, Italian, Polish, Portuguese, Spanish and Swedish.
(contributed by @jerogee, @jujudusud, @ann0see, @dzpex, @SeeLook, @Snayler,
@melcon, @ignotus666 and @genesisproject2020)
- Windows ASIO Setup button placement has been improved to be below the driver selection (#977).
(contributed by @mulyaj and @ann0see)
- Chat dialog has gained support for auto-linking http addresses (#879).
(contributed by @hoffie)
- Chat messages no longer allow HTML-formatted chat messages due to security reasons (#939).
HTML formatting in Welcome messages will continue to work.
(contributed by @atsampson)
- Mixerboard background image quality in the Fancy skin has been improved (#970).
(contributed by @passing)
- MIDI controller logic has been improved to support fader, pan, mute and solo buttons in --ctrlmidich syntax (#945).
Mute & solo buttons are only for toggle-type controllers and do not support
headless operation yet.
(contributed by @dakhubgit)
- Servers connected to central servers behind the same NAT can now be made accessible to public clients via the newly added --serverpublicip option (#954).
(contributed by @hoffie)
- External IP detection no longer generates traffic to Cloudflare (#633, #1092).
(contributed by @atsampson and @hoffie)
- Version update detection has been improved (#1155):
* The check now uses two servers instead of one (updatecheck1.jamulus.io and updatecheck2.jamulus.io).
* The server version is now ignored if it is not a release, due to a
suffix such as dev, beta or rc.
(contributed by @softins)
- Official Ubuntu/Debian packages are now built and published as part of the release (#1100).
The packages are compatible with Ubuntu 18.04 or later.
(contributed by @ann0see)
- Experimental .apk installation packages for Android are now provided (#880).
(contributed by @nefarius2001)
- Bug fix: A suspected memory leak has been solved by removing usage of ConsoleWriterFactory (#926).
(contributed by @pljones)
- Bug fix: Changing ASIO driver properties like switching input/outputs in ASIO4ALL now resets input/output channel mapping in Jamulus again (#796).
This was done to solve a bug with ASIO4ALL introduced in the last version.
- Bug fix: Fader levels, mute and solo state are now restored properly when reconnecting to a restarted server (#955, #1010).
This is a server-side fix.
(contributed by @hoffie)
- Bug fix: Multiple memory leaks in the server's recording feature have been fixed (#1073).
(contributed by @softins)
- Bug fix: Menu accelerator keys have been fixed in multiple translations (#1165).
(contributed by @softins)
- Bug fix: Windows sound driver lacked driverInfo initialisation (#1194).
(coded by @npostavs)
- Internal build and release process have been re-designed, automated and moved to Github.
(contributed by @pljones, @nefarius2001, @ann0see, @ranfdev)
- Internal development builds now contain a detailed version number (#475).
(contributed by @nefarius2001)
### 3.6.2 (2020-12-12) ###
- change Clear All Stored Solo Settings to clear Mute as well (#731)
- avoid selecting IPv6 results from hostname lookup, coded by jarmar (#722)
- added possibility to set MIDI offset for fader control to --ctrlmidich (#95)
- detect if no audio Device is selected before trying to connect a server (#129)
- on MacOS if an audio device is no longer available, show a warning
rather than switching to default automatically (#727)
- bug fix: sliders move by themselves if fader groups are used on reconnect (#611)
- bug fix: do not reset sound card channel selection on a device property change (#727)
- bug fix: compiling Jamulus 3.6.1 is failing on Debian 9 Linode (#736)
- bug fix: on MacOS Jamulus does not always select the previous sound card (#680)
- bug fix: use new server icon on Mac server bundle and Windows installer (#737)
- bug fix: ping times of servers which are further down the server list are too high (#49)
### 3.6.1 (2020-11-21) ###
- added menu entry "Set All Faders to New Client Level" (#622)
- isolate a channel from the group temporarily with shift-click-drag (#695)
- on shift-click the pan reset to 0 L/R (#707)
- support multiple custom central server addresses (#698)
- the Jamulus server now has a different icon, created by geheimerEichkater (#700)
- support two rows for the mixer panel (#720)
- changed RYG indicator lights with colour-blind compensation, created by geheimerEichkater (#57)
- saving and loading mixer settings is now possible during an active connection and a
mixer settings file can be loaded with drag'n'drop (#706)
- menu entry Clear All Stored Solo Settings is now enabled during an active connection
- bug fix: the fader group property was not correctly loaded from the ini file
### 3.6.0 (2020-10-25) ###
- handle audio packets received out of order, coded by softins (#619)
- most recently connected users appear on the RH side on the fader panel (#673)
- improvements for the server multithreading, coded by kraney (#653)
- removed Display Channel Levels setting and --servername (#638)
- removed support for further server infos in --serverinfo since the preferred
way of registering a server is to do it using the protocol messages (#638)
- removed -g, --pingservers since all Central servers must activate this function,
now it is activated by default and no command line argument is needed (#638)
- added --mutemyown command line argument to mute my own signal in my personal mix,
only supported in headless client mode (#340)
- added "Mountain Dulcimer" instrument icon, created by dora71 (#649)
- added new instrument icons for "Scratching" and "Rapping"
- replaced double types by floats for some of the signal processing, coded by hselasky (#544)
- support permanent channel fader sorting (i.e., not only on request but always) (#666)
- support sorting faders by channel city
- if sorting the faders by instrument, we now sort by the name for the same instruments
- improvements to the Android audio interface, coded by j-santander (#83)
- bug fix: reduced server list is displayed instead of the normal list (#657)
### 3.5.12 (2020-10-03) ###
- added hyperlink support for the chat window, coded by jc-Rosichini (#591)
- added new menu entry "Clear All Stored Solo Settings" (#616)
- fade in all clients at the server when entering a server to avoid the volume
is at 100% when joining a server (#628)
- added a qmake CONFIG flag for disabling the automatic version check (#370)
- avoid confusion with the Server Address field on the connection setup window by
no longer showing the server name in that field since it is only intended for
entering IP addresses or valid server URLs (#365)
- removed the "Show Creative Commons BY-NC-SA 4.0 Licence Dialog" setting from the
server GUI and changed the -L/--licence text in the licence dialog to "Do you agree
to the text in the chat window?" so that a licence text must now be given in the
server welcome message (#587, #367, #81)
- added a protocol message for a reduced server list to improve the situation caused
by UDP packet fragmentation (#631, #255)
- added translation: Slovak by jose1711 (#635)
- bug fix: crash when using the jam recorder in the server, coded by pljones (#618)
### 3.5.11 (2020-09-19) ###
- support a check for updates (#370)
- added an optional server list whitelist filter (#413)
- added a command line argument to enable multithreading in the server (#339)
- added support for split protocol messages (fixes bug with large number of clients
connected to a server, #547)
- store recorder settings, coded by pljones (#313)
- added a command line argument to disable recording on start up, coded by pljones (#574)
- accessibility improvements, coded by chigkim (#498, #512)
- added Jack audio latency calculation, coded by bflamig (#437)
- show the server name in the title bar (#559)
- bug fix: crash when using the Jack backend and quickly reconfiguring, coded by hselasky (#543)
- bug fix: Alt+h shortcut to open the Chat dialog did not work, use Alt+c instead
- bug fix: pan is not correctly initialized in the server on a new connection (#537)
### 3.5.10 (2020-08-16) ###
- do not change the server list order if the mouse is over the table to
avoid selecting an incorrect server on a mouse double click (#293)
- if network name/address contains spaces, they are removed now,
coded by dingodoppelt (#462)
- improve Compact skin by using smaller font size
- improve server audio mix processing for better clipping behavior
- support MIDI control faders in headless build (#483)
- option to set Mute Myself on with a command line argument (#495)
- added a red message to indicate that Mute Myself is activated (#476)
- manual clip LED reset by mouse click on the level meter (#421)
- replacing internal history graph functionality by external scripts/tools (#501)
- accessibility improvements, coded by chigkim (#499, #510, #514)
- bug fix: fixed a stability issue in the server
- bug fix: --showallservers ping column sort is alphabetic (#201)
### 3.5.9 (2020-07-19) ###
- new app icon for Jamulus, created by geheimerEichkater (#410)
- support up to four different groups for the channels (#202)
- support sorting faders by channel group
- add support to change the GUI language (#297)
- add special server list filter for filtering occupied servers by using "#" (#397)
- update server UI to allow setting the jam recorder directory (like -R) (#228, #405)
- redesign of the server dialog (e.g. added welcome message setting)
- save and restore mixer state (like fader, mute, etc.) (#377),
note that saving/loading of settings only works if not connected
- scale channel instrument picture in Compact skin mode
- show maximum number of clients for servers in the serverlist, coded by dingodoppelt (#451)
- log the number of connected clients on each new connection (#277)
- move the Mute Myself button up to prevent accidentally disconnecting
- bug fix: grouping faders in the client should be proportional (see discussion in #202, #419)
### 3.5.8 (2020-06-30) ###
- bug fix: incorrect selection of UI language (#408)
### 3.5.7 (2020-06-28) ###
- add new "compact" skin, intended for large ensembles (#339)
- support sorting faders by channel instrument, coded by Alberstein8 (#356)
- new group switch to change several faders in sync, coded by Alberstein8 (#202, #379)
- support a clip LED, coded by fleutot (#220)
- add server recording indicator, coded by pljones (#295)
- support for storing/recovering the server window positions (#357)
- add a headless build type which does not depend on QtGui/QtWidgets, coded by marcan (#322)
- the local pan middle position is no longer attenuated in Mono-in/Stereo-out mode (#353)
- added translation: Brazilian Portuguese by melcon (#372)
- add send button to chat window (#384)
- add some protections to the code, coded by atsampson (#380, #381, #382)
- bug fix: server window stop updating after minimized, coded by AronVietti (#355, #383)
### 3.5.6 (2020-06-09) ###
- support sorting faders by channel name (#178)
- enable/disable recording from command line, coded by pljones (#228)
- add Audacity "list of files" writer to jam recorder, by pljones (#315)
- make level meter LED black when off, by fleutot (#318)
- added ukulele/bass ukulele instrument icons created by dos1 (#319)
- avoid showing IP address if no name in the musician profile is given (#316)
- show channel numbers if --ctrlmidich is used (#241, #95)
- added check in acknowledge message, coded by atsampson (#302)
- bug fix: on MacOS declare an activity to ensure the process doesn't get throttled
by OS level Nap, Sleep, and Thread Priority systems, coded by AronVietti (#23)
### 3.5.5 (2020-05-26) ###
- added banjo/mandolin instrument icons created by atsampson (#283)
- faster update of musicians list in the server list table
- display recorder state and latest recording directory in the server GUI,
allow a new recording to be requested, by pljones (#228)
- New Client Level now also applies if you enter a server
- bug fix: honour own fader and Mute button in Mute Myself (#148)
- bug fix: audio fader sliders cannot be moved if the main windows is too small (#292)
- bug fix: server gain calculations were incorrect (introduced in version 3.5.4)
### 3.5.4 (2020-05-24) ###
- introduce genre-based server lists (#139)
- implement panning for channels, coded by tarmoj (#52, #145)
- added an indicator that another client has muted me (#257)
- move central server type dropdown to connection setup (#157)
- added vocal bass/tenor/alto/soprano instrument icons created by Alberstein8 (#131)
- support intermediate Reaper RPP file while recording, coded by pljones (#170)
- save client settings on Linux cmdline termination signal, coded by pljones (#70)
- added translation: Italian by dzpex (#249)
- bug fix: fixed misaligned tracks in recordings, coded by snayler, improved by pljones (#234)
### 3.5.3 (2020-05-15) ###
- correct unregister of headless server and RPP file creation on
SIGINT/SIGTERM, coded by pljones (Tickets #130, #168)
- for CoreAudio and 4 channel input, support mixing channels 1&2 with 3&4
- added bassoon/oboe/harp instrument icons created by dszgit,
congas/bongo created by bspeer (#131)
- link to docs from application Help menu (#90)
- support Mac CoreAudio aggregated devices (#138)
- added translations: French by trebmuh, Portuguese by Snayler,
Spanish by ignotus666, Dutch by jerogee, German by corrados (#77)
- new design for the About dialog (#189)
- new command line option -d to disconnect all clients on shutdown of the server (#161)
- bug fix: for mono capture Jack audio interface Jamulus complains it
cannot make connections (#137)
- bug fix: fixed that Jamulus segfaults when jackd is restarted (#122, #127)
- bug fix: better handling of disconnect message in the client
- note: Jamulus is no longer compatible to Qt4
### 3.5.2 (2020-04-24) ###
- use audio level meter bars for normal skin
- store Show All Musicians setting in the ini-file
- improved Mac installer, coded by doloopuntil
- support to open ASIO driver setup(s) if startup failed due to incorrect driver settings (#117)
- added -v/--version command line argument to output version information (#121)
- added bodhran and other instrument icons, bodhran created by bomm (#131)
- bug fix: if small network buffers are used we get much better audio quality when drop outs occur
- bug fix: if names given with the -o option were too long, the server registration failed (#91)
- bug fix: audio level changes if Buffer Delay is changed (#106)
- bug fix: do not reset fader level meters if number of clients change
- bug fix: fixed a crash with JackRouter 64 bit ASIO driver (#93, thanks to elliotclee)
### 3.5.1 (2020-04-18) ###
- added a Mute Stream button to hear your signal and the signal of the other clients but
do not transmit your signal to the server so that the other clients cannot hear you
- added Enable Small Network Buffers switch to enable small sound card buffers in
combination with legacy OPUS packets since OPUS packets with 64 samples enable low
latency but can increase audio drop outs
- upgrade OPUS codec library to v1.3.1 by doloopuntil
- server list registration status indicator added to the server GUI, coded by pljones
- improved auto jitter buffer for 64 samples frame size
- the ping times in the server list are now more stable
### 3.5.0 (2020-04-15) ###
- added support for 64 samples OPUS packets in the client (if a sound card buffer size
larger or equal than 128 samples is chosen, the legacy 128 samples OPUS packets are used)
- added a filter for the server list to, e.g., filter a specific country or search for a musician
- refresh server list if the Central Server address type is changed
- the unit of the mixer faders is now dB using the range -50 dB to 0 dB
- increased LED luminance (#71)
- bug fix: the server welcome message may appear twice if the server list was double clicked
### 3.4.7 (2020-04-11) ###
- added support for alternative Central Servers to solve the 200 server registration limit (#50)
- added support for 64 samples frame size in the server (if server runs in 64 or 128 samples
mode it is still compatible to both, 64 and 128 samples frame size clients)
- added multichannel CoreAudio support, coded by emlynmac (#44)
- fixed server not visible if in same local network, coded by pljones (#27)
### 3.4.6 (2020-04-09) ###
- added support for channel meters, coded by pljones
- added show licence switch in the server GUI
- store fader mute state in the ini file, coded by doloopuntil
- fixed low-res icon issue (#28)
### 3.4.5 (2020-04-04) ###
- audio fade-in at the server if a new client connects
- added a scroll bar to the mixer board to support large numbers of
mixer faders (a thank you to doloopuntil for his help)
- changed the maximum number of clients supported by the server from 20 to 50
- Windows installer now contains a 32 and 64 bit version of Jamulus (the version to
be installed is selected automatically according to the detected operating system)
- bug fix: server list ping times may not be accurate and client list may not be retrieved
### 3.4.4 (2020-03-25) ###
- added support for controlling the audio mixer faders with a MIDI controller (MacOS and Linux)
- added command line argument for disabling auto jack connection (#49)
- audio recording for the server, coded by pljones
- SVG server history graph, coded by pljones
### 3.4.3 (2018-05-17) ###
- for ASIO and 4 channel input, support mixing channels 1&2 with 3&4
- bug fix: fixed a crash, running Jamulus on MacOS version "High Sierra"
### 3.4.2 (2017-08-11) ###
- removed old CELT library (minimum compatible version is now 3.3.1)
- show server name in the server list in bold font if it is a permanent server
- Jack can be used instead of CoreAudio on MacOS (using qmake "CONFIG+=jackonmac")
### 3.4.1 (2016-02-10) ###
- show the number of connected clients in the MacOS task bar if more
than one client is connected
- avoid a single jitter buffer for the auto detection
- the Musicians value in the server list shows a warning if the server is full
- automatic server setting for permanent server flag in the protocol
- bug fix: ping time measurement may be invalid for the Linux OS
### 3.4.0 (2015-12-10) ###
- show the names of the connected clients in the server list
### 3.3.11 (2015-11-26) ###
- added a new client fader level setting
- changed the MacOS audio interface to be future proof (do not use
the Carbon Component Manager anymore)
- added support for audio channel selection for MacOS
### 3.3.10 (2015-10-20) ###
- changed the default central server URL
- added support for server disconnection
### 3.3.9 (2015-07-12) ###
- another improvement of auto jitter buffer detection in very bad
network conditions