forked from ukhas/dl-fldigi
-
Notifications
You must be signed in to change notification settings - Fork 2
/
ChangeLog
3101 lines (2265 loc) · 88.6 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
2013-10-30 David Freese <[email protected]>
1cca53a: WF latency
=Version 3.21.77=
665f195: Load preferences
7dcfc50: Waterfall race condition
2013-10-22 John Phelps <[email protected]>
0b8143b: MFSK HF Long Modes * Added MFSK64L and MFSL128L new modes * 6.25 Second interleaver for very-robust HF reception * Assigned new RSIDs * Mode MFSK-64L : 1026 * Mode MFSK-128L : 1029
2013-10-20 David Freese <[email protected]>
e0d91cb: Waterfall improvements
2013-10-19 Remi Chateauneu <[email protected]>
1e39501: Fix test_process on MacOS
fb5c891: Various speed-ups, fixes and cleanups
2013-10-16 David Freese <[email protected]>
d56a7f4: Cfft removal
a322875: fldigi.pot update
adc6128: Multi-channel decode
267b914: fft filter
1bad52f: g_fft
9b62e1b3: WF fft
6d79e55: rsid fft
d600d02: Wefax Config tab
683b364: Autostart programs
bb91898: RsID Error Control
1eaba46: Macro tag Image
2013-09-17 Kamal Mostafa <[email protected]>
51ead20: Avoid-nitems-fltk-kfreebsd-collision.patch
2013-09-14 David Freese <[email protected]>
8159199: MFSKpic improvements
78d11dd: ADIF log database
dbabd63: MFSK update
3d400ae: Thor update
=Version 3.21.76=
e743f37: AMP end of text
e640b53: ARQ mode character set
e875d6e: RsID, Macro Queue, DTMF transmit management
e618ecf: Xmlrpc method signatures
6e8f57a: RsID fo computation
=Version 3.21.75=
30915e4: xmlrpcpp methods
7037ad6: RSID update
fce7654: Error exit
263f540: fltk 1.1.x
433ec86: Sound File
=Version 3.21.74=
d17f1b1: initialize active_modem
bdbaf78: XML parser
6fcf6bd: 64 bit compile warnings
1a870d9: Automake bug
=Version 3.21.73=
627bddc: qrunner mod
98b61eb: Pskmail-test
2013-07-24 John Phelps <[email protected]>
989a111: Doxygen for fldigi * Added scripts to generate Doxygen documentation from fldigi git repository / source * Also executes "cppcheck" and includes those results on Doxygen page (if installed on system) * Generates patches and log for the last 125 commits: includes links on Doxygen page
2013-07-24 David Freese <[email protected]>
86bb08b: CPPcheck errors
4a9724c: Modem class
3b9dff0: Rigcat Thread
55df4c7: Missing header
65640ca: fldigi-shell
59a9029: Fl::focus on OS X
edc0c9f: Data files
6794811: KML thread
fe82181: Fl::flush
59d9fbb: ADIF_RW thread
dfb6eaa: trx semaphore
35e8135: Digiscope buffer
2013-07-07 Robert Stiles <[email protected]>
c75ac9a: Portaudio exceptions
2013-07-07 David Freese <[email protected]>
18534e4: mxe-win32 regex
0f5ede7: PSKMAIL/ARQ socket
e624bc0: Thor update
07f9cb8: record_loader fix
6e16b41: Code cleanup
50c1c12: Pskmail Notify RsID
4b9c578: MFSK shut down
2013-06-27 Robert Stiles <[email protected]>
af5e09a: Cwidth test for zero
2013-06-21 David Freese <[email protected]>
b6ee3f7: XMLRPC
389c189: MXE compile
2013-06-19 Stefan Fendt <[email protected]>
dfc2bd8: RTTY decoder
2013-06-09 Dennis Engdahl <[email protected]>
7d62b22: RigCAT user commands
2013-06-08 David Freese <[email protected]>
3850862: TX state
9b26ff6: pskmail events
e12a373: * Changed extended rsid iaw doc/rsid_codes.gnumeric
2013-06-01 Remi Chateauneu <[email protected]>
982f335: KML/Synop/RTTY/Navtex
3bb70e4: Port to MXE / MingW
34b3baf: QSL VIA
6cd7017: XML parser
2013-05-31 David Freese <[email protected]>
2c9c73f: ARQ support changes
f8e26f3: xmlrpcpp
237cc8f: PortAudio
dc7173c: SysV ARQ interface
1ea46c6: METAR format
e1004fc: RSID logic
=Version 3.21.72=
a933da1: RsID Timeout
ff1d69a: PSKMAIL
531c40c: Colors/Fonts Dialog
8be3913: Developer List
=Version 3.21.71=
d9e2c6f: About update
603e6a7: Wavefile generate
4c7ffd7: MT63 mode selection
bae6d2c: ARQ server
2013-04-30 Remi Chateauneu <[email protected]>
9750f38: xmlrpc-c removal
2013-04-30 David Freese <[email protected]>
a2624eb: Signal Browser Colors
0bc251a: QRZ query
816aea5: Rigsupport
54708a2: PO file update
6b28784: eQSL url
acd5297: PSKMAIL
=Version 3.21.70=
ab4e0f2: Contestia/Olivia
45be148: Tabs Colors
2013-04-13 Arvo Järve <[email protected]>
89e1df1: Double Click bug fix
2013-04-12 David Freese <[email protected]>
efce800: RTTY update
e2b050e: Fltk backward compatibility
27e753e: Compiler warning fix
2013-04-11 Kamal Mostafa <[email protected]>
5f770be: Fix glob_t usage
2013-04-11 David Freese <[email protected]>
1e94067: Spotting
fc68397: ADIF case
=Version 3.21.69=
524864e: QSO NBR/NXT macro tag
303681e: TX lower case
69bab69: WX parser
6e5a68d: Signal Browser
2ecbeca: Compiler Warnings
5134b81: Free BSD mods
f794566: flstring
92ede71: RTTY filters
6e9a943: Serial by-id
5a2c244: RTTY tx symbol shaper
093796f: Misc NBEMS mods
2013-02-28 Arvo Järve <[email protected]>
b088667: CRC16 and ANSII char set
2013-02-27 David Freese <[email protected]>
c586219: High Speed Playback
0a9823d: RTTY config tab
2013-02-11 Arvo Järve ES1JA <[email protected]>
cd2fdd7: * Added BAND macro tag
2013-02-09 David Freese <[email protected]>
64f04d8: Dbl Click for Xchg In
a7f42b9: Status Reports
2013-02-09 Remi Chateauneu <[email protected]>
5d6d921: RTTY tx code
2013-02-09 David Freese <[email protected]>
163f1f6: RTTY no LF
=Version 3.21.68=
2013-02-08 Remi Chateauneu <[email protected]>
efe6687: RTTY bug fix
2013-02-07 David Freese <[email protected]>
2a6bfee: RTTY filters
48dcf51: Hang on start
72dd5f2: Analysis
55b76e9: rigMEM
be3dd1f: WF only ESC abort
2013-02-03 John Phelps <[email protected]>
4a8e3ca: WF only null pointer fix
2013-02-02 David Freese <[email protected]>
48ed1f0: RTTY config tab
f684b91: RTTY stop bits
=Version 3.21.67=
645acab: PSK viewer
63323a4: Contest fields
f3abd4c: RigCAT INIT/CLOSE
4af6dcd: Olivia FEC reset
0d4d55d: RTTY FSK modem
b8fd4db: Status / Tx Level Controls
=Version 3.21.66=
305fa6d: Thor reset
d2dea40: File Selector
f83a413: Macros
d12f7da: CW modem
282886b: User configurable items
=Version 3.21.65=
7680b05: High Speed / Multi-Carrier Modems
=Version 3.21.64=
2012-12-26 Makoto Fujiwara <[email protected]>
0322dc9: NetBSD compile error
2012-12-15 David Freese <[email protected]>
05b3ad0: Dup Cty lookup
b02da36: Get RX buffer
d52579b: Capture Alt-F4
=Version 3.21.63=
972865e: Macros LOG LNW EXEC
01ef002: ARQ Socket
261b7fb: Default char set
614a542: NBEMS.DIR
cb820ae: RTTY CR-CR-LF
de390ac: Control-V/Z
=Version 3.21.62=
fec0ead: Pause-break
2ca1bf7: WF-only-escape
326a75d: REPEAT Macro
44e6ae6: MT63 Long
=Version 3.21.61=
2012-11-08 Dave Freese (none) <dave@compaq>
c7f2918: ARQ server
2012-11-04 David Freese <[email protected]>
e388b7b: DistCheck cleanup
=Version 3.21.60=
a239363: FLTK-1.1.x
7bd9355: Libtiniconv
2012-10-31 John Phelps <[email protected]>
13fa1a0: Allow xmit of EOT character
=Version 3.21.59=
2012-10-29 Andrej Lajovic <[email protected]>
0c1f371: UTF-8 overhaul
2012-10-26 David Freese <[email protected]>
1d6469f: Thumbdrive
=Version 3.21.58=
6875022: Escape aborts
=Version 3.21.57=
d925c85: Escape aborts clean start
0366447: TLF arq
d85631b: Logbook Dialogs
=Version 3.21.56=
320fc54: ARQ rx/tx
=Version 3.21.55=
06e5ed5: View browser
1390d0b: FLAMP interface fix
=Version 3.21.54=
2012-10-04 Andrej Lajovic <[email protected]>
1abb9b9: UTF-8 wide characters
1b8cccd: flarq bug fix
bad1660: Add_tx_char
=Version 3.21.53=
2012-10-02 Kamal Mostafa <[email protected]>
199978a: Fix crash if no OSS mixer support
2012-10-02 David Freese <[email protected]>
a698359: Logbook Call width
2012-09-29 Andrej Lajovic <[email protected]>
a8a148f: Log file update
946bbb8: UTF-8 char echo
bab4a53: Hamlib sideband menu
=Version 3.21.52=
2012-09-21 David Freese <[email protected]>
f8a6e1c: ASCII table correction
=Version 3.21.51=
638a3c2: flmsg/flamp stream processing
8a41aad: DominoEX varicode
de95906: WRAP binary files
2012-08-31 Andrej Lajovic <[email protected]>
8fdb2ca: Backspaces patch
2012-08-31 Daniel F1RMB <[email protected]>
8d38260: UI enhancements
2012-08-31 David Freese <[email protected]>
29c9c6a: Combo update
a30ad34: Extract timeout
7286512: ASCII tables
e765c4e: Socket send on Linux
2012-08-07 Kamal Mostafa <[email protected]>
8ab2f6e: fix spelling error
2012-08-04 David Freese <[email protected]>
2f7de4d: Logbook dialog initial size
=Version 3.21.50=
5b175c1: RsID Multiple
2012-08-02 David J Vanecek <[email protected]>
eeaa755: Open BSD fixes
2012-07-12 David Freese <[email protected]>
e212c36: Restore post signal rsid
2012-07-08 Kamal Mostafa <[email protected]>
f45a09b: Tango icon: Restore missing weather_clear_icon
=Version 3.21.49=
2012-07-07 David Freese <[email protected]>
ba1ec30: RTTY metric
77bb7a1: Logbook Colors-Fonts
f2c18cb: RX Text backspace
=Version 3.21.48=
e94e2f2: HAMQTH Session ID
2012-06-29 Kamal Mostafa <[email protected]>
b8eb04c: Tango icon pixmaps update to version 0.8.90 (public domain)
=Version 3.21.47=
2012-06-29 David Freese <[email protected]>
e4a180a: RTTY ASCII
=Version 3.21.46=
ce90378: CW Farnsworth
ae08433: Merge log records
2012-06-26 Leonardo <[email protected]>
0ddb867: Wavefile playback
=Version 3.21.45=
2012-06-16 David Freese <[email protected]>
817f299: ANTENNA macro tag
a3f236a: fltk-1.1.10 compatibility
91ac4a9: APPLE about
=Version 3.21.44=
39cad15: Polish translation
25fcf8d: file-chooser
990492b: Main Panel Controls Colors-Fonts
bdacdd8: HamQTH
cdc22d6: WEFAX/NAVTEX config
c3162ed: Log Entries
cb392e4: Fork open file descriptors
2012-05-31 Remi Chateauneu <[email protected]>
a28eb60: WEFAX update
2012-05-31 David Freese <[email protected]>
81a9f43: Logbook Update
ed638a5: Navtex
=Version 3.21.43=
2012-05-30 Kamal Mostafa <[email protected]>
39998f7: Fix TX text clear after macro
2012-05-28 David Freese <[email protected]>
c7f11f4: CW decoder update
0c113b6: Rigio thread
2012-05-10 Remi Chateauneu <[email protected]>
967cc68: sfft speedup
=Version 3.21.42=
2012-04-08 David Freese <[email protected]>
1089250: Auto file directory
8bdd45e: Cmd line help
ccc4d5d: FreqControl paste
fc870d5: Base directory
e298249: psk comments
=Version 3.21.41=
1779db5: Check for updates
0d2e7c3: Notch indicator color
970b00d: ARQ Parse Mode
d4e5caa: Path separator
d7dfbdb: Debug changes
80d67e3: Clear sent text
815d27a: Control-Z fault
bd14450: Notch
d1defa3: EXEC macro
=Version 3.21.40=
3318229: Save Macro - Windows
2dc3120: About copyright date
=Version 3.21.39=
29ccdeb: Win7 Open Logbook
74da509: MFSK pic dnd
c2998df: Merge record logic error
24c470e: OSX Lion shutdown
b7ff115: Cyrillic-UTF8 chars
bf8046d: QSK test
1364186: Weather report
=Version 3.21.38=
9327490: Control sizing
df3bf09: eQSL
13b7107: OS X file chooser
5122c7b: Control key parsing
3c0bcd8: Control-shortcuts
b940e9c: WX international
=Version 3.21.37=
c4336b7: Macro filename
ba5b5d5: Callsign query
2af9ebc: WX Celsius
62d9f42: Weather tag
3fc748e: Inline tags
3ae8ee9: OS-X native file chooser
=Version 3.21.36=
5cc14a1: rigcat serial test
4c0526a: Macro load display
5cbed0c: File-dir selection
59e8dc9: Rx text wrap
2dfd6fd: UTF-8 rx suppress
c36983e: Get WX
22e1f8b: Update to fltk.m4
890013c: rigCAT closure
56104f4: GCC-4.7 fixes
e7ab7e2: Missing files
3b02bb3: RX last line
6e81738: Debug text
0f87d87: View browser find control
b6a8332: Rx text wrap
f1abc9e: Find chars fwd/back
6102e0c: Corner controls
2281325: Fltk-1.3.0
847fdd3: Rig cat close
672f4ee: OpBrowser font
5f8b712: Tune abort
=Version 3.21.35=
=Version 3.21.34=
a70c0fe: VAC PTT delay
62532af: Mono audio
a7f741b: VSP boolean
=Version 3.21.33=
a68d917: Right Channel audio
00d4308: WEFAX update
96188fa: WARN status colors
=Version 3.21.32=
422c0b1: Italian po file update
2011-12-03 Remi Chateauneu <[email protected]>
e7d5ccf: Modem class update
38112d8: QsoRec comparisons
2011-12-02 David Freese <[email protected]>
e707094: Cty.dat
6821e78: Contestia 64/1000
ff596a0: Call lookups
=Version 3.21.31=
dcbae1e: Spanish translation file
136bcc2: Compile warnings
7beb7c1: ver2int
8a7c4bf: Main thread hang
2f2fe0a: UI changes
=Version 3.21.30=
30951fb: Merge dups
ee4c5b4: Logbook dirty boolean
2335f76: Tx Attenuator Control
dfe3a7b: HamQTH app ident
=Version 3.21.29=
b97bbde: eQSL QTH nickname
2edfc77: Merge Logs
9de5095: ADIF i/o tweaks
77e1eb1: Call lookup
=Version 3.21.28=
ed74b9b: ADIF/EQSL thread shutdown
d3e47a3: Ignore slash postamble
9100837: Log Export by date
f6888ee: ADIF file integrity test
=Version 3.21.27=
a2184aa: Log r/w improvements
2011-11-15 Remi Chateauneu <[email protected]>
b3a89c7: WEFAX error logging fix
2011-11-15 David Freese <[email protected]>
9269c9a: Restore Log Sort
=Version 3.21.26=
ee27d64: eQSL update
=Version 3.21.25=
50fa414: guard lock
2011-11-12 Remi Chateauneu <[email protected]>
8baf07b: Wefax enhancements.
11d699e: Use Logbook record
2011-11-12 David Freese <[email protected]>
c2ba559: eQSL
=Version 3.21.24=
16fc289: Exec macro
0859928: QRZ on-line lookup
=Version 3.21.23=
047543a: HamQTH
2ffb4a5: Auto-send
=Version 3.21.22=
2011-10-28 Pavel Milanes Costa <[email protected]>
b66a4d7: es.po update
2011-10-28 David Freese <[email protected]>
269ae3a: RSID defaults
1b3e852: NBEMS-FLMSG Directories
=Version 3.21.21=
3163fd2: Resize fault
=Version 3.21.20=
fba599c: RSID limit fault
c32fa63: DTMF debug
=Version 3.21.19=
7046d49: HamQTH lookup
=Version 3.21.18=
1247488: REV macro tag
9c13f6f: RTTY bandwidth
=Version 3.21.17=
4ac5f6b: MFSK soft decode
07baee2: MACRO code cleanup
4d13cb4: <EXEC>...</EXEC>
=Version 3.21.16=
3e554f8: !Queue reset
8ac0558: Timer delay
=Version 3.21.15=
d0e1c5f: Log Menu Items
cebc292: Macro Editor
960e580: WWV xmt mode
bb258cd: Inline macro tags
d2c33e4: RTTY baud
ab472e0: CW/RTTY init fault
5a9607a: Control-Z bug fix
c565815: CW QSK
405816e: Log Server lookup
2011-09-04 Remi Chateauneu <[email protected]>
e0ee3a9: Added wefax::adjust_metric method.
261275e: modem::display_metric now sets the member modem::m
=Version 3.21.14=
2011-09-03 David Freese <[email protected]>
166fe59: DTMF decoder
49e2dd2: CW Prosign defaults
2011-08-30 Remi Chateauneu <[email protected]>
ff18562: Macros code cleanup
2011-08-30 David Freese <[email protected]>
74364ee: DTMF class
5af9f3a: DTMF encoder
39fe31b: Wide Cursor Tracks
=Version 3.21.13=
2011-08-07 Pavel Milanes Costa <[email protected]>
5f3c3da: Update to Spanish translation
2011-08-07 David Freese <[email protected]>
75de2ce: New Macro Tags
5e50597: RTTY MARK coloring
836c082: RTTY MARK frequency
ab822e7: QSY macros
=Version 3.21.12=
f92dbf5: XMLRPC linking error
2011-06-26 Pierfrancesco Caci <[email protected]>
df89c3c: Swap mode/frequency change from frequency list
2011-06-17 David Freese <[email protected]>
a741be8: Logbook client for fllog server
3c14dc7: Logbook County
2011-06-11 Kamal Mostafa <[email protected]>
4e192b5: Mode_info table restrictions
2011-06-08 David Freese <[email protected]>
24ce84e: TX Attenuator
d634026: View-Hide menu item
=Version 3.21.11=
2011-06-06 Pierfrancesco Caci <[email protected]>
97bbddf: K3 CW-QSY
2011-05-29 David Freese <[email protected]>
4633907: LOG.ADIF export
=Version 3.21.10=
2011-05-14 Pavel Milanes Costa <[email protected]>
bc7c0cf: PO files update
2011-05-14 Kamal Mostafa <[email protected]>
e000ac1: Conf dialog cosmetics
2011-05-04 David Freese <[email protected]>
dca7182: Duplicate defines
2011-04-19 Kamal Mostafa <[email protected]>
50febcc: GNU/Hurd build fix
=Version 3.21.9=
2011-04-17 David Freese <[email protected]>
625c8f9: Spot-notifier
fd48d9a: Olivia tone/bw choices
=Version 3.21.8=
c3aacd3: Config defaults
3fb1a42: No rig mode selection
=Version 3.21.7=
c200173: wo save status
=Version 3.21.6=
2011-03-18 Pavel Milanes Costa <[email protected]>
a4ba568: es.po update
2011-03-18 David Freese <[email protected]>
3d4ea9c: flmsg auto start
=Version 3.21.5=
e7a403a: Wrap File reception
29c6fc0: EXEC win32 macro tag
2011-03-06 Stelios Bounanos <[email protected]>
3114075: Fix socket/getaddrinfo support
=Version 3.21.4=
2011-03-01 David Freese <[email protected]>
b1f141f: LOGBOOK date-order
6daba19: GRIDSQUARE on reports
=Version 3.21.3=
a15a9c3: PO updates
6eb644b: Waterfall Only
=Version 3.21.2=
2011-02-18 Stelios Bounanos <[email protected]>
211ea4c: Update NEWS
2011-02-18 Pavel Milanes Costa <[email protected]>
c01c28e: es.po update
2011-02-17 David Freese <[email protected]>
13fce24: Olivia Tone displacement
=Version 3.21.1=
2011-02-15 Pavel Milanes Costa <[email protected]>
ef8b122: es.po update
2011-02-14 Leigh L. Klotz Jr <[email protected]>
3cc9e5e: Add RX frequency tag for search macros
2011-02-13 Stelios Bounanos <[email protected]>
8ad7685: Adjust notify dialog
2011-02-11 Pierfrancesco Caci <[email protected]>
3634a11: it.po update
2011-02-11 David Freese <[email protected]>
d24ee90: Macro <MODEM: