-
Notifications
You must be signed in to change notification settings - Fork 29
/
ChangeLog
4527 lines (3624 loc) · 135 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
2022-06-23 dave-w1hkj <w1hkj@bellsouth.net>
19c12f097: Version 4.1.23
ce88da596: Deprecated code
5dd676f6b: Correct errors caused by commit 9c035e809b
4213bfaec: xmlrpc notch
bd2b4e0e1: audio alerts / monitor
e6da5c5ef: cw browser
c9a74fb13: nanoIO ptt
bf321f312: Signal browser
cea496b7a: cw via flrig
2e4a8517d: scripts
65a6da643: FSK via flrig / nanoIO
20a799a5a: INSTALL update
ee14f55cf: Version 4.1.22
a6415f6cb: Save/Restore AFC by mode
cc66d4bc7: Revert "APPLE PortAudio"
5196f8a20: Version 4.1.21
cc666964c: APPLE PortAudio
17c3cb1f3: Lion compilation
4f5fa6c71: IPC log report
55f971801: xmlrpc methods
929908c8b: CW h/w weight
2022-03-01 Greg Troxel <gdt@lexort.com>
ee24e4ddf: build m4 script
2022-02-26 dave-w1hkj <w1hkj@bellsouth.net>
609da6a24: trx fft
bb7fb9b31: dxcluster
08f627ab5: flrig poll
9fc6aab80: log macro
3b41124d3: flarq using fix
7a8690834: WinKeyer
ea5b9c1c1: RsID EOT
f9f49d160: using namespace std
7653576ad: CW/FSK
080f6d306: psk reporter
6fd1c4179: Documentation
ae5aea7aa: FFT Monitor update
dbe3622cc: CW multi-channel
daac9d2be: FSK keying
9ed9d3461: fmt debug file
c061a5783: PO translator recognition
2c65740a9: IFKP Avatar
16425a772: xmlrpc QSY
6649972a6: Mode Parameters
f3042689d: Documentation update
edb907267: MAPIT macro
799d376af: Polish translation update
7c38b8a35: KNWD cat keying
49e404d93: synop event reporting
44553d121: MacOS Lion seg fault
feddecc77: Version 4.1.20
fe8262fca: Cosmetic changes
0fdaa3870: xmlrpc id
8caa7f8e0: Gleam scheme
2021-07-24 Rik van Riel <riel@surriel.com>
0ecef62bf: Navtex modem
2021-07-22 dave-w1hkj <w1hkj@bellsouth.net>
f6e2ee4ff: cw tracking
984ab440b: Smeter Pwr_meter
5b038873c: My Callsign
e1cda4024: Contest fields
5c09ac9b8: gpio ptt
c38d1c153: Version 4.1.19
ecc64ee20: C-Media PTT support
8cdda8274: LNW macro tag
439cc2c9c: Notes
d396d4970: lower case tx
2021-05-01 John Phelps <kl4yfd@gmail.com>
59d790c76: Vestigial AFC fixes * Fix OFDM and 8PSK AFC jumping randomly to noise-signals
2021-04-26 Richard Shaw <hobbes1069@gmail.com>
f250faf63: Win Install Directory
2021-04-16 dave-w1hkj <w1hkj@bellsouth.net>
ea4702e33: Add OFDM modes for NBEMS * OFDM-500F for HF SSB - survives HF NVIS/long path - 4-carriers of 62.5-baud 4PSK = 250 bps - 1/2 rate K=15 FEC with 4sec interleaver * OFDM-750F for HF SSB - survives HF NVIS/long path - 3-carriers of 125-baud 8PSK = 562 bps - 1/2 rate K=13 FEC with 3.2sec interleaver * OFDM-2000F for HF-SSB/FM - 8 carriers of 125-baud 8PSK = 2000bps - 2/3 rate K=13 FEC with 3.2sec interleaver * OFDM-2000 for HF-SSB/FM - 4 carriers of 250-baud 8PSK = 3000bps - NO FEC, meant for line-of-sight * OFDM-3500 for FM 9600-port - 7 carriers of 250-baud 8PSK = 5250bps - NO FEC, meant for line-of-sight - Requires Signalink made-after 2018 connected to the 9600-jack * OFDM-2000F CPU-load fix - FEC of previous mode too heavy for some CPUs . Reduced to: K=11 FEC with 1600msec interleaver . Other mode parameters unchanged * Added Vestigial-carrier based AFC to OFDM modes - Increases robustness and tolerance to drift * OFDM 2000F hold - commented out OFDM 2000 and 2000F modes for bugfixes - OFDM 500F, 750F, and 3500 are complete
51af69688: Qso Party Cabrillo
9c035e809: cwid
2021-04-11 John Phelps <kl4yfd@gmail.com>
74d1cd8f1: Doxygen srcdoc fix * MBEDTLS breaks the cppcheck tool, bypass checking for now
2021-04-08 dave-w1hkj <w1hkj@bellsouth.net>
cf83705e0: Dxcluster freq
35667cdf7: Documentation update
c13011c61: Carat r/R
9b4e00b18: flrig cwio
8cb7d97db: WIN Build Errors
efbef1ede: Compiler warnings
8effebbf1: Set/Get Notch
5d6b5e9b9: PSK-modes fix false triggers of DCD-OFF * Certian character combinations were triggering DCD-OFF * DCD-OFF code now searches over 6-bit window * Prevents rare data-loss bug mid-transmission
b49bf27c9: mxe scripts
dfecfc6bc: FMT mod
01bcb4d1c: Tx Monitor Level
a0567d3dd: fh baud
5d6a04157: dxcluster
2021-03-02 David Freese <w1hkj@bellsouth.net>
aaddc690f: fmt
1313193ee: CW punctuation
e1dad479b: Win32 Serial Port
39b16627d: wf
44f415ef1: WF-only mode menu
e23e21d68: WX
6f4223492: Canada
187bd17bc: PulseAudio Server String
cd999dad8: macOS arm64 builds
6b9427333: Waterfall buttons
ebdc885e5: Audio Codec
c8a3df2ca: Version 4.1.18
41e8fe6cf: Debug text
21c65b649: WF fft controls
fa1821f8f: flarq build
8d4ae60e0: Exit processing
321e00098: Scheduled Macro
8c4658648: xmlrpc
1aaf5eff6: flarq debug
fdf43940e: Doc update
c38e4f374: Version 4.1.17
953b84e52: CW keying
ef2a9db96: N3FJP support
37d3598b3: Rx Monitor
039dff7e2: Contestia / Olivia
2020-11-16 Haris SV1GRB <sv1grb@gmail.com>
83358bf65: Greek translation
2020-11-13 David Freese <w1hkj@bellsouth.net>
77ba6c369: Version 4.1.16
1fee05952: Cty.dat
2020-11-13 Haris Andrianos <sv1grb@gmail.com>
fe08f4a30: Greek translation
2020-11-13 David Freese <w1hkj@bellsouth.net>
ab267f3a1: Globals
8abff85e7: fmt fixes
2d8ec5eef: fonts
ca234a1d4: view_cw
942838ddb: Canadian Provinces
54e316710: FreeBSD/nullptr
2d9245c0f: Navtex
a8ea4ce88: benchmark
2020-10-24 John Phelps <kl4yfd@gmail.com>
744f0f692: Phase and FEC quality display * Add phase-accuracy display for PSK modes (non-PSK31) * Added better FEC confidence code to THOR
87931775a: Add new platform optimizations
9bcfdb212: Updated Doxygen Sourcecode Docs * Now renders to SVG for graphics (doxygen 1.18) * Fixed scripts for Cppcheck 1.9 changes * Added auto-installer for packages on Debian-like systems * Improved main page: index.html
2020-10-19 David Freese <w1hkj@bellsouth.net>
824582cd3: PSK Reporter query
48c3a7df7: Logbook compile warning
c51bf0d31: Version 4.1.15
fb6be0c2d: Doxygen cleanup
2020-10-16 Richard Shaw <hobbes1069@gmail.com>
e76e55705: NULL / nullptr
4c7fcee25: c++17 fixes
396712d92: FSQ
136b67198: trx_mode
5e882d6c9: rigCAT
08630d6cc: MinGW
b4de51995: Fix warning about boundary issue.
2020-10-16 David Freese <w1hkj@bellsouth.net>
554e21b36: VUmeter
d670ccce4: documentation update
ab69c22f4: <@LOCK macro
c30b39305: Sound Card Record
8ef2bd201: fmt csv
bc14a38b2: W1AW-macros
98de9a656: xmlrpc memory leak
67dd7b42f: County Lists
685e4384c: fmt modem
2a1cef26f: xmlrpc rig timeout
75754d4fd: doc update
f1600c636: fmt-docs
06c2cebae: kml
b4575f656: DXCC lookup
df9a5978b: status locale
a8d02cda7: Level indicator
8915b0450: FeldHell
209741778: hamlib NET
cd7ec00ac: NanoIO
2020-08-27 Andreas Scholz <entwickelheini@users.sourceforge.net>
48cd15424: ADIF Conformity
2020-08-24 David Freese <w1hkj@bellsouth.net>
f0230a8b2: feld-hell font
e5b67ec7d: wf
2e90a584b: exit cleanup
2020-07-28 Kosta Arvanitis <karvanitis@hotmail.com>
4887da833: XmlRpc Exit
cba23e535: Macros
2020-07-25 Rik van Riel <riel@surriel.com>
f8a29a146: Navtex
2020-07-20 David Freese <w1hkj@bellsouth.net>
3c9d07f00: debug source
42557ed7a: cluster dupcheck
f38ba12b9: Version 4.1.14
018618b6c: fonts
35a0af45b: Navtex
a626371f2: Navigator
c37af9c93: hamlib
606684fdf: Build scripts
2adcc0184: localtime_r
2b5f464f1: Freq Analysis
0e1aa47fc: Field Day Logger
a984f7ad9: flarq update
85c25e27f: Sound Record
f952c0808: Freq Control
2020-06-17 Richard Shaw <hobbes1069@gmail.com>
c5ffb269c: MinGW64
2020-06-12 David Freese <w1hkj@bellsouth.net>
d9f379f4e: FSK HELL
b3f5f6b16: Cabrillo logs
ed7c443ec: sound.cxx warning
84f1f3679: SNDFILE
05000ef4b: Store/Recall
b70cc0b68: wefax
5a06abd08: Rx Monitor
2f17a64b4: Version 4.1.13
a09931a2e: doxygen
1caa2a467: wefax
c5060a315: cw prosign
5116d99bd: fedora 64 build
785e295ad: Debug Sources
2f4bad6e9: Analysis mode
a4845d914: README update
2e3d22390: Code cleanup
4bdb42cc8: fsq sounder
30af9e2d8: rx_extract
62cf2acff: Default event log level
4461003a0: Version 4.1.12
60fb347ef: TX auto RST-sent
21c86db27: CW/DTR/RTS
24c10fd93: wwv
a6dc3db26: File/Audio
ddeb2db19: Win10 Socket debug
375b4252c: trx testing
db57f4b4a: AFTER macro
ddfb5e61a: CWID button
7e970e8a7: Version 4.1.11
d11526ad6: cwio_morse
0b98acd88: Version 4.1.10
21bcf4e5f: MacOS
980c4fc7a: AWOL CW id button
da43e24cd: Macros
81261626a: RigCat config
1cc5d884c: CW 5 wpm
797f24382: audio alert
2020-02-28 John Gibbons <jcg66@case.edu>
e9a2ef2dd: analysis mode
2020-02-28 David Freese <w1hkj@bellsouth.net>
ece3e2486: flrig auto off
8cc4f134c: maclogger
43382303a: mkappbundle
db0427121: nanoIO
93b75e79d: start/stop transitions
f4dd622c5: CW DTR-RTS
f77503a87: Olivia 2 tones
f3ed9232e: Xmlrpc Xcvr
524e5f2b3: mp3
f754c087a: contestia cr
b9e0a9a7b: serial port
055d75602: Check Version
1a63b099d: Version 4.1.09
fcc49c526: Alert/Rx-monitor playback
74aab8a70: Dialog closure
88059a1d8: PO updates
eb96656be: config-dialog-mod
e7a384268: cw mods
b4224b822: MilliSleep
8c9b3ddbc: New Install
7c1d1bb25: Audio alerts disable
7afdab54b: Winkeyer
11f0c05cc: lotw mangled report files
f45e88de2: Analysis mode
96ea26f03: ARRL CW bulletins
2019-11-26 Harry McGavran Jr <w5pny@w5pny.com>
fb6bcd0d2: hamcall
2019-11-23 David Freese <w1hkj@bellsouth.net>
bf22efe03: RSID code assignments
5cdbb98ae: tree metaphor
38e58fd7c: OS X Bus 10 error
e0e70142b: Log ADIF export
7c48281e9: xmlrpc_rig
09ba2e6bf: Rx monitor
594ac028e: Display Logbook Datum
644296e5e: RTTY bell
93f9896e4: Combo Box behavior
c07d43517: cw prosigns
18b3260ae: MinGW mods
c05c8bbd5: CW International Chars
29d97e9c4: macros
70743d9c1: mp3
e282c9952: Xmt Audio file
9c07eb9e5: Alerts
de7b8c6ae: Data file update
42591fbc6: Wefax autosave
be3ac55aa: flrig freq/mode
2541779d9: Fltk 1.4.x
8dbac5ff2: Update check
618c6d2d2: WEFAX AFC
4d211e0c1: Version 4.1.08
0bf19e02e: Greek translation files
c5eb44d5b: Logbook
93f3320d7: xmlrpc <vector>
357df508e: Documentation
ddbaec17f: Raster init values
aaa08576a: Image transmit docs
2019-08-08 Diane Bruce <db@db.net>
55e96d18c: BSD soundcard
2019-08-07 David Freese <w1hkj@bellsouth.net>
7a55d6ddb: RsID squelch open time
fe19ac89f: N3FJP ACL
cf19801ac: Version 4.1.07
49a54ceba: FL_LOCK
a1a46b2c2: wf mods
20e427a98: Version 4.1.06
d2ff6783c: Documentation update
e7a984ae3: nanoIO
2e98f532e: FD server disconnect
f37b133c5: Calendar
1d3a06f83: Warnings etal
26a02ddeb: Version 4.1.05
a593ddbb8: LoTW fllog
1a42952e4: Modem macro
5a36610d1: Close Logbook
33177695b: eQSL
e5a9d81f3: Version 4.1.04
2019-06-07 Davide Gerhard IV3CVE <w1hkj@bellsouth.net>
e5b05e2a4: MacOS high-DPI
e25078f24: timeops
2019-06-07 David Freese <w1hkj@bellsouth.net>
2c03575b4: log server
d681ab54b: xmlrpc <vector>
99a4aa776: LoTW delivery
762fd869b: Apple kill button
83d115356: main dialog title
296295fe1: Warnings
5080d85e3: Contestia/Olivia
ea39851b6: Log reports
f7c376723: Documentation update
8d25f53d9: 7qp multi
867ded47b: n3fjp
ebab17a2b: wfonly controls
ef2d55e22: Read log debugging
2928a9b97: New Modem Macro
90b021222: DE QSO Party
843033b4b: Version 4.1.03
a6923d198: wf updates
377a7fa74: WinKeyer emulators
53a06da1e: New install macros
9a0124d6c: MACRO <MODEM:
807401e7c: OS X build
d3ea0ff0b: Version 4.1.02
917470551: notifier dialog
f5e73c96e: Xmlrpc Rig control
0b89ee15b: wfall only tests
c2dd5f802: waterfall process
2dcd58697: Language update
07f3b66c9: Documentation update
6fa7cb870: N3FJP ACL
791f08431: CQzone
467087551: trx_xmit_wfall_draw
933f6b8af: Log rotation
5c6d04eb7: Secure METAR
6b86a02b6: lgbook File:
2ca145a32: qrz malloc
15939397b: Rx Panel clicking
ef4ecf313: myCall
5224d09ce: QTE-QRB
7944d44a5: Olivia modes
6dfac3994: logbook-backups
43a4c749a: ARQ server
aeb0ff452: fllog eQSL/LoTW
d756b0664: XmlRpc Log Dup Check
db20208cc: flrig ptt
b01c3b640: DxCluster/N3FJP i/o
22735f4d2: eQSL / LoTW submission
a0bd33b22: mbedtls CFLAGS
590181b50: lookup call
c29f732f7: MODE export
582f98ba1: flarq socket
ef6456f79: eQSL export
7f6cd47db: Version check
f15f71c05: tod clock start
14c092dcc: ARQ socket i/o
4886d584d: analysis mode
04a2ef991: Version 4.1.01
1d4798c83: CW h/w ptt
ca3e77710: nanoIO
a943ae324: NAVTEX abort
ce586b89e: dup-check
57cc6eaf2: ADIF submode
96e1f0517: WF only bug fix
06c56b3ee: LotW
c5af7e000: Pedantic warnings
892336b78: SD counties
044dd29fa: QRZ.com
aeed471d8: SV1GRB test report
713bd52cc: Version 4.1.0
39a76e8b2: po update
79c67d37c: WWV doc
04e53b59a: Winkeyer FSK
b8ca88ef0: Contests
b197c75a7: arq-override
8572f3531: flmsg-dir
02c66eb48: contest-docs
9d85169aa: fldigi_def.xml
20e2c0218: socket_mods
e1c2d8052: Fltk 1.4 mod
5ffd6f5eb: wefax
fb1fd67c8: nanoIO
7d604b806: CW SOM table
4eec8f23b: flrig: macro
99b0a01a3: Audio adjust docs
84018bb84: Version check
146bd7e2f: feldhell
6b5c93a2f: C-11 fixes
ccbd52f40: nano FSK
ed6a7db5b: Mint-19/Mate
e9c0f2dcc: Signal Browser documentation
fbb0654fb: flrig seg fault
93de8bde3: Version 4.0.18
2fef9cbc1: CPS testing
aa757af72: ipv6 addressing
c62662cc9: MT63 centering
9460c00b7: fsq mods
5a7377f14: IFKP/THOR greyscale image
51e2829d2: Hamlib bug fix
58c6362aa: Tooltip
47d2c6c02: nanoIO
a25360319: THROB adif
f46cb9bbe: RigCAT dialog
7ebf1ccea: Version 4.0.17
a2b917250: flarq idtimer
d58b0b795: Greek language update
4c3ca8fe2: tmpfile
87cb7e142: xmlrpc cat string
4f72635aa: Modem start frequency
dc68d0235: Serial port discovery
55aa627f9: Log entries
2fea35453: flarq appdir
c480982b9: rx/tx
56553faa3: RTTY Quick pick
79aa5d6a1: quick pick rtty baud
d1f91ea05: Documentation Update
e4a5cec2e: CW/FSK I/O on start
a9df13f69: WinKey PTT
6de7360ce: Navigator
fa8e53e7e: nanoIO
202ad1245: Default Lighted Button
dfd1b0b34: ST/PR macro tags
490f68399: K2/K3/KX3 data modes
c39a88b20: Logbook read
6cb1e5a45: 8pskF
89ff7c8a2: fsq/ifkp audit logs
cd7e5029e: RTTY browser decode
bc5d04f1f: Version 4.0.16
c73419e36: wo seg fault
3cec9157a: 8psk lockup problem
45a899148: Miscellaneous menu
8ff1cd688: pskrep autostart
4a78b536e: OS X build script
487db9534: Grid Square Contest
8c36d5ff4: Logbook Export
2018-01-28 Haris Andrianos <sv1grb@gmail.com>
6c19a624d: Greek translation update
2018-01-24 David Freese <w1hkj@bellsouth.net>
dc384c6ad: Alert timeouts
af0412731: video
ce1e82f00: Version 4.0.15
e87f41ad0: ARQ server
5ab691499: Signal gain
b4adfd223: Version 4.0.14
f799522a1: linux shutdown
29593c8e5: remote logbook
4e87d16ac: ARQ exit seg fault
2018-01-09 Stelian Pop <stelian@popies.net>
e09d16704: WEFAX auto center behavior
be342208d: WEFAX phasing change button
2dee90e84: RTTY configure initializers
2018-01-07 David Freese <w1hkj@bellsouth.net>
a5e88afcd: File aging
f02815925: OS X shutdown
38b294a1d: PSK IMD
a7d67d8fe: Spectrum Display
daa6d4317: Warnings in sound.cxx
eb0caa457: OS X app paradigm
985e5ebe7: Version 4.0.13
4c5c168b8: Language Translation
13ef81d49: cw t/r - doc update
c4099e156: Spectrum Analyzer
2e7f681a6: TS990 tune feedback
43cc1b227: OS X CW
8d156c6e9: FSQ/IFKP clear tx panel
f62c96a5e: deadman
80f52a80b: Image transmit
fb4797bab: flrig race
1b0127654: CW Sweepstakes
5ef93f45b: CW no tx char
a044193e3: timeops
b2283c081: Version 4.0.12
abb522dbf: Farnsworth timing
408a01b3f: PSK sinc filter
8cfc154e0: ACL interface
792b15267: Text capture
dd2c8ef8f: OSX start process
0e85851e5: Version 4.0.11
3302f0d4a: Text Capture
35387dbb2: FreeBSD mod
6e94d54d0: Documentation update
e4abdbf29: PSK filter
cd36a4681: Audio Stream
5a9322f22: printf cleanup
e8651ed3d: CW Multichannel
89b520723: QSY multi
18a635ffa: Version 4.0.10
949ed873f: WX HamQth bug fix
0142116ad: win7 mingw build fixes
6ed0b70bb: wefax ui mods
c1c7ebfb8: wefax_map
170769139: auto start
1cd5f716b: Version 4.0.9
26a1f8cd1: doc update
cc95f0a16: clock_gettime
5d4008a20: spectrum display
6021e181e: Test Signal Dialog
ccd3a2e60: dxcluster fonts
08aa8f7af: smod
6c05fe969: Spot buffer
deb439283: Winkeyer clones
ee3d420da: PSK s/n imd
2017-07-25 Matt Roberts <matt@kk5jy.net>
ba2305c26: RX Text capture
2017-07-23 David Freese <w1hkj@bellsouth.net>
322958194: PSK viewer
60012f682: Version 4.0.8
38b65ea66: Executable pathname
2a3c38bbc: rigCAT metering
37d78b1ff: OS X autostart
0006904c8: RigCAT i/o
c0bf2f242: Doxygen build
6e4f04cd6: Analysis modem
c438ba69d: XMLRPC rx stream
2017-07-13 Matt Roberts KK5YJ <matt@kk5jy.net>
4a6e7ce15: RX text paste
2017-07-12 David Freese <iam_w1hkj@w1hkj.com>
ef36e76bf: FSQ triggers
851745139: FSQ image
3f183a276: Version 4.0.7
2f7b7b90e: SCU-17 ptt
9fc06d6fd: bindUDP
351feb4dd: Version 4.0.6
094ac3c2f: Documentation
171574967: flmsg alert
b3dd76d13: Time Macros
a3f27d283: Require PortAudio
be07d7e09: Version 4.0.5
254e71788: Documentation update
6164c26b7: TELNET timeout
8922c5d35: FD macros
b0928a083: N3FJP PTT
dcca1204b: Rx/Tx open/close
a49cf1872: xmlrpc configuration
36a7fcedd: FSQ macros
6aaec3400: Consistency check fail
7bcd89cbc: Audio Alerts
5f65d2e49: Restore defaults
a9346cd6d: cw variable squelch
8460fba4b: INSTALL/README/NEWS
c2c9f38de: CW Extended char set
ad8e33ead: County field
64b397faf: autostart on os x
43b37fe71: Rx Context Menu
3aea3cae6: Port Audio on Linux
f994b6a42: NEWS update
04199fa9e: Version 4.0.4
e71dcfbfc: LOG area controls
1da156254: CALL field size
dc9532c7f: CW QSY
8fab96305: Sound Card Output
240f52a5a: cw scanner
d40548a77: Version 4.0.3
2be82c9df: CW code update
a311139bc: OS X Wizard
7e552c49f: CW wait
ef1ab0eb8: Version 4.0.2
2017-04-14 keith bellairs <keith@bellairs.org>
7432793ee: Lotw Match
2017-04-13 David Freese <iam_w1hkj@w1hkj.com>
ed5850e99: flrigi bw synch
972397247: Clang 8.1.0
97024a9f9: Sound card
15491930f: Revert "wefax"
c85b75ebc: IFKP image processing
ef3974350: Macro Save
4396c43e8: CW end-of-transmit
2f1d7094b: Font Initialization
a1d4122a4: OS X socket connect
835d82364: Winkeyer exit process
476ff68ee: Version 4.0.1
f40e79d7c: Socket connect
370c7bfd4: Version 4.0.0
7efc9b2ec: OS X 10.12 build
ffd6f0985: STATION_CALLSIGN
f0f376375: Free BSD mods
b1636058e: Logbook mods
167f0641f: ru-po-update
535481286: Default Tx Audio
fac5963f8: remove sprintf
a9db86638: Documentation update
b52258175: n3fjp logger search
c565b0355: fopen -> fl_fopen
abd9554c6: 48 bar macro
5f5776c69: CW decoder
9c0f90671: DX cluster
016799a7d: Logbook support
b4e227ba3: WinKeyer
1fe26c146: fsq ifkp s/n computation
d576fd804: fltk version update
2a1a8c356: Macro Date Time Formats
2017-02-24 Keith Bellairs <keith@bellairs.org>
627eb31f8: lotw addition
2017-02-23 David Freese <iam_w1hkj@w1hkj.com>
050711035: THOR/IFKP Image transfers
2017-02-23 Giuseppe Ciaccio <giuseppe.ciaccio@unige.it>
95b51b6e3: OSS bug fix
2017-02-21 David Freese <iam_w1hkj@w1hkj.com>
f462dd755: ifkp s/n update
376f7f5a1: PSKMAIL PTT fault protection
bcec5aa70: Logbook File Handling
cbdea293a: n3fjp contest update
fccb4ebd2: fsq s/n update
1786a5eb2: README update
67bc122e7: Russian UTF-8 translation
9decf048b: Tooltips
2017-01-30 Jae Stutzman <k5jae@stutzman.net>
fef4e9352: Hamlib/RigCAT/XMLRPC Interface
2017-01-29 David Freese <iam_w1hkj@w1hkj.com>
42a7deac1: Version 3.23.21
880720b80: Documentation
228950fa7: Logbook update
35d74af79: kml auto_ptr deprecated
2042371cc: build flags
a3bc5e3ee: PSKMAIL beacon faults
5b970ccc1: N3FJP record rejections
c8444b7b7: Version 3.23.20
5c456322e: N3FJP Winter FD
3119c9297: FELD raster display
ca8daf3ce: ARQ PTT
2016-12-25 John Phelps <kl4yfd@gmail.com>
de339d750: NEW micro modes
2016-12-24 David Freese <iam_w1hkj@w1hkj.com>
1a8f98265: Socket connect
6219ac94f: pskreporter query
2eb94beb7: Version 3.23.19
0b3ad4a03: DX cluster improvements
e06d6f2ed: Text highlight
5dae2123c: N3FJP generic contest
51384c74e: Version 3.23.18
782204c03: DXcluster sort
73c2d1ea7: LoTW
dc9c1071a: Socket Connect State
328c2833e: Version 3.23.17
e0eaaefaa: dxcluster update
a81372aab: GPIO update
99b0d1bcf: LoTW documentation
214a7828c: Time Of Day Clock
839eb0fc2: FSQ Heard parser
3d1e29170: Version 3.23.16
df67d85f9: N3FJP rounding
dd5dc22f6: GPIO PTT
03b95b5e5: lotw/eqsl interface
360209bed: Resident help
4e905b663: ARQ Client vector
66a62fc1a: Rx Extract
0284f3049: Version 3.23.15
436c6f8ce: Translation file
153ae9a55: N3FJP command sequencing
300624a89: BARTG vice BART
0ac4bb39c: speed test
047626711: XP fault on failure
c4266493c: Default Logbook widget sizing
e58b039be: Mono / Stereo wav file
7cacca673: ARQ thread
2016-10-05 w1hkj <w1hkj@bellsouth.net>
2937696ad: N3FJP logged frequency
2016-10-04 David Freese <iam_w1hkj@w1hkj.com>
bdb408d77: update check
005f10af5: DX cluster
72d0f38e2: CQWW zone/state
914b60c77: Contest fields
79fa4c8d7: OSX Clang build
9db7e7b62: flrig default
ee5fab61b: Version 3.23.14
9e6e34a90: Documentation update
6c5ad4b4d: PSK IMD Emulator
e6980a645: Wave file
ff2265b24: trx inhibit
0fc2f5e10: Log Reports
01bd3674a: N3FJP application interface
ccbd5e884: Field Day
4fc8b1260: UTF8 file access
c6e1f297d: logbook merge
570d3bf17: Initialize Macros
d9d12f4a4: NOAA wx access
0552fc622: Revert "logbook read"
d74f88fb5: Version 3.23.13
f4988a290: flmsg auto start
efc46400c: Documentation Update
2016-08-06 Robert Stiles <kk5vd@yahoo.com>
0f237ba0c: KPSQL PSM
2016-08-06 David Freese <iam_w1hkj@w1hkj.com>
e6b174346: m4 updates
352006569: xmlrpc mod
fafaa7c6b: Main User Interface
360d6a202: fl_digi.cxx whitespace
bdb3afbd4: xmlrpc tx queue
33be65ff0: QRUNNER BUG FIX
f02228e91: logbook read
1f6d966c6: flrig xmlrpc client
4ddae1fb5: Title bar
9777cfaf9: Macro tag PUSH/POP
73ea18b98: G4 build warnings
e8e3b899d: winsock2 error flag
8f8d6beff: xmlrpc error warnings
302fca55b: Port Audio Index
988ee57c2: Squeeze Play
a9d3ec145: Documentation
8fa2f9208: FSQ allcall relay
2016-07-04 Kamal Mostafa <kamal@whence.com>
055a180e4: FTextTX: fix menu_cb default case behavior
93ca23774: status: fix override_data_io_enabled behavior
10eaf9df4: logbook: do not write empty string to ADIF
560941522: wefax
d43951eb3: fix warnings: misleading-indentation (no functional changes)
1ecf952a8: fix warning: unused variable 'call_file'
9e9139e97: fix warning: C11 requires spaces around string macro
0531e5cee: fix warning: format '%d' vs size_t
1e888d113: XmlRpc tm_mday fix
2016-06-22 David Freese <iam_w1hkj@w1hkj.com>
e88d6159c: Version 3.23.12
fa831b22d: xmlrpc add_tx
177a8f1f1: mfsk xmt filter
2b5755689: FSQ msg append
de187d904: FSQ IFKP heard lists
76cf0e6ca: waterfall group
5f762f058: thor image
8cd6f830a: RxID button
d13f4e192: Version 3.23.11
198f6452c: RxID color changes
b65722700: flmsg-arq autostart
c6ac0f156: Resize bug
3c7392ec8: Hell Raster Display
4841f1098: Exit processing
2016-05-29 Roman Bagiñski <sp4jeu@gmail.com>
274d50087: Polish translation update
2016-05-28 David Freese <iam_w1hkj@w1hkj.com>
9c959afcd: xmlrpc add tx text
01245fe7b: Native Select Save-As dialogs
2016-05-26 Robert Stiles <kk5vd@yahoo.com>
520928643: FLDIGI User Manual Update
4b2005e7f: KISS IO Bug fixes/Additions and C++11 Test
2016-05-23 David Freese <iam_w1hkj@w1hkj.com>
52505ee64: Version 3.23.10
e14bbb60a: logger
19e7bad77: Restore focus
0a99bef13: RsID button
aa6592c59: flmsg interface
5b367fb63: 4bars
b4b8df4ac: ASCII ctl chars
759e6cfb0: Suppress dockable macros
065ead7de: Packet Prep
2016-04-13 Edouard Lafargue W6ELA <edouard@lafargue.name>
505c8b384: Portaudio Mono
2016-04-13 David Freese <iam_w1hkj@w1hkj.com>
68d9b3228: FSQ message files
2016-04-12 Robert Stiles <kk5vd@yahoo.com>
4ab48d41e: KISS, 8PSK, FLARQ icon Modifications
2016-04-12 David Freese <iam_w1hkj@w1hkj.com>
76ab77cd0: FLARQ
9c04f0787: focus behavior
2a3f4d4a1: PTT delays
8446e6e1c: Version 3.23.09
fc97b4af8: FSQ variable Rx
58b394025: Export ADIF_NAME
91ddd6c99: WF only
92c3c3681: DnD Image
0ebcc2a98: Frequencies2 use string
20ac527b9: Documentation
8eb05e63d: View noise
7cd0d8d52: About
9ed6cc333: NAVTEX update
2016-03-07 Kamal Mostafa <kamal@whence.com>
6da8d51d6: Sanitize tile_x, tile_y startup values
2016-03-05 David Freese <iam_w1hkj@w1hkj.com>
b1d12b844: RxID enhancement
f7662dfa8: TX timer
4e055b4da: rigcat mod
4c9f1404c: PSK IMD
4fec33397: Version 3.23.08
2016-02-21 Rik van Riel <riel@surriel.com>
f80745e5f: NAVTEX update
2016-02-16 David Freese <iam_w1hkj@w1hkj.com>
5b2edad9f: Save Logbook
1c8e0e95c: Analysis mode
0f650e9cc: flrig PTT
106e3e2a6: flrig waiting
71fa2248c: COM port close
dd1165a36: fsq repeat last
fb0fd4ce4: Mac Logger
2016-02-04 Jonathan Wakely <redi@users.sf.net>
813b58ad0: GCC 6 build
2016-02-01 David Freese <iam_w1hkj@w1hkj.com>
d8089777f: CALL capture
bea9cfe23: Scope View
8bcc9e84b: RigCAT modifications
ae9e1a2b4: Version 3.23.07
10266d2ec: Exit delays
e821e49c5: Contest fields
ebc00ed17: OS-X start_process
f5e3186dd: LOG RECORD exports
c0281eea3: HAMLIB CW RTTY
ddb084c59: PSKR metric
68c5a6a08: PSKR/8
397f57066: Audio adjust
42809036b: WEB query
8af53b665: Mode Set
e756d9355: Tab key docs
2fb5648f2: hamlib PTT_ON_DATA
22514a577: Macro Tool Bar
94f83626f: XmlRpc client update
265238703: Log Notes
e9e8b3650: Misc Updates
78baf6cde: Set Frequency
14a2618bf: Rx SaveAs
16ede0800: flrig xmlrpc
c986a766b: Version 3.23.06
3f577d977: WO woes
482d0606c: Smeter PWRmeter
e08e40375: ARQ shutdown
2015-11-20 John Phelps <kl4yfd@gmail.com>
0b5b329d9: Developer Doxygen and BerliOS clean - Cleaned and Fixed developer Doxygen files - Added GitStats to the Dev Doxygen info -- run ./scripts/doxygen/gen_doxygen_docs.sh
2015-11-20 David Freese <iam_w1hkj@w1hkj.com>
b19fff8d6: Documentation
55e0d31b8: Compiler warnings
c0a7cff11: Version 3.23.05
c86ec8033: dock macros
9b210f742: kml disable
2e2c9e90f: ADIF record repairs
93342e4dd: gpio ptt
d6a34a40f: NAVTEX/SYNOP/KML
2015-10-19 John Phelps <kl4yfd@gmail.com>
51535ff23: Add 8PSK 125FL 250FL
2015-10-15 David Freese <iam_w1hkj@w1hkj.com>
082564eec: Version 3.23.04
251635627: CW filter
7f23f3f54: Update Check
4862141aa: fsq abort
3bed0e3f2: log merge
4025e3c28: Version 3.23.03