forked from hexameron/dl-fldigi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
4097 lines (3080 loc) · 117 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
=Version 4.1.08=
2019-08-14 David Freese <[email protected]>
c5eb44d5b: Logbook
93f3320d7: xmlrpc <vector>
357df508e: Documentation
ddbaec17f: Raster init values
aaa08576a: Image transmit docs
2019-08-08 Diane Bruce <[email protected]>
55e96d18c: BSD soundcard
2019-08-07 David Freese <[email protected]>
7a55d6ddb: RsID squelch open time
fe19ac89f: N3FJP ACL
=Version 4.1.07=
49a54ceba: FL_LOCK
a1a46b2c2: wf mods
=Version 4.1.06=
d2ff6783c: Documentation update
e7a984ae3: nanoIO
2e98f532e: FD server disconnect
f37b133c5: Calendar
1d3a06f83: Warnings etal
=Version 4.1.05=
a593ddbb8: LoTW fllog
1a42952e4: Modem macro
5a36610d1: Close Logbook
33177695b: eQSL
=Version 4.1.04=
2019-06-07 Davide Gerhard IV3CVE <[email protected]>
e5b05e2a4: MacOS high-DPI
e25078f24: timeops
2019-06-07 David Freese <[email protected]>
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
=Version 4.1.03=
a6923d198: wf updates
377a7fa74: WinKeyer emulators
53a06da1e: New install macros
9a0124d6c: MACRO <MODEM:
807401e7c: OS X build
=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
f15f71c05: tod clock start
14c092dcc: ARQ socket i/o
4886d584d: analysis mode
=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
=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
146bd7e2f: feldhell
6b5c93a2f: C-11 fixes
ccbd52f40: nano FSK
ed6a7db5b: Mint-19/Mate
e9c0f2dcc: Signal Browser documentation
fbb0654fb: flrig seg fault
=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
=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
=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 <[email protected]>
6c19a624d: Greek translation update
2018-01-24 David Freese <[email protected]>
dc384c6ad: Alert timeouts
af0412731: video
=Version 4.0.15=
e87f41ad0: ARQ server
5ab691499: Signal gain
=Version 4.0.14=
f799522a1: linux shutdown
29593c8e5: remote logbook
4e87d16ac: ARQ exit seg fault
2018-01-09 Stelian Pop <[email protected]>
e09d16704: WEFAX auto center behavior
be342208d: WEFAX phasing change button
2dee90e84: RTTY configure initializers
2018-01-07 David Freese <[email protected]>
a5e88afcd: File aging
f02815925: OS X shutdown
38b294a1d: PSK IMD
a7d67d8fe: Spectrum Display
daa6d4317: Warnings in sound.cxx
eb0caa457: OS X app paradigm
=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
=Version 4.0.12=
abb522dbf: Farnsworth timing
408a01b3f: PSK sinc filter
8cfc154e0: ACL interface
792b15267: Text capture
dd2c8ef8f: OSX start process
=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
=Version 4.0.10=
949ed873f: WX HamQth bug fix
0142116ad: win7 mingw build fixes
6ed0b70bb: wefax ui mods
c1c7ebfb8: wefax_map
170769139: auto start
=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 <[email protected]>
ba2305c26: RX Text capture
2017-07-23 David Freese <[email protected]>
322958194: PSK viewer
=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 <[email protected]>
4a6e7ce15: RX text paste
2017-07-12 David Freese <[email protected]>
ef36e76bf: FSQ triggers
851745139: FSQ image
=Version 4.0.7=
2f7b7b90e: SCU-17 ptt
9fc06d6fd: bindUDP
=Version 4.0.6=
094ac3c2f: Documentation
171574967: flmsg alert
b3dd76d13: Time Macros
a3f27d283: Require PortAudio
=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
=Version 4.0.4=
e71dcfbfc: LOG area controls
1da156254: CALL field size
dc9532c7f: CW QSY
8fab96305: Sound Card Output
240f52a5a: cw scanner
=Version 4.0.3=
2be82c9df: CW code update
a311139bc: OS X Wizard
7e552c49f: CW wait
=Version 4.0.2=
2017-04-14 keith bellairs <[email protected]>
7432793ee: Lotw Match
2017-04-13 David Freese <[email protected]>
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
=Version 4.0.1=
f40e79d7c: Socket connect
=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 <[email protected]>
627eb31f8: lotw addition
2017-02-23 David Freese <[email protected]>
050711035: THOR/IFKP Image transfers
2017-02-23 Giuseppe Ciaccio <[email protected]>
95b51b6e3: OSS bug fix
2017-02-21 David Freese <[email protected]>
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 <[email protected]>
fef4e9352: Hamlib/RigCAT/XMLRPC Interface
=Version 3.23.21=
2017-01-23 David Freese <[email protected]>
880720b80: Documentation
228950fa7: Logbook update
35d74af79: kml auto_ptr deprecated
2042371cc: build flags
a3bc5e3ee: PSKMAIL beacon faults
5b970ccc1: N3FJP record rejections
=Version 3.23.20=
5c456322e: N3FJP Winter FD
3119c9297: FELD raster display
ca8daf3ce: ARQ PTT
2016-12-25 John Phelps <[email protected]>
de339d750: NEW micro modes
2016-12-24 David Freese <[email protected]>
1a8f98265: Socket connect
6219ac94f: pskreporter query
=Version 3.23.19=
0b3ad4a03: DX cluster improvements
e06d6f2ed: Text highlight
5dae2123c: N3FJP generic contest
=Version 3.23.18=
782204c03: DXcluster sort
73c2d1ea7: LoTW
dc9c1071a: Socket Connect State
=Version 3.23.17=
e0eaaefaa: dxcluster update
a81372aab: GPIO update
99b0d1bcf: LoTW documentation
214a7828c: Time Of Day Clock
839eb0fc2: FSQ Heard parser
=Version 3.23.16=
df67d85f9: N3FJP rounding
dd5dc22f6: GPIO PTT
03b95b5e5: lotw/eqsl interface
360209bed: Resident help
4e905b663: ARQ Client vector
66a62fc1a: Rx Extract
=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 <[email protected]>
2937696ad: N3FJP logged frequency
2016-10-04 David Freese <[email protected]>
bdb408d77: update check
005f10af5: DX cluster
72d0f38e2: CQWW zone/state
914b60c77: Contest fields
79fa4c8d7: OSX Clang build
9db7e7b62: flrig default
=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"
=Version 3.23.13=
f4988a290: flmsg auto start
efc46400c: Documentation Update
2016-08-06 Robert Stiles <[email protected]>
0f237ba0c: KPSQL PSM
2016-08-06 David Freese <[email protected]>
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 <[email protected]>
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
=Version 3.23.12=
2016-06-21 David Freese <[email protected]>
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
=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 <[email protected]>
274d50087: Polish translation update
2016-05-28 David Freese <[email protected]>
9c959afcd: xmlrpc add tx text
01245fe7b: Native Select Save-As dialogs
2016-05-26 Robert Stiles <[email protected]>
520928643: FLDIGI User Manual Update
4b2005e7f: KISS IO Bug fixes/Additions and C++11 Test
=Version 3.23.10=
2016-05-23 David Freese <[email protected]>
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 <[email protected]>
505c8b384: Portaudio Mono
2016-04-13 David Freese <[email protected]>
68d9b3228: FSQ message files
2016-04-12 Robert Stiles <[email protected]>
4ab48d41e: KISS, 8PSK, FLARQ icon Modifications
2016-04-12 David Freese <[email protected]>
76ab77cd0: FLARQ
9c04f0787: focus behavior
2a3f4d4a1: PTT delays
=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 <[email protected]>
6da8d51d6: Sanitize tile_x, tile_y startup values
2016-03-05 David Freese <[email protected]>
b1d12b844: RxID enhancement
f7662dfa8: TX timer
4e055b4da: rigcat mod
4c9f1404c: PSK IMD
=Version 3.23.08=
2016-02-21 Rik van Riel <[email protected]>
f80745e5f: NAVTEX update
2016-02-16 David Freese <[email protected]>
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 <[email protected]>
813b58ad0: GCC 6 build
2016-02-01 David Freese <[email protected]>
d8089777f: CALL capture
bea9cfe23: Scope View
8bcc9e84b: RigCAT modifications
=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
=Version 3.23.06=
3f577d977: WO woes
482d0606c: Smeter PWRmeter
e08e40375: ARQ shutdown
2015-11-20 John Phelps <[email protected]>
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 <[email protected]>
b19fff8d6: Documentation
55e0d31b8: Compiler warnings
=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 <[email protected]>
51535ff23: Add 8PSK 125FL 250FL
=Version 3.23.04=
2015-10-15 David Freese <[email protected]>
251635627: CW filter
7f23f3f54: Update Check
4862141aa: fsq abort
3bed0e3f2: log merge
=Version 3.23.03=
551d10556: thor-image
c3b610bb5: FSQ trigger bug
=Version 3.23.02=
04247643e: fsq cqcqcq
198c5a01b: fsq sounder/heard-aging
dbb169be5: FSQ directive
d47b1e355: rigcat delayed startup
e6ebe7085: OS-X serial
2015-09-23 Kamal Mostafa <[email protected]>
f75b92a76: asciidoc timezone
=Version 3.23.01=
2015-09-22 David Freese <[email protected]>
8ad0a8b3f: WX configure
0caa5ea1e: PA debug
838e11237: WFALL-ONLY
f472a1764: Logbook read
7cb4c6665: ifkp avatar depth
ea189427d: IFKP image slant
=Version 3.23.00=
f78aa389a: Clear Tx Panel
cbff7c3f1: Olivia/Contestia start stop tones
37175e2ca: macro bug
3d6e0b916: FSQ updates
ed3b09d2b: ifkp modem
c82de8e39: MXE update
7b42e019e: Macros
0606d1a34: Doxygen help
d4b6308ab: QSO rec
2df24b8f6: MS Read logbook
30ad2a95c: WEFAX hang on INFO
670479756: Nu opBW combos
db696170c: LSB modes
=Version 3.22.13=
7bdf051c3: FSQ bug fix
93196764e: XMLRPC commands
=Version 3.22.12=
1579ef60c: FSQ heard parser
f61f7d7cc: fsq modem
dfb931831: FreqControl focus
e477621cf: trx exit
=Version 3.22.11=
7d881bf76: flrig xmlrpc update
2015-06-07 Kamal Mostafa <[email protected]>
40a6dcbaa: BUILD_{DATE,USER,HOST}
=Version 3.22.10=
2015-06-01 David Freese <[email protected]>
dfc430ff3: FTextView styles bug
=Version 3.22.09=
2015-05-28 Kamal Mostafa <[email protected]>
dac5bf4dd: Fl_Text_Display
2015-04-28 David Freese <[email protected]>
c34a613d7: Cabrillo/Export dialogs
=Version 3.22.08=
2bda963bb: Analysis
967e7c553: rx/tx queues
b5aa6a3e0: flxmlrpc
2015-04-16 Dave Freese <[email protected]>
28839d70a: call focus
2015-04-14 David Freese <[email protected]>
a4d4faabd: 599 update
41beca007: US units
91ab73f91: olivia cxx
a45006dad: fldigi-shell
ee1966873: Write log
8d4f0efaa: Config dialog
=Version 3.22.07=
b78b683e5: Macro edit
06515a896: Multi-psk
ae560e7b3: Vista SignaLink driver
c79bfd73c: Image update
3c264e286: Command line
68f88eed6: SSB default signal
5ca7182bb: Digiscope resize
b522d833c: FSF address
=Version 3.22.06=
2015-03-21 Robert Stiles <[email protected]>
fe27da926: UTF-8 Rx display
2015-03-21 David Freese <[email protected]>
15ca51252: 8psk modes
e48c2fe5d: Macro Editor Fonts
2424904ee: R-L channel input
e5148c0be: QSY documentation
f2198122e: Sound File Generate
35ef2ed3f: devices_text mutex
2015-02-18 Robert Stiles <[email protected]>
aedc628d9: Bug fixes/Comments
cbc9975bd: Check IO and delay prior to autoexec prgs
003707f81: Rename local variables
2015-02-17 David Freese <[email protected]>
edee64aa4: pa names
4ba7b78b7: Main dialog resize
279115cf2: Rig Viewer Frame
3eb8e41d8: Code merge/PortAudio Script return error
b15f5d98b: Update translation files
31e231bee: Exit trx loop
2015-02-08 Robert Stiles <[email protected]>
1155d8d0c: Documentation Update
814bed31f: Configure Script Engine
2015-02-08 David Freese <[email protected]>
ad52857f2: Macros
fffc57c18: French po
375e98f65: CW QSK Tune
3ebf3dbb4: flrig xml client
423ac70ad: TimeOn button
3041a20c4: QSY clickable
=Version 3.22.05=
2c9b493ce: TX Lock
7c9582228: video ID
b93ea4ebc: fftfilt
ed4f49d70: Port audio index
645e7f9d4: CW output level
7cc119ddc: Documentation
93d2da8ae: MFSK squelch
9c8d5153d: Rx display
b1ac562a5: Log fields
d67d1ab13: Native file chooser
6d11c02a8: ADIF temp log
=Version 3.22.04=
2c3b965ef: xmlrpc
=Version 3.22.03=
d47ef8ab7: Berlios
b986d9d55: CW configuration
3ff230128: DTMF
0a8f4a3b7: FFT filter
3c7b69ef8: CW xmt filter
2014-12-17 Robert Stiles <[email protected]>
5dc3851b3: ARQ/KISS IO state conflict (part 2) * Ensure all state flags reflect selected mode. * Toggle IO mode in software.
2014-12-17 David Freese <[email protected]>
fa582c966: Window title
103c03915: Xmt Audio Stream
6947d3348: RX Text
0612ec9e5: OpenBSD
d344fac9d: LOGGER EXPORT
d5e257d37: Documentation