-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
15831 lines (10752 loc) · 452 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
commit 375acead898ee98ca46bc9946d7338fa4630e719
Merge: e274271 34655f6
Author: Roeland Jansen <[email protected]>
Date: Wed Apr 19 07:36:20 2023 +0200
Merge branch 'multi-usb'
commit e274271820f4562423a6cd89bfaa6033b9a4e609
Author: Phil Taylor <[email protected]>
Date: Mon Apr 17 11:19:00 2023 +0100
Add support for IC-905
commit 34655f63488d4b998255c4dfa5a03f96939d5a67
Author: Phil Taylor <[email protected]>
Date: Sat Apr 15 21:13:43 2023 +0100
Allow user to select which LED is updated by the button.
commit 8ad74ac7f66e4f2201751f6590431324c88df720
Author: Phil Taylor <[email protected]>
Date: Sat Apr 15 20:13:20 2023 +0100
First step at improving LED support
commit 5d897c127a1f066753834dc718f7adff7c72cadd
Author: Phil Taylor <[email protected]>
Date: Sat Apr 15 11:34:41 2023 +0100
Make TX LED work on RC28
commit 3c90a9363b994240ec8f8b6417b5db31839c97e6
Author: Phil Taylor <[email protected]>
Date: Sat Apr 15 11:25:35 2023 +0100
Various fixes
commit c392874b3b58bd90196f47b936ea54ac38cbc95f
Author: Phil Taylor <[email protected]>
Date: Fri Apr 14 21:36:46 2023 +0100
Comment out RC28 LED for now.
commit 7b101d5ad4c03082c5bcc2f0ca0c17ad80722434
Author: Phil Taylor <[email protected]>
Date: Fri Apr 14 21:33:45 2023 +0100
Another attempt to fix for GCC
commit 6a2e2024ef1e7cb8ea1b6641f751ecff5a404445
Author: Phil Taylor <[email protected]>
Date: Fri Apr 14 21:03:15 2023 +0100
Fix compile error
commit d941c831f357f294d29b6a39421e82f71d3810d4
Author: Phil Taylor <[email protected]>
Date: Fri Apr 14 10:26:54 2023 +0100
Resize the controller display on tab change
commit f35ac25ad35ac3e3736caf9db15051e61f20c748
Author: Phil Taylor <[email protected]>
Date: Thu Apr 13 15:28:46 2023 +0100
Various other fixes
commit 58f38c17357661333218fe8202c069760c3a13ca
Author: Phil Taylor <[email protected]>
Date: Thu Apr 13 14:36:16 2023 +0100
Add RC28 LED Control to the features and disable controls that don't make sense
commit 59bc2077e4e931293ffe2a0f262d99d2e07157ea
Author: Phil Taylor <[email protected]>
Date: Thu Apr 13 14:02:43 2023 +0100
Replace + with | in keyboard shortcuts
commit 8b786c1821f80708a2726cd5369736d6f8ae8ca3
Author: Phil Taylor <[email protected]>
Date: Wed Apr 12 11:14:40 2023 +0100
Fix recursive calling of pageChanged()
commit 5ded2a0e79d88b4422bd782c6036f1effd72c089
Author: Phil Taylor <[email protected]>
Date: Wed Apr 12 10:24:00 2023 +0100
Some more fixes
commit c9300f4d865968d017626c3617350965e01ad465
Author: M0VSE <[email protected]>
Date: Tue Apr 11 20:25:29 2023 +0100
Add linux USB hotplug
commit 1549819ad6890ec2a554575eddfe6caf3454cd94
Author: Roeland Jansen <[email protected]>
Date: Tue Apr 11 19:17:11 2023 +0200
Fedora 36 instr. added 2023-04-11/Knud OZ1DGN
commit 4874d70215b19bd8a4c6e14618b2a04e051030ce
Author: M0VSE <[email protected]>
Date: Mon Apr 10 13:46:29 2023 +0100
Fix linux compile
commit d5f0e0f63c37eced89c70fc2bd65fbaddfa53434
Author: Phil Taylor <[email protected]>
Date: Sun Apr 9 23:53:51 2023 +0100
Lots more features and other fixes
commit 1da3696ba23ce5593c864beb365df23fa493aba0
Merge: a0f3f7d 289170e
Author: Phil Taylor <[email protected]>
Date: Mon Apr 3 14:31:48 2023 +0100
Merge branch 'tristate' into multi-usb
commit 289170e22d8e1a0a8e09ad8000f8fc24126c5fb1
Author: Phil Taylor <[email protected]>
Date: Sun Apr 2 21:11:14 2023 +0100
Enable wf by default
commit ae0271c7f90d80233a1f3f2a2fce3116b12b34cc
Author: Phil Taylor <[email protected]>
Date: Sun Apr 2 21:09:37 2023 +0100
Use tristate checkbox for Scope enable/disable (also add saving state)
commit a0f3f7de07da006799cdbff86251ee7f8d29a739
Author: Phil Taylor <[email protected]>
Date: Sun Apr 2 20:07:13 2023 +0100
More work, tidying and improving stablity
commit 0304ac67f6a928624b1dd3850bab75525c4cbc9f
Author: Phil Taylor <[email protected]>
Date: Wed Mar 29 23:33:18 2023 +0100
Add backup/restore of button config
commit 468cd2de0d716238fbb3f0f558a7e98f5b05ac6d
Author: Phil Taylor <[email protected]>
Date: Tue Mar 28 21:58:46 2023 +0100
Add various commands, monitor, NB, NR etc.
commit 592c583d19aef88941c039d7fa3df0e727f8b363
Author: Phil Taylor <[email protected]>
Date: Tue Mar 28 19:07:54 2023 +0100
Add USB hotplug support in Windows
commit cadf835d958050be5f7b58074c0e9f5f27cb065d
Author: Phil Taylor <[email protected]>
Date: Mon Mar 27 12:38:01 2023 +0100
Receive current knob values from rig
commit 75288b5e7826ca05fc32263163d03334ada1d29d
Author: Phil Taylor <[email protected]>
Date: Sun Mar 26 23:23:40 2023 +0100
Allow storing of icons and various other fixes
commit 6fd0d4e76310794a5b5a19d93bfcd3f890eb0ea0
Author: Phil Taylor <[email protected]>
Date: Sun Mar 26 16:08:53 2023 +0100
various other fixes and stability improvements
commit 03c45663dcc9c9b7eb2246d93ce0329c779b0d3b
Author: Phil Taylor <[email protected]>
Date: Sat Mar 25 16:58:28 2023 +0000
Fix crash when clicking on a knob.
commit ac582891886fd1706f0bf217a7b3b1e0d06bc20a
Author: Phil Taylor <[email protected]>
Date: Sat Mar 25 09:09:42 2023 +0000
Initial support for Stream Deck Pro (other Stream Deck support to follow)
commit d7ba3d9d9ac7f47709ba52c20bbce54b2ff920f1
Author: Phil Taylor <[email protected]>
Date: Tue Mar 21 15:37:57 2023 +0000
Fix for wrong VFO being set on haveBandStackReg
commit d1688a99c5207cacdc6f6d1025d36c8664afe58d
Author: Phil Taylor <[email protected]>
Date: Tue Mar 21 13:24:48 2023 +0000
Fix controller setup window resizing
commit a74f68d9d410f8531ec59fc19941c4626eccd758
Author: Phil Taylor <[email protected]>
Date: Tue Mar 21 13:17:35 2023 +0000
Various fixes
commit f663550da77131ea8b70438d8c022114197752a6
Author: Phil Taylor <[email protected]>
Date: Mon Mar 20 15:37:11 2023 +0000
Set tab name correctly
commit 9d63c5cb71ba226e1e0d6f92c18c4cb17b3271ff
Author: M0VSE <[email protected]>
Date: Mon Mar 20 15:32:04 2023 +0000
Fix window issue in linux
commit eb65ae0b1ce8a190c734f62e803d5a6e0e108034
Author: Phil Taylor <[email protected]>
Date: Sat Mar 18 16:38:24 2023 +0000
Various fixes
Improve UI handling, add disable option
commit 898d5960d8525184efc89bb4f26ce65c4e14c88d
Author: Phil Taylor <[email protected]>
Date: Sat Mar 18 01:34:40 2023 +0000
Allow main knob to be used for other values than VFO
commit a461babf73f156c08b83b9160098fb8f2a34f9ce
Author: Phil Taylor <[email protected]>
Date: Sat Mar 18 00:17:33 2023 +0000
Fix warning
commit 792fac11d67328d1443e591b25d4d70f96db12ef
Author: Phil Taylor <[email protected]>
Date: Fri Mar 17 23:35:40 2023 +0000
Support multiple USB controllers
commit f3a25fade42ad6b99bbb3de033ccbfd6c40d86dc
Author: Phil Taylor <[email protected]>
Date: Sun Mar 12 18:25:17 2023 +0000
Remove unnecessary stepType setting from cwsender.ui
commit 3fa14ebc37c4e6c2f9d5fba47103e293e0a96d51
Author: Roeland Jansen <[email protected]>
Date: Sun Mar 12 12:44:46 2023 +0100
v1.62 released; performance fix 9700 and cw sidetone
commit 6049e1dee67e981625652b43492f1f2f6c8edac1
Merge: e8ca39c 5328838
Author: Roeland Jansen <[email protected]>
Date: Sun Mar 12 12:34:47 2023 +0100
Merge branch 'sidetone'
commit e8ca39ca18981c3bf1bb3e888efdc3b4b9ed9489
Author: Roeland Jansen <[email protected]>
Date: Fri Mar 10 08:19:03 2023 +0100
fixes the dreaded connection timeouts some 9700 users have
commit 48a9710c118dfe0d154706180bfd2d22ca542dec
Author: Phil Taylor <[email protected]>
Date: Thu Mar 9 17:47:52 2023 +0000
Add improved connection timeout for IC9700
commit 5328838c7399c943d8ac4556c8071157c38d267c
Author: Phil Taylor <[email protected]>
Date: Tue Feb 21 11:46:14 2023 +0000
better control of rapid commands when mode changes
commit 87a261be1220bc2e3908d274b77ce961912e6f90
Author: Phil Taylor <[email protected]>
Date: Tue Feb 21 11:11:55 2023 +0000
Move periodic pbt/passband to rapid queue
commit b738a38cbe1f2bce23088946898aab01b5470e8e
Author: Phil Taylor <[email protected]>
Date: Tue Feb 21 10:53:58 2023 +0000
fix compile warnings from rigctl
commit b2af4c898efbd2475ebcb72294b7067f886e4fc6
Merge: 7901ceb cf4e872
Author: Phil Taylor <[email protected]>
Date: Tue Feb 21 10:48:01 2023 +0000
Merge branch 'master' into sidetone
commit cf4e872e4ff9c68095017ab0159d3aaec4a4da3f
Merge: 37c3040 5b9a5ba
Author: Phil Taylor <[email protected]>
Date: Mon Feb 20 22:20:14 2023 +0000
Merge branch 'master' of https://gitlab.com/eliggett/wfview
commit 37c30404d81c2550ce0ce7552126a9f747e791c8
Author: Phil Taylor <[email protected]>
Date: Mon Feb 20 22:19:55 2023 +0000
Fix for shuttle detection on Linux
commit 5b9a5baaa1ee704220fe63f100a362a6f13e79d0
Author: Phil Taylor <[email protected]>
Date: Mon Feb 20 18:26:22 2023 +0000
Add printsupport back
commit fc0bd2232dedf95705a04d7834a95cc27d00fa98
Author: Roeland Jansen <[email protected]>
Date: Mon Feb 20 19:24:44 2023 +0100
changelog updated after rigctld-fixes
commit 2186a74490d6d62ee5581ba9956aac7e738f9791
Author: Phil Taylor <[email protected]>
Date: Mon Feb 20 13:05:23 2023 +0000
Minor change to p and P commands in rigctld
commit b9288175bd67df8609996ba008268514c80515c1
Author: Phil Taylor <[email protected]>
Date: Mon Feb 20 12:43:26 2023 +0000
Add remaining rigctld commands (mainly unimplemented)
commit 7901ceba79e4e28fddeaa134e213dc756173f747
Author: Phil Taylor <[email protected]>
Date: Mon Feb 20 12:43:26 2023 +0000
Add remaining rigctld commands (mainly unimplemented)
commit e49eb2878e941f52e6f75f97888ae09fd20c0791
Author: Phil Taylor <[email protected]>
Date: Mon Feb 20 11:48:53 2023 +0000
Rearrange signals
commit c8b97e895286f1143c65e4e5c89d65185ed31304
Author: Phil Taylor <[email protected]>
Date: Mon Feb 20 10:34:21 2023 +0000
Emit finished() if sending is stopped prematurely
commit a6b1bce69eb4e196a815749dbb46bc0f67b4487a
Author: Phil Taylor <[email protected]>
Date: Mon Feb 20 10:31:09 2023 +0000
Disconnect signals when not in use
commit e6644cdc1116e0ae22ca7464111ba26cf3ff96b7
Author: Phil Taylor <[email protected]>
Date: Sat Feb 18 15:14:05 2023 +0000
Update cwsidetone.cpp
commit fe0fc0a5bb8f611004cdc3a8dac724e53276e309
Author: Phil Taylor <[email protected]>
Date: Sat Feb 18 15:13:05 2023 +0000
Compile issue
commit 5fb9588c4aee25d18a6b3bb2e644c2558020dc28
Author: Phil Taylor <[email protected]>
Date: Sat Feb 18 14:25:36 2023 +0000
Bit more tidying
commit 62f923d8ad38f4823d62569df71d8726c01616cd
Author: Phil Taylor <[email protected]>
Date: Sat Feb 18 13:18:42 2023 +0000
Add support for push audio and various other fixes
commit 9f97df0ea5ea01d032c264619bbd929e122346b8
Author: Phil Taylor <[email protected]>
Date: Sat Feb 18 11:03:13 2023 +0000
Make generateData more readable
commit ed1e8c3a8e87e2811639c5f4d989530c49890c10
Author: Phil Taylor <[email protected]>
Date: Fri Feb 17 23:57:53 2023 +0000
Add message stacking
commit acec37ea17161ff0a7e6c30e5fcf0997f5217ed1
Author: Phil Taylor <[email protected]>
Date: Fri Feb 17 23:21:29 2023 +0000
Improve timing
commit 428ea9156c03d85abe9fdb88d514e6e8601785f9
Author: Phil Taylor <[email protected]>
Date: Fri Feb 17 18:08:44 2023 +0000
Change way we set sidetone volume
commit 18254cad1006292e75c29c67e886fcb138efe7d0
Author: Phil Taylor <[email protected]>
Date: Fri Feb 17 17:56:10 2023 +0000
Log if write fails
commit 67685dc100affd1376085764c9f813044bf0b986
Author: Phil Taylor <[email protected]>
Date: Fri Feb 17 17:46:12 2023 +0000
Stop writing sidetone audio on error
commit 71fd70f78bb512c9b3118bd450f888c173752abf
Author: Phil Taylor <[email protected]>
Date: Fri Feb 17 17:26:21 2023 +0000
Sample type fixes
commit f9ca8e7e844d99fa14a8c36597ad454176a903cb
Author: Phil Taylor <[email protected]>
Date: Fri Feb 17 16:56:01 2023 +0000
Restart audio device if stopped/suspended
commit acaed4601e215b13766cd69f9f7805809cfa4150
Author: Phil Taylor <[email protected]>
Date: Fri Feb 17 16:49:19 2023 +0000
Hopefully fix audio.
commit 1177fa34198fbe5aac589242d99445d939593616
Author: Phil Taylor <[email protected]>
Date: Fri Feb 17 16:28:56 2023 +0000
Disable sidetone if unchecked
commit 97ed3f6f424494c4305588558a32e6b79a4e68ef
Author: Phil Taylor <[email protected]>
Date: Fri Feb 17 14:34:08 2023 +0000
Fix compile in linux
commit e594efdbbc9dd0e0e88eb4eb9d5a49a622a2fc83
Author: Phil Taylor <[email protected]>
Date: Fri Feb 17 14:30:22 2023 +0000
Try to stop crash if there is no default audio device
commit 3ce35500b9f3861f3aea00f2becbf3e43d861826
Author: Phil Taylor <[email protected]>
Date: Fri Feb 17 14:01:09 2023 +0000
Fix Qt5 compile (hopefully)
commit 9eb89a9cb1279ee7e8badeba0230fce19baf77d6
Author: Phil Taylor <[email protected]>
Date: Fri Feb 17 13:58:02 2023 +0000
First working cw sidetone
Still needs better timing and volume
commit fd6d132fd3616f6681b1924f9b46dcdd69b1aaba
Author: Phil Taylor <[email protected]>
Date: Tue Feb 14 20:27:32 2023 +0000
Various fixes
commit 6f1d4e24b7676bebae425c778cae4085355cdb99
Merge: 8b7377f ce9e3e9
Author: Phil Taylor <[email protected]>
Date: Tue Feb 14 18:48:10 2023 +0000
Merge branch 'master' into sidetone
commit 8b7377f0960ff1b2936e4eccebd831312e673b56
Author: Phil Taylor <[email protected]>
Date: Tue Feb 14 18:47:32 2023 +0000
Add some feature in the hope of supporting sidetone
commit ce9e3e9f2cd8a343ab65d068904475126bfc8483
Author: Roeland Jansen <[email protected]>
Date: Tue Feb 14 16:10:38 2023 +0100
ecoder, collission-detection added
commit dd4770a85ff462913c223fcb1a9aeff65cce0a5d
Merge: 32e6622 3582c95
Author: Phil Taylor <[email protected]>
Date: Mon Feb 13 15:37:26 2023 +0000
Merge branch 'collision-detection' into ecoder
commit 32e662237bebcf46f337d173a195849f4d98ee7a
Author: Phil Taylor <[email protected]>
Date: Mon Feb 13 15:14:27 2023 +0000
Make ptt react correctly
commit 3582c95c58185a951ecb1b242bec974d835082df
Author: Phil Taylor <[email protected]>
Date: Sun Feb 12 23:14:39 2023 +0000
Fixes to collision detection.
commit da71bb3bc3d244a6d33307d180d8cc5f4069b7aa
Author: Phil Taylor <[email protected]>
Date: Sun Feb 12 23:14:51 2023 +0000
Remove debugging
commit 0397b4b68aab860bd1aa8ca9ab1a4ff0828b11df
Author: Phil Taylor <[email protected]>
Date: Sun Feb 12 23:14:39 2023 +0000
Fixes to collision detection.
commit feac83b997da6dfff3170813fa0b16150482d7fb
Author: Phil Taylor <[email protected]>
Date: Sat Feb 11 11:40:30 2023 +0000
Attempt at simple collision detection
commit 9afc661c4c52276fafb5b866f09e4d52024b5943
Author: Phil Taylor <[email protected]>
Date: Sun Feb 12 17:17:29 2023 +0000
Update usbcontroller.cpp
commit 6de14df1da5e2303c6c2b89e2b399ae3312657be
Author: Phil Taylor <[email protected]>
Date: Sun Feb 12 17:14:26 2023 +0000
Fix compile warnings
commit 7e89e9f457f2867bd2f5a00f2299281cd6100eef
Author: Phil Taylor <[email protected]>
Date: Sun Feb 12 16:45:21 2023 +0000
Add support for Xencelabs QuickKeys
commit 3cb54f9cd7c512ada7b63bc1507a4dee805f85e6
Author: Phil Taylor <[email protected]>
Date: Sat Feb 11 11:40:30 2023 +0000
Attempt at simple collision detection
commit 80838e4f82068a6e7ad042e06abc073626f4ad69
Author: Phil Taylor <[email protected]>
Date: Sat Feb 11 11:39:18 2023 +0000
Some more changes
commit 54c75d5defaff2014f96b8256d621f832b557211
Author: Phil Taylor <[email protected]>
Date: Fri Feb 10 18:52:51 2023 +0000
Multiply knob values * 10
commit 8b59efbf336bae5bae8d2f85ed4e94c2067bf492
Author: Phil Taylor <[email protected]>
Date: Fri Feb 10 18:40:11 2023 +0000
Another try
commit 9db06989279270b03f5d968c03015e4d249d6e49
Author: Phil Taylor <[email protected]>
Date: Fri Feb 10 18:26:34 2023 +0000
Quick test
commit 251239e445b2faf2f1ee5d4eae8668b522de5268
Author: Phil Taylor <[email protected]>
Date: Fri Feb 10 18:13:50 2023 +0000
Update usbcontroller.cpp
commit a3a82cd442a2a6a2fa428e99e9401d360996e9b1
Merge: 3461a0e 6e5e22a
Author: Phil Taylor <[email protected]>
Date: Fri Feb 10 18:11:42 2023 +0000
Merge branch 'master' into ecoder
commit 3461a0e5e51b68517561cbdfbedd19141725f7c6
Author: Phil Taylor <[email protected]>
Date: Fri Feb 10 18:10:32 2023 +0000
Correct usbMutex
commit 3429786e106f2c145c8987d5b4a39e63134a789b
Author: Phil Taylor <[email protected]>
Date: Fri Feb 10 15:51:01 2023 +0000
Reset knobValues to 0 after sending
commit c2e9100a40f4550fd51e312ac359034d8323f552
Author: Phil Taylor <[email protected]>
Date: Fri Feb 10 15:47:23 2023 +0000
Hopefully fix random buttons
commit c8a29bb40096de3fd4b77d7c7f218531a1372647
Author: Phil Taylor <[email protected]>
Date: Fri Feb 10 15:23:57 2023 +0000
Add mutex to ensure thread safety
commit fa47bfb4bc37fe96e0e602eabf8ed267342a9928
Author: Phil Taylor <[email protected]>
Date: Fri Feb 10 13:34:04 2023 +0000
Update usbcontroller.cpp
commit 82425b445e21a6ef1381a39d10c666cc4910e082
Author: Phil Taylor <[email protected]>
Date: Fri Feb 10 13:28:09 2023 +0000
Try again
commit 7aa75466600a50578e335ae5f47c8ef257382596
Author: Phil Taylor <[email protected]>
Date: Fri Feb 10 09:52:51 2023 +0000
More work on knobs
commit 4e61a455b5cf7f9679d7182c494c8ea2b6156b81
Author: Phil Taylor <[email protected]>
Date: Fri Feb 10 00:31:12 2023 +0000
Hide setup screen if disabled
commit cad3bb9418020ff9583d25d688b397afd88f6fea
Author: Phil Taylor <[email protected]>
Date: Fri Feb 10 00:27:01 2023 +0000
Various (I hope) improvements!
commit 1f1800f046a32a969c17d1d48d2dd826ffc4081e
Author: Phil Taylor <[email protected]>
Date: Thu Feb 9 18:43:42 2023 +0000
Flip bits in knob command
commit 5ed380c03d792de91ba15a14549b46ca8d8cabca
Author: Phil Taylor <[email protected]>
Date: Thu Feb 9 18:35:07 2023 +0000
Remove debug setup
commit a8951813f5a69f17d044f8f723fc23702c0f7bc1
Author: Phil Taylor <[email protected]>
Date: Thu Feb 9 13:21:51 2023 +0000
Provisional support for knobs
commit 6e5e22a672e430d872eddb232bcc8491134dc13d
Author: Roeland Jansen <[email protected]>
Date: Wed Feb 8 19:00:44 2023 +0100
another compile fix
commit bbbfe38e0bfc5280e349049c126dcf2792c06b52
Author: Elliott Liggett <[email protected]>
Date: Wed Feb 8 08:26:36 2023 -0800
Very minor thing to help compiling with older hidapi.
commit 6a76efa368b9d0fa88d8ae3761229dbefcd25c87
Author: Roeland Jansen <[email protected]>
Date: Wed Feb 8 11:26:33 2023 +0100
compilation fixes
commit 17a65472646b1113da2c4b7dcccf3763f41d3085
Merge: cb339ed 0ff2551
Author: Phil Taylor <[email protected]>
Date: Wed Feb 8 10:15:16 2023 +0000
Merge branch 'master' into ecoder
commit 1515e135e5434ab7c334214ff10165e484536906
Author: Phil Taylor <[email protected]>
Date: Wed Feb 8 10:12:48 2023 +0000
Fix for old hidapi without version info.
commit 0ff2551026c7861ab1dc2194388ea3c5cbbfdf67
Author: Phil Taylor <[email protected]>
Date: Tue Feb 7 23:29:50 2023 +0000
Fix compile if controller disabled
commit cb339edc1f4881df29db1d4d9f93b38e8316aa8d
Author: Phil Taylor <[email protected]>
Date: Tue Feb 7 23:29:50 2023 +0000
Fix compile if controller disabled
commit f4a86ac02e5996d61bdddef0f69b4ce92b19a4de
Author: Phil Taylor <[email protected]>
Date: Tue Feb 7 23:05:42 2023 +0000
Add more buttons
commit b783f8057a8e1d4e85db4e89de14c059b22e8169
Author: Phil Taylor <[email protected]>
Date: Tue Feb 7 22:37:26 2023 +0000
tuning knob?
commit 10640381387bac9893122e9fd7a2530e52522e50
Author: Phil Taylor <[email protected]>
Date: Tue Feb 7 21:12:02 2023 +0000
Another try
commit dda3c8ee9d52855be21cfcf3288664bf52d7c8de
Author: Phil Taylor <[email protected]>
Date: Tue Feb 7 21:01:54 2023 +0000
Update usbcontroller.cpp
commit 63b8a356e85528ec8dbbbfc403a7d317e6e2705f
Author: Phil Taylor <[email protected]>
Date: Tue Feb 7 20:59:53 2023 +0000
Another try for buttons
commit 4fc37290e516e8507137b4f91084967749f22381
Author: Phil Taylor <[email protected]>
Date: Tue Feb 7 20:51:20 2023 +0000
try to fix ecoder buttons
commit 72e8bc6fa6903e6094de58084e96509f1b8f6f7c
Author: Phil Taylor <[email protected]>
Date: Tue Feb 7 20:32:46 2023 +0000
Remove debug code
commit 8a28a8976090f433c0822fc66d9aa01b107bc215
Author: Phil Taylor <[email protected]>
Date: Tue Feb 7 19:41:39 2023 +0000
Correct order!
commit 5298949f3a50ebb7fba6e265ba656a300679a2be
Author: Phil Taylor <[email protected]>
Date: Tue Feb 7 19:37:33 2023 +0000
Add support for ecoder buttons
commit 1e217bc5b82b43f63d75e3f3db4f6f8b29bcbeb2
Author: Phil Taylor <[email protected]>
Date: Tue Feb 7 19:02:05 2023 +0000
Some initial updates
commit fbea7f1a136f9f5e2b6b3cc599be14c344294fd7
Merge: b373685 32639c5
Author: Phil Taylor <[email protected]>
Date: Tue Feb 7 18:41:02 2023 +0000
Merge branch 'ecoderplus' into 'ecoder'
Ecoderplus
See merge request eliggett/wfview!17
commit 32639c5394409abb05b95c7d292c09d9bda375f3
Author: Dawid Szymanski - SQ6EMM/SN6M <[email protected]>
Date: Tue Feb 7 18:41:02 2023 +0000
Ecoderplus
commit b373685fd31f7d6cf21a117650a9bbdf17e5d107
Author: Roeland Jansen <[email protected]>
Date: Tue Feb 7 18:56:41 2023 +0100
v1.61
commit ea1fefc219017856df6bf3c1f79b596213c97403
Merge: 6e0ebcd 3d2c162
Author: Roeland Jansen <[email protected]>
Date: Tue Feb 7 18:52:37 2023 +0100
Merge branch 'wf-fix'
commit 3d2c16201be5fa6a92f2931cfad754cee48448a1
Author: Phil Taylor <[email protected]>
Date: Tue Feb 7 17:51:52 2023 +0000
Fix invalid scope data in combine mode
commit 6e0ebcdd5a109695ca95da5cb41bb13d6e08ac79
Author: Roeland Jansen <[email protected]>
Date: Tue Feb 7 18:20:18 2023 +0100
removed empty file
commit 2488d62f2e429e1607fc12966db8d4f03312ad7f
Author: Roeland Jansen <[email protected]>
Date: Tue Feb 7 18:17:57 2023 +0100
fixes stuff after 1.60 release
commit 40f49c56e7553ca907c533b5d0fe5f277a1420f3
Author: Phil Taylor <[email protected]>
Date: Tue Feb 7 17:11:53 2023 +0000
Try again
commit 529d1015409ee326e6bd81132f41e07bc34bc1dd
Author: Phil Taylor <[email protected]>
Date: Tue Feb 7 16:50:02 2023 +0000
Quick fix
commit 14a4b25e9740d39213c9036e9415751db7dc700a
Author: Phil Taylor <[email protected]>
Date: Tue Feb 7 15:22:22 2023 +0000
Add a comment about usb device types
commit 78fa2489634d1dcdecf27de05af0aa3f7a5f5538
Author: Phil Taylor <[email protected]>
Date: Tue Feb 7 14:49:17 2023 +0000
Slightly better way of defining USB device types
commit 7de515b70d58ce9f1775bd7b13c202029fce0a40
Author: Phil Taylor <[email protected]>
Date: Tue Feb 7 10:10:04 2023 +0000
Add spacer
commit 76694361b58d3f7312847e32e79e97feecd36a82
Author: Phil Taylor <[email protected]>
Date: Tue Feb 7 09:40:38 2023 +0000
Add small space above sensitivity slider
commit 0e28f288ff6e9349971466d453b7c447f971b46f
Author: Phil Taylor <[email protected]>
Date: Tue Feb 7 09:32:33 2023 +0000
Add sensitivity control to USB controllers.
commit b619be3e2a3b2ad66e6a2056fb73e7fdb0ca86be
Author: Phil Taylor <[email protected]>
Date: Mon Feb 6 19:54:52 2023 +0000
Another fix
commit 64c0007c78cbc4914d5a731654362596214ab8dc
Author: Phil Taylor <[email protected]>
Date: Mon Feb 6 19:51:30 2023 +0000
More USB fixes
commit b566a760ed0f252137c4703c4db01f8309c47563
Author: Phil Taylor <[email protected]>
Date: Mon Feb 6 18:50:49 2023 +0000
Add device path
commit 69afce7712101ed1d35981bfa0465a5119318c66
Author: Phil Taylor <[email protected]>
Date: Mon Feb 6 18:19:12 2023 +0000
Check hidapi version
commit 5654fa524e57f8c8462d4395a551e33768e5db4e
Author: Phil Taylor <[email protected]>
Date: Mon Feb 6 17:52:47 2023 +0000
More attempts to fix MacOS
commit 3d053c3c96312b3310583d1c0e3a87ce358cd4a8
Author: Phil Taylor <[email protected]>
Date: Mon Feb 6 15:54:35 2023 +0000
Require exclusive access for MacOS
commit 872c8aee302819b0aef9b333fce841db54be837f
Author: Phil Taylor <[email protected]>
Date: Mon Feb 6 15:48:04 2023 +0000
Update usbcontroller.cpp
commit e2d6101a530fb49863ecbc3773b2fe983f16454e
Author: Phil Taylor <[email protected]>
Date: Mon Feb 6 15:46:48 2023 +0000
Fic mac build
commit b35e1af185b2bd68eeb37d910aa1e0bbd9d0a89c
Author: Phil Taylor <[email protected]>
Date: Mon Feb 6 15:43:53 2023 +0000
Update usbcontroller.h
commit a60cb39483428a2ee54fe24391c8ff954a236ab9
Author: Phil Taylor <[email protected]>
Date: Mon Feb 6 15:33:59 2023 +0000
More improvements to device enumeration
commit 6464f28159ae2fb52fd6590974ba07b103ec3741
Merge: 7b7d21d 16eb459
Author: Phil Taylor <[email protected]>
Date: Mon Feb 6 15:03:19 2023 +0000
Merge branch 'master' into usb-macfix
commit 7b7d21d3a72e840ee61681495156f309fe2c86ed
Author: Phil Taylor <[email protected]>
Date: Mon Feb 6 15:02:48 2023 +0000
Improve USB device enumeration and fix for MacOS
commit 16eb4591eb767797125ea134de87cd1931536dbf
Author: Roeland Jansen <[email protected]>
Date: Mon Feb 6 10:45:08 2023 +0100
updated CHANGELOG
commit eae5b93f0e404fc15561ad310e39fd3be9d01ccf
Merge: 2128e6f 02c1dcd
Author: Roeland Jansen <[email protected]>
Date: Mon Feb 6 10:44:34 2023 +0100
Merge branch 'wsjtx-fix'
commit 02c1dcdb8b2abefe0e78bb53cea4c1e17914746a
Author: Phil Taylor <[email protected]>
Date: Sun Feb 5 21:58:49 2023 +0000
Request passband at startup
commit f4e772e1c7903e0d31492917a053e849da38236f
Author: Phil Taylor <[email protected]>
Date: Sun Feb 5 21:51:00 2023 +0000
Update wfmain.cpp
commit 4a3f8692b553ad3d5030cf04796fd9f08e966cf6
Author: Phil Taylor <[email protected]>
Date: Sun Feb 5 21:50:24 2023 +0000
Update rigState on receipt of new passband from rig.
commit 2ec62b6c807702fb96bc0a10eaa2614ec7bea5b4
Author: Phil Taylor <[email protected]>
Date: Sun Feb 5 21:43:51 2023 +0000
Make CRC hex
commit 01e01321d397ef812ceb5d2b2c5e97082d99268b
Author: Phil Taylor <[email protected]>
Date: Sun Feb 5 21:40:59 2023 +0000
This might cause a compile warning?
commit f0c8842c058c3481463e8b99e542302eaf96b7a5
Author: Phil Taylor <[email protected]>
Date: Sun Feb 5 21:33:02 2023 +0000
Actually send the response!
commit 979dffc1761c5e86821be46b2f16faf5db20c58a
Author: Phil Taylor <[email protected]>
Date: Sun Feb 5 21:28:24 2023 +0000
Add some more commands
commit 2128e6fc1080ea7c7a31597e5c23626f97dd4ae4
Merge: fd86efa 27ac972
Author: Phil Taylor <[email protected]>
Date: Sun Feb 5 20:15:42 2023 +0000
Merge branch 'wsjtx-fix' into pbt-color-picker
commit fd86efa4b90123882d45a2d86474f69784d35dcc
Author: Phil Taylor <[email protected]>
Date: Sun Feb 5 13:21:12 2023 +0000
Add color picker for PBT