forked from ukhas/dl-fldigi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
2649 lines (1996 loc) · 80.3 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 3.21.50=
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:
2011-02-10 Stelios Bounanos <[email protected]>
0ad002e: Enable NLS on woe32
2011-02-09 David Freese <[email protected]>
23eacc5: Cosmetic adjustment
2011-02-07 Pierfrancesco Caci <[email protected]>
5bc6b10: PO update
2011-02-07 David Freese <[email protected]>
9d20988: Psk_browser seek_re
451b63f: MT63 Waterfall Cursors
2011-02-04 Stelios Bounanos <[email protected]>
37369b0: Update i18n
7ee39dc: Update copyright
3b11a86: Update About dialog box
9d68a57: Make wf mouse wheel action strings translatable
2011-02-04 Pierfrancesco Caci <[email protected]>
355f776: Add Italian l10n
8cefce0: Make more strings translatable
2011-02-04 Pavel Milanes Costa <[email protected]>
919a99f: Add Spanish l10n
2011-02-03 David Freese <[email protected]>
cfd0d02: MT63 2 tone fix
7cf8bcd: MT63 manual tune mod
2011-01-31 Stelios Bounanos <[email protected]>
2d474d9: Config dialog clean ups
81a464e: Remove macro config images
2011-01-25 David Freese <[email protected]>
91d62b8: <RIGMOD <FILWID macro tags
bc61faf: <QSY: macro tag
ba6b25b: <FILE:name> exist
b30b314: mvgroup size restore
857cd2f: Macro Bar positions
b68ae5f: Main Dialog Cosmetics
30e8827: Panel Widget
2c6043b: Compiler warning in trx.cxx
c2f5364: VTgroup position
cfacc55: Fl_Text_Display_mod
70b57ff: Viewer Width adjuster
e78f3e0: Viewer status
5d8e050: View slider color
949a112: Macro <RX/TX>
bdb3ea6: Maximize window error
1412187: Signal Browser Cosmetic
12f0f4b: Logbook Server Connection Disabled
9ec791a: PSK browser mod
6a24e15: Code cleanup
f97218b: Convenience features
2907405: Signal Viewer History
3bc947b: Mixer Frame
8093389: Channel Number
2011-01-02 Pierfrancesco Caci <[email protected]>
7e4c1ab: RX-TX log file
2011-01-02 David Freese <[email protected]>
98b4cb0: PSK detector mod
0dd1249: Browser Channel Order
c33a85d: Tile_Check fix
30d8c58: IPC Date report
03390bb: Load Macros
3b967fd: RTTY visible timeout
bce4760: Browser start frequency
8e76296: Macro Bar Configure
0c66bd7: RTTY adjacenies
3b55c69: PSK AFC
0c5e8a3: PSK Browser-WF data
714e573: Waterfall Only mods
75c8e77: RTTY BROWSER
040c13f: Browser reformat
04f107e: PSK browser mod
75c9112: ADIF format fault
7767ff1: PSK browser update
c7c3a43: RTTY viewer
4344d53: Macro Button Bars
dc6a6b1: CONTESTIA
99f977c: Dual Macro Bar
685ffc3: PSK browser detection
425c6bf: pskBrowser class
2010-12-21 Dan Ankers <[email protected]>
09c9569: IARU Maidenhead
2010-12-07 David Freese <[email protected]>
fa165cc: Countries List
9b8fdd8: Check for updates
81ebe81: Carrier Squelch
eb0afbb: Call Lookup
d6583d8: RSID new mode
1f8a59f: Logbook Menu
49cae5f: DATE_TIME sorting
a5f2f7f: Log Client
2010-11-19 Stelios Bounanos <[email protected]>
ca7d30f: Embed xmlrpc++
2010-11-19 David Freese <[email protected]>
f2b39b1: Reversion of commit 2a957966c1ebda93647a789a75f83aba6af5f98a
afeccbb: DigiTalk
ef188fd: QSO_DB sort order
c372640: Macros
2010-11-05 Terry Embry <[email protected]>
9c8e837: VSP patch
2010-10-20 David Freese <[email protected]>
c29ee47: CALLOOK lookup
2010-10-13 Fernando M. Maresca <[email protected]>
80e1bcf: QSO_DATE_OFF field implementation
2010-10-13 David Freese <[email protected]>
7e1c6cd: Build correction
2010-10-13 Remi Chateauneu <rchateau@DuoLnx.(none)>
a2c9e04: WEFAX bug fixes
2010-09-23 David Freese <[email protected]>
c5ea3ce: FLMSG open NBEMS/WRAP/recv folder
f46016f: ESC action restore
0ac873f: Hamlib Tests
e645b56: RigCat Width
0f52da3: Goertzel filter update
1ad7f16: CONFIG dialog
aa4bee2: Abort ARQ
2010-08-30 Chris Sylvain <[email protected]>
6cbd200: RTTY-PSKSCOPE
e6d43d4: Goertzel Filter
2010-08-30 David Freese <[email protected]>
a0cca98: Time Macros
0c14c51: Logbook Field Sizes
72d78b1: Macro Mode Change
70ef8db: Combo widget
bea2d29: TX file insertion
6c6f6e0: RsID
b24fe85: Xmlrpc Raw data
a9815cd: Log Sort
1110fe4: Xmlrpc BS char
9e6d0f3: Logger
bc70438: Compile Warnings
a7ee2af: ThrobX
dd0d489: Post RsID
809b218: Revert "RSID silence period"
2a95796: MultiUser Logbook
4a77c03: Contestia Olivia info
7f7aeab: RSID silence period
e7d9cd1: Logbook Save
0af649b: '^' Parser
2010-07-13 Fer Maresca, LU2DFM <[email protected]>
abafe0d: <LOG> change
2010-07-02 David Freese <[email protected]>
0faeecb: RX-TX Select
e1cfec0: RTS-DTR ptt
9064f15: REPEAT Macro
e2ec239: Mode prefs
6e6b672: Morse Prosigns
2010-06-21 Chris Sylvain <[email protected]>
62335f9: RTTY class
8e26ee4: <ID> video text mod
773e0ed: PSK Browser modes
40204ca: Beginners Guide update
2010-06-15 David Freese <[email protected]>
4d1c449: PH Cabrillo report
fd7ca52: QRZ xml service
5c0eea9: CWID
e37116b: RTTY 75 baud
edf6b4b: Read Config
629a404: VIDEO ID
d9a2e53: CTY.DAT-KG4
e5d8785: PA flush
c5f12bb: RSID code base
a7f6d85: RSID new codes
870bfa6: WEFAX time
6e617cf: TX Wrap disable
d46b8a4: RSID squelch
03f1ba7: RSID tx suppression
0790350: Pulse audio
2010-05-15 Remi Chateauneu <rchateau@DuoLnx.(none)>
f6f0ea9: WEFAX bug fixes
669ee37: WEFAX additions
e9d7520: WEFAX image size
2010-05-15 David Freese <[email protected]>
d7d19f0: PSK RSID
c3fbd31: RSID DomEX-FEC
2010-05-13 Stelios Bounanos <[email protected]>
e36afb0: Implement CLOCK_MONOTONIC on OS X
2010-05-13 David Freese <[email protected]>
1387fbe: WEFAX MINGW32
2010-05-03 Remi Chateauneu <rchateau@DuoLnx.(none)>
2508852: WEFAX addition
2010-05-02 David Freese <[email protected]>
ed574fb: Configure.ac update
=Version 3.20.11=
ff47cc4: XCVR Freq
5186a74: FLARQ 4.3.1
=Version 3.20.1=
55eec2a: MAP macro update
e17ccfb: LOCK macro
917b5bd: Freq Browser Select
4474bd4: MAP macro
2da1e55: ARQ auto file
54a0569: Freq Control Font
2010-04-22 Stelios Bounanos <[email protected]>
5b7e839: Disable sprintf re-declaration
c5f34c6: Fix compiler warnings
1733f1f: Add preliminary support for FLTK-1.3
2010-04-16 David Freese <[email protected]>
ab092a6: psk reporter mode
6c15ddd: Psk Viewer Min Width
2bc6105: Revert "SC Time Out"
2010-04-12 Stelios Bounanos <[email protected]>
5da5ba6: Update NEWS
2010-04-12 David Freese <[email protected]>
aaaec18: WARNINGS
8df121a: SC Time Out
45654ea: PSKR fec metrics
faf5e6c: Pause-Break
975f4a9: RX lowercase option
2010-04-12 Stelios Bounanos <[email protected]>
d551f2e: Disable Czech l10n
f1762d7: Fix more widget labels
4f80565: Update QSO frequency
2010-04-08 David Freese <[email protected]>
3754c63: Tx Pane Min Height
717c151: Modem Init
0469895: Contest Menu
8f76576: AFC-SQL check buttons
5dcf5cb: ADIF Export
1b5f56f: Olivia-Contestia bandwidth
0d77c1b: SSB modem
586e3d5: QPSK dcd postamble
1aae11e: RX_ONLY Modem type
d29495f: QSY Lock disable
02767b0: Contestia
c10ee73: Freq Analysis Init
2010-04-04 Stelios Bounanos <[email protected]>
391167c: Add time functions
80572f5: Improve monitoring of transmitted signal
2010-03-25 David Freese <[email protected]>
c517a1e: NBEMS files
b794fb1: Rx Contest Popup Menu
09c77b5: Olivia bug fix
b6b6d76: Contest Rig/Log View
4000fe0: CW Xmt WPM
35826a3: Cabrillo Report
3b63d8f: XBEG-XEND macro tags
2010-03-20 Giuseppe Ciaccio <[email protected]>
1fb42ac: CW Decoder improvement
2010-03-20 Stelios Bounanos <[email protected]>
e0c62c2: Add new modem macro
cdd4457: Fix counter widgets
cff6112: Fix Olivia pre/postamble
2010-03-20 David Freese <[email protected]>
269152e: AFC-SQL Lighted button
8766979: QSOTIME
2010-03-18 Stelios Bounanos <[email protected]>
2715366: Fix label sizes
4ed6c1c: Add PSK browser font change support
735dba2: Cosmetic changes the PSK browser
5a1cf7d: Add font browser filter
bdcca8c: Add mouse wheel handling
2010-03-17 David Freese <[email protected]>
b66e456: LSB modes - no rig
40ae07f: Macro Idle
b1702af: User Config Tab
6639fef: <TX/RX> macro
48552e1: Light Button Colors
2010-03-10 Stelios Bounanos <[email protected]>
f7d5af9: Fix status load
97c65e1: Add scroll hints menu item
2010-03-10 Stephane Fillod <[email protected]>
7369f44: Update i18n
2010-03-09 David Freese <[email protected]>
e9ec047: DigiTalk
2010-03-05 Сергей И. Королев <[email protected]>
127380f: Add custom RTTY shift option
2010-03-05 Stelios Bounanos <[email protected]>
a8e4f81: Add XML-RPC methods for Olivia
d2df10a: Modify FText add() methods
92a8fd6: Fix bandwidth marker
2010-03-04 David Freese <[email protected]>
82eaead: Olivia Pre/Postamble visibility on waterfall
a454879: Empty Call Nag
e3c7a76: Initial Configuration
551d118: Textout.txt on MS
2010-03-02 Stelios Bounanos <[email protected]>
2f48f07: Add release notes
cc957f3: Update copyright headers
a9b976a: Delete unused code
2010-03-01 David Freese <[email protected]>
2e78ec6: NBEMS folder access
995c34e: <LOG> fix
dcbfb7d: Add option to specify non-word characters
2010-03-01 John Douyere <[email protected]>
8cea906: Extended Pskmail messaging
2010-02-26 Stelios Bounanos <[email protected]>
ed30b5b: Add new WriteARQsocket function
2010-02-25 David Freese <[email protected]>
5a3d0ab: RSID detect
2010-02-24 Stelios Bounanos <[email protected]>
df7caff: Fix name_to_device
2010-02-22 Vitaliy Berdinskikh <[email protected]>
9c846a1: Remove png_infopp_NULL from picture::save_png
2010-02-22 David Freese <[email protected]>
9b80c2c: Portaudio stream persistence mod
445c24a: Win32 init_stream patch
933af6c: Serial bug fix
2010-02-16 Stelios Bounanos <[email protected]>
ccaaa1e: Add RX text scrollbar hints
5c82c35: Fix RX text context menu
0459067: Log excluded ID modes
b3eda45: Add init_modem frequency argument
2010-02-13 David Freese <[email protected]>
51700d7: TX ^r ^R parsing
b1c5fa9: Startup Fix
3f3ddc0: FELD improvement
3acb7f2: Wizard Fix
2010-02-11 Stelios Bounanos <[email protected]>
e74201b: Fix sound initialisation
2010-02-09 David Freese <[email protected]>
872f52c: WF_ONLY height fix
64b1921: <INFO1><INFO2> fix
617f459: ARQ abort
2010-02-06 Stelios Bounanos <[email protected]>
bb37cc1: Fix -iconic option handling
2c55a62: Improve audio initialisation
bde818b: Fix OSS compilation on NetBSD
7ac0fd5: Remove -fomit-frame-pointer flag