-
Notifications
You must be signed in to change notification settings - Fork 42
/
ChangeLog
2010 lines (1288 loc) · 70.8 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
QjackCtl - JACK Audio Connection Kit Qt GUI Interface
-----------------------------------------------------
ChangeLog
GIT HEAD
- Graph: force an actual complete refresh on main View/Refresh...,
especially when changing the color theme palette on-the-fly.
1.0.3 2024-10-29 An Autumn'24 Release.
- Long missing D-Bus method slot added: "reset" (dbus-send --system
/ org.rncbc.qjackctl.reset).
- Graph: Node reference positioning changed to the top-left corner,
improving the base snapping-to-grid perception.
- Prepping up next development cycle (Qt >= 6.8)
1.0.2 2024-09-17 An End-of-Summer'24 Release.
- Graph: when visible the thumb-view may now be drag-moved over
to a different corner position anytime.
- Session: introducing new Save session name/directory dialog.
- Connections: connector line colors are now uniquely mapped
on a (readable/output) client name basis.
1.0.1 2024-08-01 A Summer'24 Release.
- Graph: thumb-view repositions and resizes immediately when
visible.
- Graph: Implement patchbay node search functionality: adds a
floating text-entry field, which appears when typing in the
canvas, selecting nodes that contains the typed text (maybe
regular expression).
- Graph: fixed a potential use-after-free issue on canvas nodes
refresh and recycle.
1.0.0 2024-06-19 An Unthinkable Release.
- Making up the unthinkable (aka. v1.0.0)
- Cancel button option added to close to system-tray icon message.
- Graph: Introducing thumbview context-menu.
0.9.91 2024-05-01 A Spring'24 Release Candidate 2.
- Prepping the unthinkable (aka. v1.0.0-rc2)
- Graph: Introducing the View/Thumbview option as a whole graph
thumbnail overview helper.
- Updated to latest framework level (Qt >= 6.7)
0.9.90 2024-04-10 A Spring'24 Release Candidate.
- Prepping the unthinkable (aka. v1.0.0-rc1)
- Custom color themes are now file based (*.conf); legacy still
preserved ntl.
- Old generic "Portuguese" translation (pt) has been corrected to
the more proper "Portuguese (Brazil)" locale (pt_BR).
- Simplified and shortened the main window title.
0.9.13 2024-01-24 A Winter'24 Release.
- Graph: Make the main canvas background to mid-gray, when on
non-dark color themes.
- Turkish (tr) translation added.
- Updated copyright headers into the New Year (2024).
0.9.12 2023-09-09 An End-of-Summer'23 Release.
- Setup: disable Settings parameters altogether, except frames/period
(aka. buffer-size) if running in the so called 'Active' pure-client
mode (eg. under PipeWire's pw-jack substitution).
- Connections: Fixed an old JACK client/ports aliases malfunction,
hopefully.
- Graph: Ctrl+left or middle-button click-dragging for panning, is
now a lot smoother, hopefully.
- Graph: Click-dragging with the mouse middle-button is now used
for panning only, not to start a selection anymore.
- Preppings to next development cycle (Qt >= 6.6)
0.9.11 2023-06-01 A Spring'23 Release.
- Graph: Soft incremental bounds constraints now imposed to all
new and old nodes positioning.
- Prepping into the next development cycle (with Qt >= 6.5).
0.9.10 2023-03-23 An Early-Spring'23 Release.
- Setup: revert to previous settings when dismissing the dialog.
- Graph: Attempt to make port labels as short as possible.
- Graph: introducing touch pinch-gesture for zooming.
0.9.9 2022-12-28 An End-of-Year'22 Release.
- Graph: whether to draw connectors through or around nodes is a
new user preference option (cf. View > Connect Through Nodes).
- Graph: Allow middle mouse button for grabbing and dragging the
main canvas.
- Make up visual immediate feedback connectlons.
0.9.8 2022-10-03 An Early-Autumn'22 release.
- Graph: View / Repel Overlapping Nodes option added.
- Avoid nagging on D-BUS error messsage windows (or bubbles) when
trying to start in pure JACK client mode (Active).
- Add current system user-name to the singleton/unique application
instance identifier.
- Graph/Connect and Disconnect keyboard shortcuts added to existing
[Ins] and [Del], as [Ctrl+C] and [Ctrl+D] respectively; also added
[F2] as brand new keyboard shortcut for Edit/Rename...
0.9.7 2022-04-02 A Spring'22 Release.
- Main application icon is now presented in scalable format (SVG).
- Migrated command line parsing to QCommandLineParser/Option
(Qt >= 5.2)
- Fixed translations path to be relative to application runtime.
0.9.6 2022-01-09 A Winter'22 Release.
- Dropped autotools (autoconf, automake, etc.) build system.
- Limit or mitigate fast auto-scrolling when moving Graph client
nodes off the viewport.
- Whenever possible, adopt the previous named default preset,
when starting the JACK-server on premises.
- Conditional fix to MacOSX and FreeBSD builds.
0.9.5 2021-10-05 An Autumn'21 Release.
- Streamlined Windows and MacOSX deliverables (by Alexis Murzeau).
- Korean (ko) translation added (by JungHee Lee).
0.9.4 2021-07-04 An Early-Summer'21 Release.
- All builds default to Qt6 (Qt >= 6.1) where available.
- CMake is now the official build system.
0.9.3 2021-05-11 A Spring'21 Release.
- Graph connection lines drop-shadow eye-candy has been optimized,
improving a lot on moving highly-connected nodes, especially the
ones with plenty of backward-curved connections.
- All packaging builds switching to CMake.
- Fixed default preset/aliases switching and reloading when entering
pure-client mode (ie. "Active" status).
0.9.2 2021-03-14 An End-of-Winter'21 Release.
- Clock source, Self-connect mode and Server synchronous mode
options are now always enabled on the Setup / Settings dialog,
although only available or effective to jackd2.
- Graph Disconnect now applies to selected connections or nodes only.
0.9.1 2021-02-07 A Winter'21 Release.
- Graph Disconnect now applies to all selected ports and connections.
- Main window is now freely resizable, while keeping all the buttons
stretched to the same aspect ratio.
- Warning to confirm application close is now back in business when
functioning as client only (Active).
- Graph items are automatically raised when created or high-lighted
(incremental z-value).
- Add a little but straight horizontal line-gap to the Graph
connections.
- Customize the Graph zoom slider widget to reset upon mouse
middle-button click.
- Add Clear preset button to Setup dialog.
- Use default values for most preset parameters: sample rate,
frames/period (aka. buffer-size), periods/buffer, realtime
priority, port maximum, client timeout, word length, wait time,
channel maximum.
- Early preparations for the New Year develop(ment) cycle.
0.9.0 2020-12-17 A Winter'20 Release.
- List only available backend drivers when JACK D-BUS is enabled.
- Graph client-name / node-title aliases persistence have been
hopefully fixed.
- Get rid of those "JACK has crashed" red-herrings from latest
Windows(tm) builds.
- Early fixing to build for Qt >= 6.0.0 and comply with C++17
standard.
0.6.3 2020-07-31 A Summer'20 Release.
- Clock source and Self connect restriction options have been added
to Setup / Settings / Advanced (only enabled when JACK D-BUS control
interface is in effect).
- Added preliminary support for JACK CV signal-type ports and JACK
OSC event-type ports (Graph only).
- Left-clicking on the system-tray icon now simply toggles the main
widget visibility, disregarding if already hidden undercover to
other windows.
- Graph nodes and ports are now presented with some gradient
background.
- Fixed Setup dialog Cancel (or close) behavior when Settings >
Parameters > Frames/Period (aka. buffer- size) it's the only
setting that's changed.
- Early fixing to build for Qt >= 5.15.0.
0.6.2 2020-03-24 A Spring'20 Release.
- A scalable (.svg) icon version has been added.
- Make man page compression reproducible (after request by Jelle
van der Waa, while on the Vee-Ones, thanks).
- Ditching deprecated QTime methods for QElapsedTimer's (in
compliance to Qt >= 5.14.0).
- Bumped copyright headers into the New Year (2020).
0.6.1 2019-12-22 The Winter'19 Release.
- Custom color (palette) theme editor introduced; color (palette)
theme changes are now effective immediately, except on default.
- Second attempt to fix the yet non-official though CMake build
configuration.
- When using autotools and ./configure --with-qt=..., it is also
necessary to adjust the PKG_CONFIG_PATH environment variable
(after a merge request by plcl aka. Pedro López-Cabanillas,
while on qmidinet, thanks).
0.6.0 2019-10-17 An Autumn'19 Release.
- Graph: avoid self-connecting over their own ports when client
nodes are selected as a whole group; also try to match port-types
in a oderly fashion when connecting multiple selected ports.
- Changing current JACK buffer size from Setup dialog (cf. Settings
/Frames/Period) may now take effect just immediately ;)
- An 'Apply' button as been added to the Setup dialog; ask whether
to restart the JACK audio server, if any settings are changed.
- Added alternate yet non-official CMake build option.
- Fix HiDPI display screen effective support (Qt >= 5.6).
- Command line arguments (--start, --preset=[label] and --active
-patchbay=[path]) are passed and take effect on the current
singleton/unique application instance, when enabled and already
running.
- System-tray icon context menu has been refactored to be exactly
the same as the main-window context menu that is re-instantiated
on demand.
- Make sure compiler flags comply to c++11 as standard.
0.5.9 2019-07-12 A Summer'19 Release.
- Updated for the newer Qt5 translation tools (>= 5.13).
- Configure updated to check for qtchooser availability.
0.5.8 2019-05-25 A Spring'19 Release.
- When enabled the current default preset settings are now read
from the last known JACK D-BUS configuration.
- Minor update to Debian packaging control file.
- Removed all the remaining leftovers of old pre-FFADO 'freebob'
driver support.
0.5.7 2019-03-11 A Spring-Break'19 Release.
- Graph node and port title renaming and nodes position move changes
are now undo/redo-able.
- Graph client and port title in-place renaming is now integrated to
native aliases and JACK metadata (aka. pretty-names).
- Refactored all native client/port name aliases.
- Re-defined all main application UNIX signal handling.
0.5.6 2019-03-11 Pre-LAC2019 Release Frenzy.
- Refactored all singleton/unique application instance setup logic
away from X11/Xcb hackery.
- At last, JACK freewheel mode is now being detected as to postpone
any active patchbay scans as much as possible.
- Removed old pre-FFADO 'freebob' driver support.
- HiDPI display screen support (Qt >= 5.6).
- Graph port temporary highlighting while hovering, if and only if
connecting ports of same type and complementary modes.
- Bumped copyright headers into the New Year (2019).
0.5.5 2018-11-23 A Black-Friday'18 Release!
- Old deprecated Qt4 build support is no more.
- Graph port sort options added as View / Sort menu.
- System tray options now subject to current desktop environment
availability.
- Also disable Setup / Misc / Other / Save JACK server configuration
to (.jackdrc) when JACK D-Bus interface is enabled.
- Whether to use server synchronous mode option added to Setup /
Settings / Parameters (only applied when JACK D-BUS interface is
enabled).
- Disable some Setup / Settings / Advanced parameters when JACK
D-Bus interface is enabled and vice-versa.
- Attempt to power-cycle JACK D-Bus service on demand;
- Marked as probably useless anyway, old "H/W Monitor" option (-H)
is now being ditched from Setup / Settings / Advanced tab.
- Graph port/connections highlighting.
0.5.4 2018-09-24 An Early Autumn'18 Release.
- Graph port-type colors are now configurable (cf. menu View >
Colors.
- Make Graph nodes (ie. client boxes) transparent for yet some
eye-candiness ;). Also keep the (Graph) current selection across
port (dis)connections.
- Drawing patchbay connector lines as (bezier) curves is now a
difinitive and fixed feature (as long as no more remains from the
so called "Cambric explosion era" are still lurking in there).
- AppStream metadata updated to be the most compliant with latest
freedesktop.org specification and recommendation.
- Graph auto-layout improvement for brand new node clients.
- Avoid showing setup warning when no server settings have changed.
- Fixed JACK D-Bus settings for MIDI driver parameter.
0.5.3 2018-07-22 A Summer'18 Release.
- Portuguese (pt) translation added (by Heitor Rocha).
- AppData/AppStream metadata is now settled under an all permisssive
license (FSFAP).
- Improved Graph rubberband add (Shift) and toggle (Ctrl) multiple
(de)selections.
- Added user preference option: Setup / Misc / Buttons / Replace
Connections with Graph button (on main window).
- Added a zoom slider control to the Graph view status bar.
0.5.2 2018-05-27 Pre-LAC2018 release frenzy hotfix.
- Respect ALSA Sequencer support option also on Graph view.
- Regression to new Graph node/ports sorting comparator; also fixed
multiple and many port removals, most probably causing it to crash
due to double-free/delete potential.
- Fixed the automatic aggregation of new Graph client nodes that are
split as either input or output only (ie. system, terminal, physical
or otherwise non-duplex nodes).
- Added View/Zoom Range mode option to Graph tool.
0.5.1 2018-05-21 Pre-LAC2018 release frenzy.
- Half a decade later, recent new custom entries may now get removed
from Session Infra-client list.
- Some rather old, better said "Cambric explosion era", user
preference options have been ditched altogether: Display / Time
Format; Display / Shiny glass light effect; Display /
Connections/Draw connections and patchbay lines as Bezier curves;
Misc/Configure as temporary server.
- A brand new and way long overdue connections Graph widget is
finally introduced, only to be accessible through the context menu
at this time.
- Extended multi-selection is now supported on all Connections
client/port lists, allowing for multiple (dis)connections at once.
- Disable singleton/unique application instance setup logic when the
display server platform is not X11.
- A little hardening on the configure (autoconf) macro side.
0.5.0 2017-12-16 End of Autum'17 release.
- Current preset is always taken into account if ever changes while
the Setup dialog is hidden (eg. via context menu).
- Desktop entry specification file is now finally independent from
build/configure template chains.
- Updated target path for freedesktop.org's AppStream metainfo file
(formerly AppData).
0.4.5 2017-04-27 Pre-LAC2017 release frenzy.
- On some desktop-shells, the system tray icon blinking on XRUN
ocurrences, have been found responsible to excessive CPU usage,
an "eye-candy" effect which is now optional as far as Setup/
Display/Blink server mode indicator goes.
- Added French man page (by Olivier Humbert, thanks).
- Make builds reproducible byte for byte, by getting rid of the
configure build date and time stamps.
0.4.4 2016-11-14 A Fall'16 release.
- Fixed an early crash when the singleton/unique application
instance setup option is turned off.
- Almost complete overhaul on the configure script command
line options, wrt. installation directories specification,
eg. --prefix, --bindir, --libdir, --datadir and --mandir.
0.4.3 2016-09-14 End of Summer'16 release.
- Fix build error caused by variable length array.
- Fix some tooltip spelling (patch by Jaromír Mikeš, thanks).
- Translation (not) fix for the default server name "(default)".
- Old "Start minimized to system tray" option returns to setup.
- Dropped the --enable-qt5 from configure as found redundant given
that's the build default anyway (suggestion by Guido Scholz, while
for Qtractor, thanks).
- Late again French (fr) translation update (by Olivier Humbert aka.
trebmuh, thanks).
0.4.2 2016-04-05 Spring'16 release frenzy.
- Added a brand new "Enable JACK D-BUS interface" option, split from
the old common "Enable D-BUS interface" setup option which now
refers to its own self D-BUS interface exclusively.
- Dropped old "Start minimized to system tray" option from setup.
- Add double-click action (toggle start/stop) to systray (a pull
request by Joel Moberg, thanks).
- Added application keywords to freedesktop.org's AppData.
- System-tray icon context menu has been fixed/hacked to show up
again on Plasma 5 (aka. KDE5) notification status area.
- Switched column entries in the unified interface device combo- box
to make it work for macosx/coreaudio again.
- Blind fix to a FTBFS on macosx/coreaudio platforms, a leftover
from the unified interface device selection combo-box inception,
almost two years ago.
- Prevent x11extras module from use on non-X11/Unix plaforms.
- Late French (fr) translation update (by Olivier Humbert, thanks).
0.4.1 2015-10-28 A Fall'15 release.
- Probing portaudio audio device in a separate thread (by Kjetil
Matheussen, thanks).
- Messages standard output capture has been improved again, now in
both ways a non-blocking pipe may get.
- Regression fix for invalid system-tray icon dimensions reported
by some desktop environment frameworks.
- New hi-res application icon (by Uttrup Renzel, Max Christian
Pohle, thanks).
- System tray icon red background now blinks when a XRUN occurs.
- Desktop environment session shutdown/logout management has been
also adapted to Qt5 framework.
- Single/unique application instance control adapted to Qt5/X11.
- Prefer Qt5 over Qt4 by default with configure script.
- Overrideable tooltips with latency info (re. Connections JACK
client/ports: patch by Xavier Mendez, thanks).
- Complete rewrite of Qt4 vs. Qt5 configure builds.
- French (fr) translation update (by Olivier Humbert, thanks).
0.4.0 2015-07-15 Summer'15 release frenzy.
- Some windows fixes added (patch by Kjetil Matheussen, thanks).
- Most advanced Setup/Settings are moved into new Setup/Advanced
settings tab; limit range for the real-time priority setting, now
having 6 as absolute minimum valid value (after patches by Robin
Gareus, thanks).
- A new top-level widget window geometry state save and restore
sub-routine is now in effect.
- Delayed geometry setup for widget windows upon startup has been
deprecated and scrapped altogether.
- Setup/settings dialog tab is going into some layout changes; also
got rid of old patchbay auto-refresh timer cruft, which was
previously hidden/disabled.
- New socket names are now automatically inferred from selected
client names while on the Patchbay widget, Socket dialog.
- Fixed for some strict tests for Qt4 vs. Qt5 configure builds.
- German (de) translation update (by Guido Scholz, thanks).
0.3.13 2015-03-25 Pre-LAC2015 release frenzy.
- Added application description as freedesktop.org's AppData.
- Setup dialog form is now modeless.
- Introducing brand new active patchbay reset/disconnect-all user
preference option.
- Current highlighted client/port connections are now drawn with
thicker connector lines.
- New user preference option on whether to show the nagging 'program
will keep running in the system tray' message, on main window close.
- Connections lines now drawn with anti-aliasing; connections
splitter handles width is now reduced.
- Drop missing or non-existent patchbay definition files from the
most recent used list.
0.3.12 2014-10-19 JACK Pretty-names aliasing.
- JACK client/port pretty-name (metadata) support is being
introduced and seamlessly integrated with old Connections
client/port aliases editing (rename) (refactored from an
original patch by Paul Davis, thanks).
- Application close confirm warning is now raising the main window
as visible and active for due top level display, especially
applicable when minimized to the system tray.
- Messages standard output capture has been slightly improved as
for non-blocking i/o, whenever available.
- Translations install directory change.
- Allow the build system to include an user specified LDFLAGS.
- Missing input/output-latency parameter settings now settled for
the D-BUS controlled JACK server and firewire back-end driver.
0.3.11 2013-12-31 A fifth of a Jubilee.
- More preparations for Qt5 configure build.
- Interface device selection is now unified, by moving the old '>'
pop-up menu into the customized combo-box drop-down list showing all
available card/device names and descriptions (on a patch by Arnout
Engelen, thanks).
- Added include <unistd.h> to shut up gcc 4.7 build failures (patch
by Alexis Ballier, thanks).
0.3.10 2013-04-01 The singing swan rehersal.
- Session infra-client management finally being added.
- Preparations for Qt5 migration.
- Transport tempo (BPM) precision display fixed to 4 digits.
- Color-candy (dang old ANSI terminal?) escape sequences are now
silently stripped from jackdbus messages captured log (onliner
from original patch by Brendan Jones, thanks).
- List ALSA device card id. string instead of device number, while
on setup dialog.
- Japanese (ja) translation added (by Takashi Sakamoto).
0.3.9 2012-05-18 The last of the remnants.
- Killing D-BUS controlled JACK server is now made optional, cf.
Setup/Misc/Stop JACK audio server on application exit. (a patch by
Roland Mas, thanks).
- Added include <unistd.h> to shut up gcc 4.7 build failures.
- Make(ing) -jN parallel builds now available for the masses.
- A mis-quoting bug at the command line argument string may have
been crippling the (unmaintained) Windows port since ever, leaving
its main function to start jackd dead in the water, belly down :)
now hopefully fixed (following a mail transaction with Stephane
Letz and Mathias Nagorni, thanks).
- Currently a JACK2-only feature, the JACK version string display at
the About dialog box, must now be explicitly enabled on configure
time (--enable-jack-version).
- A new so called "Server Suffix" parameter option appears to rescue
on the situations where QjackCtl falls short on extra, exquisite
and/or esoteric command line options eg. (net)jack1/2 differences.
- Fixed D-Bus Input/Output device parameter settings, filled when
either interface is selected for Capture/Playback only. (probable
fix for bug #3441860).
- Fixed Makefile.in handling of installation directories to the
configure script eg. --datadir, --localedir, --mandir. (after an
original patch from h3xx, thanks).
- Main window is now brought to front and (re)activated when
clicking on the system tray icon instead of just hiding it.
- Add current xrun count to the system tray icon tooltip, if not
zero (after patch #3314633 by Colin Fletcher, thanks).
0.3.8 2011-07-01 JACK Session versioning.
- Debugging stacktrace now applies to all working threads.
- Session "Save" button now a drop-down menu, replacing the session
save type combo-box/drop-down list selection. Also, an early session
directory versioning/numbering scheme is now in place, although
optional.
- Probable fix to debian bug report #624198 - segfault when pressing
the stop button (by Grant Adrian Diffey, after a patch from Adrian
Knoth, thanks).
- Desktop environment session shutdown (eg. logout) is now tapped
for graceful application exit, even though the main window is
active (visible) and minimizing to system tray is enabled. Both
were causing first shutdown/logout attempt to abort. Not anymore,
hopefully ;).
- Make sure all activated patchbay definition files are in their
complete and absolute directory path forms.
- Connections refresh button now does an immediate and true
reconstruction of all clients and their respective ports and
connections, unconditionally.
- Command line server start option (-s, --start) is now made
independent from configuration setup option (cf. Setup/Misc/Start
JACK audio server on application startup).
- Now handling cable socket types properly to let patchbay
definitions work correctly, whenever having sockets with the very
same literal name (twisted from patch #3183467, by Karsten,
thanks;).
- Abrupt focus behavior when any of the keyboard modifiers (Shift,
Ctrl, Alt, Caps Lock) is hit while on Connections client/port
aliases editing (rename) has been fixed.
- Russian (ru) translation updated (by Alexandre Prokoudine).
- Added include "errno.h" alegedly missing for BSD style systems
(applying patch for bug #3126091).
0.3.7 2010-11-30 JACK Session managerism.
- Session widget has session save type preserved as well.
- Connections and the new Messages/Status widgets now have their
last open tab preserved across program run-cycles.
- Connections and Patchbay widgets have been finally given up on
an old feature request: an Expand All items button.
- A significant UI layout has been made: the Messages and Status
widgets were merged into one, giving space to the brand new Session
wigdet to be easy accessible from the main panel control window.
- libX11 is now being added explicitly to the build link phase, as
seen necessary on some bleeding-edge distros eg. Fedora 13, Debian
6. (closing bug #3050915).
- Input/Output latency options were missing but now finally enabled
for the firewire back-end.
- General standard dialog buttons layout is now in place.
- Avoid pre-loading a stalled patchbay definition filename and its
nagging error on startup (fixes bug #3017078).
- Client connection retrial logic scrapped. Being a leftover from
early ages, when machines were slower and JACK server startup times
were longer... now, if it can't connect first time as client, it
will tear down the server whether it's starting up still or not at
all. (cf. Setup/Settings/Start Delay for the rescue).
- Server name is finally part of the server settings presets, thanks
to Fons Adriaensen for the heads-up.
- As a workaround regarding issues switching jack2's backends, Robin
Gareus sends us yet another D-Bus method slot: "preset", (dbus-send
--system / org.rncbc.qjackctl.preset string:PRESET). Thanks again.
- Another D-Bus interface slot makes it through implementation:
"quit" (eg. usage: dbus-send --system / org.rncbc.qjackctl.quit).
Besides, there's also these new JACK session management actions
which were being overlooked as well: "load", "save", "savequit"
and "savetemplate" are also available as D-Bus method slots.
- Make sure that Patchbay socket names are unique when adding or
copying, fixing previous patch by Dominic Sacre.
- JACK version is now being shown on the About box (jack2).
- Slight Connections widget behavioral change: (dis)connecting a
client (from) to one single port, (dis)connections will be applied
in sequence from (to) all client output ports to (from) as many
input ports there are in below, one by one (satisfying a 5 year
old request from Yann Orlarey, thanks:).
- JACK session support is being introduced.
- Ignore first XRUN occurrence option dropped from statistics.
- Initial widget geometry and visibility persistence logic has been
slightly revised as much to avoid crash failures due to wrong main
widget hidden state.
- Double-quotes are now being added to device names which include
blank characters and were rendering invalid all command line
invocation of the classic JACK server (eg. specially due for
Portaudio device names on Windows).
- Transport play (rolling) status is now being guarded to avoid
backfiring from extraneous transport state changes.
- General source tree layout and build configuration change.
- Italian (it) translation added (by Sergio Atzori).
- Post-shutdown script invocation logic slightly refactored in
attempt to enforce its execution on application quit.
0.3.6 2010-03-09 Full D-Busification!
- Make sure socket names are unique on each side of the Patchbay
(another patch from Dominic Sacre, thanks).
- A bunch of primitive D-Bus interface slots have been added,
allowing shortcut access to most of main applications actions like
toggling Messages, Status, Connections, Patchbay widget pop-ups,
reset stats, transport and so on. New bindings are given eg. via
dbus-send --system / org.rncbc.qjackctl.(main, messages, status,
connections, patchbay, setup, about, reset, rewind, backward, play,
pause, forward). (from an original idea from Sebastian Gutsfeld,
thanks).
- Patchbay snapshot now tolerates JACK client port strings that have
more than one semi-colon in it, honoring just the first one exactly
as everywhere else eg. Connections. (a glitch as reported by Geoff
Beasley while using a2jmidid).
- Most modal message dialog boxes (eg. critical errors) are now
replaced by system tray icon bubble messages where available
(mitigating feature request #2936455).
- Comply with jackd >= 0.118.0 which nowruns in real-time mode by
default; use of -R is now deprecated from the jackd command line
interface options; use -r to run in non-real-time-scheduling.
- A man page has beed added.
- Got rid of a pretty old and never really useful "jackd-realtime"
server path option--actually, it was only seen available on the
now defunct old Mandrake Linux distro.
- D-Bus support, as provided by org.jackaudio.service aka jackdbus,
is now being introduced and used wherever available and whenever
enabled. Configuring, starting, stopping and logging the JACK
back-end server through the "infamous" jackdbus service is now
being seamlessly exploited.
- Global configuration state is now explicitly saved/committed to
disk when Setup dialog changes are accepted and applied.
- Server name command line option added (-n, --server-name).
- Single application instance restriction option added (X11).
- Setup for the netjack (slave) "net" driver has now sample-rate and
frames per buffer (period size) settings disabled and/or ignored, as
those are pretty much auto-detected by default; also, a new "netone"
backend driver option has been introduced (as suggested by Torben
Hohn).
- Czech (cs) translation added (by Pavel Fric).
- Fixed some main window keyboard shortcuts. Escape key now closes
Connections, Patchbay, Status and Messages widgets as usual (bug
#2871548).
- Fixed glitch on configure portaudio support, specially when the
library is not detected as available.
0.3.5 2009-09-30 Slipped away!
- Late support for UTF-8 encoded client/port names.
- Allow only one single patchbay connection to or from an exclusive
socket (mitigating bug #2859119).
- Automatic crash-dump reports, debugger stack-traces (gdb), back-
traces, whatever, are being introduced as a brand new configure
option (--enable-stacktrace) and default enabled on debug build
targets (--enable-debug).
- Probable fix on the audio connections with regard to client/port
(re)name changes (an ancient bug reported by Fons Adriaensen).
- Portaudio device selector is now available (after a patch handed
by Torben Hohn and Stephane Letz).
- A couple of primitive D-Bus interface slots have been introduced,
giving the option to start/stop the jackd server from the system bus
eg. via dbus-send --system / org.rncbc.qjackctl.start (.stop), (a
nice addition supplied by Robin Gareus, thanks).
- New command line option (-a, --active-patchbay=[path]) to specify
and activate a given patchbay definition file (a simple patch sent
by John Schneiderman, thanks).
- Added one significant digit to DSP Load percentage status display.
- Tentative support for netjack (slave) by adding the "net" driver
to the existing backend driver options on the Setup/Settings
section.
- Converted obsolete QMessageBox forms to standard buttons.
- New patchbay snapshot now raises the dirty flag and allows for the
immediate salvage of patchbay definition profile.
- Conditional build for JACK port aliases support (JACK >= 0.109.2).
- Alternate icon sizes other than default 16x16, are now effective
to the Connections widget (Setup/Dislay/Connections Window/Icon
size).
0.3.4 2008-12-05 Patchbay snapshot revamp.
- Introducing the very first and complete translations in-package:
German (de), Spanish (es), French (fr) and Russian (ru); credits
in TRANSLATORS.
- At last, after years of retarded procrastination, the old infamous
patchbay snapshot feature has been the subject of a almost complete
rewrite and it does try to give a way better mapping of all actual
and current running client/port connections, both JACK (audio, MIDI)
and ALSA MIDI, of course ;)
- On Setup/Settings/Parameters dialog, all device selection options
are now reset to default when disabled interactively.
- Grayed/disabled palette color group fix for dark color themes.
- Qt Software logo update.
- Fait-divers: desktop menu file touched to openSUSE conventions.
- ALSA PCM devices now only listed/enumerated iif strictly compliant
with the audio mode criteria (Duplex, Capture-only or Playback-only)
as kindly suggested by Nedko Ardaunov.
- JACK client/port aliases may now be displayed as a global user
option (see Setup/Display/Connections/JACK client/port aliases).
- Lighten up the connections line and highlight colors, as seen to