forked from ukhas/dl-fldigi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
12153 lines (8376 loc) · 344 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
commit 7dfb41a403f696a6d49b0801f9fc40ea28ace7ce
Author: David Freese <[email protected]>
Date: Mon Dec 27 19:03:18 2010 -0600
Version 3.20.34
Maintenance release
commit 89b2f050e2478e04825fa8e571c3d15698ab1d07
Author: David Freese <[email protected]>
Date: Mon Dec 27 18:24:05 2010 -0600
ADIF format fault
Corrected formatting fault of ADIF output. Fault caused when
field data string exceeded 100 characters. Fault prevalent on
Windows platform by virtue of temporary ADIF file used to populate
external log files.
commit 040d42ba5fb0f56d81278787ec15f80a42f77800
Author: David Freese <[email protected]>
Date: Fri Dec 24 07:58:27 2010 -0600
Version 3.20.33
Maintenance release
commit 51cca178dad92088558f21f4dd8db4f3dab65c2f
Author: David Freese <[email protected]>
Date: Fri Dec 24 07:56:29 2010 -0600
CONTESTIA
Shortened ADIF reporting name to CONTESTI.
commit db26f97d7b3c9f8d61b347624d51424c2cbbb434
Author: Dan Ankers <[email protected]>
Date: Tue Dec 21 07:09:22 2010 -0600
IARU Maidenhead
Changes to documentation, alerts, and hints to reduce
misunderstanding regarding terms IARU locator and
Maidenhead locator.
commit 6f64b130c6c2dca2e843a2e7ba7af21ac4abd5bf
Author: David Freese <[email protected]>
Date: Tue Nov 30 15:40:57 2010 -0600
Check for updates
Changed re parser expression to accommodate recent reorganization
of w1hkj web site
commit 81bde9f4abf67a58507537cbda1fa6340a3b9ba5
Author: David Freese <[email protected]>
Date: Tue Nov 30 09:05:30 2010 -0600
Version 3.20.32
Maintenance release
commit 58cdf97be5f7f4288f2a847326917da20c5a937f
Author: David Freese <[email protected]>
Date: Tue Nov 30 08:22:26 2010 -0600
DATE_OFF update
Added code to update DATE_OFF correctly when it is empty.
This will occur principally when opening an older logbook
adif data file.
commit e72ec18d6a8227c1a2abb30905a250fb499a4b94
Author: David Freese <[email protected]>
Date: Mon Nov 29 19:50:12 2010 -0600
Carrier Squelch
* Added pre-signal tone which allows triggering
carrier detect / amplifier enable. Used primarily
for VHF/UHF power bricks.
* Reduced pre and post RsID silence periods to 1 RsID
symbol length (~0.0988 sec).
commit c8d0747c6585b68a79d388f86624bfc6becfb78c
Author: David Freese <[email protected]>
Date: Sun Nov 28 13:44:56 2010 -0600
Version 3.20.31
Maintenance release
commit 9a3259358a657c87e2d09e1d9ae322abcc14d66a
Author: David Freese <[email protected]>
Date: Sun Nov 28 09:02:20 2010 -0600
Call Lookup
Added code to convert uppercase operator name to
camel case for all lookups.
commit 29f6fd9a0a94a3c956516c9de841d9138b9775d2
Author: David Freese <[email protected]>
Date: Sat Nov 27 09:20:59 2010 -0600
RSID new mode
Added Contestia 128-2000 RsID code
commit 734ddfd46f4ee855abd6951e85e5489e760d1356
Author: David Freese <[email protected]>
Date: Sun Nov 28 13:36:32 2010 -0600
MODE logging
Fixed bug introduced by 8ae9ddd6f5573a045f1afcf4e4bb8395754b6cd3
commit 0232eed0b0dcc2cab1366dc7750383ea6951ee22
Author: David Freese <[email protected]>
Date: Fri Nov 19 08:32:38 2010 -0600
Version 3.20.30
Maintenance release
commit 8ae9ddd6f5573a045f1afcf4e4bb8395754b6cd3
Author: David Freese <[email protected]>
Date: Fri Nov 19 08:30:31 2010 -0600
DATE_TIME sorting
* Added user selection for date/time ON or OFF sorting
* Cabrillo & ADIF exports follow the ON / OFF selection
* Logbook browser follows ON / OFF selection
* Added user selection to force DATE/TIME ON == DATE/TIME OFF
commit 9258c106607f2e0ab6ed1fdb992d2a9ff374fbdd
Author: David Freese <[email protected]>
Date: Fri Nov 19 08:30:31 2010 -0600
DigiTalk
* Changed interface method to connect to DigiTalk
autostart no longer initiated unless so configured
* Changed Connect button on Misc tab to provide for
both connect and disconnect
* Added new macro tags to allow DigiTalk connect /
disconnect using function keys
- <TALK:on|off|t> start, stop, toggle
the connection to the DigiTalk socket server
commit 3a51cef81a235a2fd98759fafc6de73883497e4c
Author: David Freese <[email protected]>
Date: Fri Nov 19 08:30:31 2010 -0600
QSO_DB sort order
Corrected bug in date-time sorting of the logbook database.
Sort is now by DATE and TIME vice DATE and TIME_OFF
commit 36aa19100d18d6f61d97a602c6fc53097b227ad3
Author: David Freese <[email protected]>
Date: Fri Nov 19 08:29:53 2010 -0600
Macros
* Added CLEARLOG macro tag
- Inserts a ^C into the transmit text. ^C can also be entered
manually. Note that this is a two character sequence:
carat C, and not a control-C symbolism.
commit c52ebfa9695263fe48c68ea22042cfa106f00947
Author: David Freese <[email protected]>
Date: Fri Nov 5 07:24:34 2010 -0500
Version 3.20.29
Maintenance release
commit 4bde1df9a9c7a757dcbb08ff171bae5af0428af6
Author: Terry Embry <[email protected]>
Date: Fri Nov 5 12:17:32 2010 -0500
VSP patch
Suppress WARNING messages when using a Virtual Serial Port
VSP's will occassionally fail to respond within the timeouts
set for a h/w port.
commit 7f4a3fa8dc119e2ad39ba342832c7a231a3db6f2
Author: David Freese <[email protected]>
Date: Wed Oct 20 23:01:51 2010 -0500
CALLOOK lookup
Added http://callook.info lookup to QRZ queries
commit 0ddd046a9c6cfd14175405003302f2d3256db8b8
Author: Fernando M. Maresca <[email protected]>
Date: Mon Oct 18 07:48:02 2010 -0500
QSO_DATE_OFF field implementation
Implementation of QSO_DATE_OFF field in the logbook according
to ADIF 2.2.3 and up specification.
commit 02dc29d68295dd2a379dcc3170cb9390741eea73
Author: David Freese <[email protected]>
Date: Thu Sep 23 09:54:40 2010 -0500
FLMSG open NBEMS/WRAP/recv folder
Added code to allow reception of an flmsg wrapped file to
open the default file explorer to the folder containing the
new file.
commit 1b1deebd4bb41bbcbb397c788cd16ffc7c18ec15
Author: David Freese <[email protected]>
Date: Sat Sep 11 19:31:40 2010 -0500
ESC action restore
Restore escape key action to TUNE and Macro timer
commit fba86be5e093114b829dd2601a277d474dda2662
Author: David Freese <[email protected]>
Date: Sun Sep 5 06:54:20 2010 -0500
Version 3.20.28
Maintenance release
commit 8c0d3e059fe26f810a8b1dbfa313ff88bc83c7ce
Author: David Freese <[email protected]>
Date: Sun Sep 5 06:54:06 2010 -0500
Hamlib Tests
Changed initial hamlib query tests to fail if get frequency
is not implemented or returns zero or less.
commit 75b832ab9c1a49bca8ce12e35e0094c9bddb3545
Author: David Freese <[email protected]>
Date: Sun Sep 5 06:27:29 2010 -0500
RigCat Width
Bug fix - error in xml definition could case infinite loop
in rig width processing
commit 12c69ddbdd8d7a2b9d80cd11c6bd9a90f6ac8eb4
Author: David Freese <[email protected]>
Date: Thu Sep 2 20:23:58 2010 -0500
Version 3.20.27
Maintenance release
commit 7b483df0a1ff45ee96609fb64fa7f83a1be3d340
Author: David Freese <[email protected]>
Date: Thu Sep 2 20:23:49 2010 -0500
Abort ARQ
Added call to Abort_ARQ when double ESC pressed (panic)
Added supporting code in modem class.
commit 6b78f2fc0591bcd290ed74886fb85bdcedb6ae60
Author: David Freese <[email protected]>
Date: Mon Aug 30 14:55:23 2010 -0500
Version 3.20.26
Maintenance release
commit e293a334b48b7ed9088061736bb226f69988f97d
Author: David Freese <[email protected]>
Date: Mon Aug 30 14:53:09 2010 -0500
CONFIG dialog
Set to Non-modal for Windows.
commit e9c6fe8d4208e0fbe9dceef4935ad243a999cf87
Author: David Freese <[email protected]>
Date: Sun Aug 29 15:37:25 2010 -0500
BAND field
Adif band field restored to band in meters etc.
commit ba2306bdf8f71f9fa4ea80c3b2e752b9810c53e1
Author: David Freese <[email protected]>
Date: Sun Aug 29 07:33:56 2010 -0500
Version 3.20.25
Maintenance release
commit dd7ff81b85f3c4fdc2cacd6ba27c2ab4e544db82
Author: David Freese <[email protected]>
Date: Sun Aug 29 07:33:51 2010 -0500
DXKEEPER bug fix
Fix to bug introduced by 4eb79a4b516
adif field name changed from char* to string.
commit e3b587760509b94f0fe0ad6ba88dfbec8762ad39
Author: David Freese <[email protected]>
Date: Thu Aug 26 16:26:34 2010 -0500
Version 3.20.24
Maintenance release
commit d4126b32ace9dc0715c4cd2f4fbd7caf85203975
Author: David Freese <[email protected]>
Date: Thu Aug 26 16:26:31 2010 -0500
Time Macros
Corrected <QSOTIME> to update with logging field
Added:
<LT> local time as HHMM
<ZT> zulu time as HHMMZ
<LD> local date as YYYY-MM-DD
<ZD> zulu date as YYYY-MM-DD Z
commit 4eb79a4b5160f61dc6c057870ac89f561da2c76c
Author: David Freese <[email protected]>
Date: Thu Aug 26 16:26:28 2010 -0500
Logbook Field Sizes
* Removed size restrictions on qso_db record fields
commit aa519897adea4d6819feb390280063d82e898ee7
Author: David Freese <[email protected]>
Date: Wed Aug 11 06:59:36 2010 -0500
Version 3.20.23
Maintenance release
commit d513ee8628ce6e084e2e5bf373745209eabf6b64
Author: David Freese <[email protected]>
Date: Wed Aug 11 06:36:17 2010 -0500
Macro Mode Change
Change init_modem_sync(...) to init_modem(...) call in macro
execute. Macros are executed from main fltk thread. The
sem_wait call in _sync caused main thread to lock up.
commit b7b3eb344924e7fb8d4b3aa6ef029b4b0cfbe057
Author: David Freese <[email protected]>
Date: Sat Jul 31 15:56:34 2010 -0500
Combo Widget
Changed size computation for popup browser
commit 08e94e36c75d97c9c163f2fbb28d77ed88181dee
Author: David Freese <[email protected]>
Date: Fri Jul 30 04:21:37 2010 -0500
Version 3.20.22
Maintenance release
commit 9717eb5b9d312084126c20032f6dd0513dc82c9f
Author: David Freese <[email protected]>
Date: Fri Jul 30 03:34:57 2010 -0500
TX file insertion
* For both file insert and drag-n-drop insert into the Tx widget
Change all occurrences of ^ to ^^.
* Effect is to treat all dnd text as plain text without special fldigi
control sequences.
commit 90ff2b5f0e025962a30a98ae5585358ea5b9ee59
Author: David Freese <[email protected]>
Date: Wed Jul 28 18:22:58 2010 -0500
Xmlrpc Raw data
* Added xmlrpc method, rxtx.get_data, which returns the contents
of a char data buffer (max 256). Data buffer contains all
text received/transmitted since last query. Caller responsible
for separating the two.
* Added xmlrpc method, rx.get_data, which returns the contents
of a char buffer (max 256). Data buffer contains all text
received since last query.
* Added xmlrpc method, tx.get_data, which returns the contents
of a char buffer (max 256). Data buffer contains all text
transmitted since last query.
commit 95e7367c1305167ed27a924a015c03dfaba82e91
Author: David Freese <[email protected]>
Date: Wed Jul 28 06:28:51 2010 -0500
Log Sort
* Changed logbook sort to DATE / TIME-ON comparison
* Changed logbook browser to show DATE / TIME-ON vice
DATE / TIME-OFF
commit 42be5c7b054d610bca36a68ef846aabb034b7871
Author: David Freese <[email protected]>
Date: Mon Jul 26 18:29:51 2010 -0500
Xmlrpc BS char
Added new method to FTextTX to support backspace char
from an external program.
commit fff8410b1dcef0269ff374e54f64b5f231ca1744
Author: David Freese <[email protected]>
Date: Mon Jul 26 11:07:16 2010 -0500
RsID
* Added missing support code for patch c8ea4df
This enables the encode and decode for the new RsID codes
* Added Contestia 4/125 to menu and popup mode selector
commit d96df05ca567d9b4d690abed0164de1495f1e6f2
Author: David Freese <[email protected]>
Date: Tue Jul 20 11:12:05 2010 -0500
Version 3.20.21
Maintenance release
commit 56c0527bce05b4fda4ea0b0a57713c4284af8aba
Author: David Freese <[email protected]>
Date: Tue Jul 20 11:07:46 2010 -0500
Logger
Fixed bug in external log record introduced by 581a16c05d
commit 390aee72fd6cbd8305e5ebe5b5d206454eb99013
Author: David Freese <[email protected]>
Date: Sun Jul 18 15:13:39 2010 -0500
Compile Warnings
Modifications to avoid compiler warnings in Jalocha code
sections.
commit 376794cc885320049908d025627c6f1a7cb5ab96
Author: David Freese <[email protected]>
Date: Sat Jul 17 18:50:36 2010 -0500
Version 3.20.20
Maintenance release
commit 37e5c8213ac72f0eaceb27d7eb334faeda0fc2a9
Author: David Freese <[email protected]>
Date: Fri Jul 16 19:54:22 2010 -0500
Post RsID
Removed post RsID transmission pending resolution of OS X
segmentation fault caused by post RsID.
commit 444aea64d9237e23a1578a97323395d4a5cde6eb
Author: David Freese <[email protected]>
Date: Sat Jul 17 14:06:34 2010 -0500
ThrobX
Added Idle-Space initialization to rx_init method for
ThrobX.
commit 306d1952a3dd4e7efd00eddfcfe324c51d34cd7a
Author: David Freese <[email protected]>
Date: Fri Jul 16 07:33:22 2010 -0500
Contestia Olivia info
Changed LOG_INFO to LOG_DEBUG for event log printing of
Contestia / Olivia parameters
commit 581a16c05dbdd333321e0c45ec9804e4e1f9a7fd
Author: David Freese <[email protected]>
Date: Wed Jul 14 18:43:36 2010 -0500
Logbook Save
Fixed logic error in save record to logbook
commit 7b8f5859321ceb46825273d12d994f74d29d876b
Author: David Freese <[email protected]>
Date: Wed Jul 14 11:30:22 2010 -0500
'^' Parser
Modified '^' character sequence parsing to eliminate idle
character. Beneficial for slow modem baud rates.
commit 9fedb616684a808634cdfc59a6f6e087f96bc26c
Author: Fer Maresca, LU2DFM <[email protected]>
Date: Tue Jul 13 21:26:52 2010 -0500
<LOG> change
Added new logging macro tag <LNW> (Log NoW), which places
the code pair "^L" into the transmit stream. QSO logging
takes place when that pair occurs in the transmit sequence.
This guarantees that the time of log will concur with the
^L occurance.
Changed tag parsing to always place <RX> (^r) as last control
tag in the expanded text that is placed into the Tx buffer.
commit 0e72fea543ae41b70af8bc69aeaf20e642b2d833
Author: David Freese <[email protected]>
Date: Sat Jul 3 13:48:38 2010 -0500
Update check
Fix bug caused by recent structure change at www.w1hkj.com
web site
commit b0edc63623eef72c484ff01700e2be6adf609de1
Author: David Freese <[email protected]>
Date: Fri Jul 2 14:37:50 2010 -0500
Version 3.20.19
Maintenance release
commit 357f3b101339f3d6515f32a3273a4ad9e85f82d4
Author: David Freese <[email protected]>
Date: Fri Jul 2 13:57:40 2010 -0500
RX-TX Select
* Fixed text/background contrast for selected text in Rx Tx
panels
* Added color selector for hightlight (SEL) color used in
Rx Tx panels
commit 8d155619755d5e944a06ac469d8f489fec97f6ea
Author: David Freese <[email protected]>
Date: Fri Jul 2 10:22:27 2010 -0500
REPEAT Macro
Added <REPEAT> macro tag - puts fldigi into infinite
transmit repeat of all text and tags preceeding <REPEAT>.
<ESC> terminates the loop
commit 7f5b55fa128c4769dd46fb12d09445cf12bf9501
Author: David Freese <[email protected]>
Date: Fri Jul 2 07:33:52 2010 -0500
RTS-DTR PTT
Allow both to be used simultaneously with RigCAT control.
commit 9c71708f01ea5bc53d1e1ca54937f2953fa3fa0b
Author: David Freese <[email protected]>
Date: Mon Jun 28 16:16:22 2010 -0500
Version 3.20.18
Maintenance release
commit 800eac722861a014fb7a7e278f844ad7e6e2de21
Author: David Freese <[email protected]>
Date: Mon Jun 28 15:35:37 2010 -0500
Mode prefs
* Changed to named store of last used mode in prefs file
* Added Contestia, Olivia, RTTY baud/bw values to prefs
file.
commit f21cbca683d6021557be49a898eebfe0c0feaeaa
Author: David Freese <[email protected]>
Date: Fri Jun 25 10:04:58 2010 -0500
Morse Prosigns
* Modified prosign / character translation
* Simplified morse table structure
* Print translated prosign character when transmitted
* Allow user selection of ')' or <AR> prosign
both have same Morse representation
* Added style override for both put_rx_char and put_echo_char
functions. Allows prosigns to be display using CTRL style.
* Modified xml generator for fldigi_def.xml to suppress xml
key characters in the xml documentation block
commit f673f21c46c7fb87eea57351631c771a3dde658a
Author: David Freese <[email protected]>
Date: Mon Jun 21 16:03:35 2010 -0500
Version 3.20.17
Maintenance release
commit c8ea4dfd8a88f1abb8d4be638a0c5109be47f4b1
Author: David Freese <[email protected]>
Date: Mon Jun 21 16:03:34 2010 -0500
RSID code additions
RSID MODE
203 OLIVIA-4-125
204 CONTESTIA-4-125
211 OLIVIA-64-2000
214 OLIVIA-8-2000
221 OLIVIA-32-2000
229 OLIVIA-4-1000
234 OLIVIA-16-2000
238 OLIVIA-4-2000
247 CONTESTIA-8-2000
254 CONTESTIA-4-2000
255 CONTESTIA-4-1000
259 CONTESTIA-16-2000
commit 1c1f0596d9eae3cdccfcda0ec07599b0502117e5
Author: Chris Sylvain <[email protected]>
Date: Mon Jun 21 16:03:32 2010 -0500
PSK Browser modes
Add decoding for PSK63F and new PSK___R types
commit 2c941585904e1e09eb64a1155bbccf1b5812e809
Author: Chris Sylvain <[email protected]>
Date: Mon Jun 21 16:03:22 2010 -0500
Beginners Guide update
Update beginner's guide for Lk and RsID button behaviors
commit fde3cce228a3decacc0de4543a5cd3a3e290eb41
Author: Chris Sylvain [email protected], David Freese <[email protected]>
Date: Mon Jun 21 06:57:22 2010 -0500
<ID> video text mod
* Combined 3 patches from kb3cs, added value (W1HKJ)
* Expanded video ID text for Olivia, Contestia and RTTY
* Amended macro editor <ID> explanation
* Changed format of auto-generated video ID text.
* Increased number of characters to 8 for both font sizes
* Simplified video generation methods
* Added limit switches on video width
- 500 Hz for US HF compliance
- Mode bandwidth, video constrained to mode in use bw
* Added abbreviated video mode name strings
* Added FEC indicator for DominoEX FEC modes
commit 8bff92189846149ca7d40508b27d5312cc76b665
Author: David Freese <[email protected]>
Date: Tue Jun 15 21:14:43 2010 -0500
PH Cabrillo report
Added SSB to USB, LSB, PH log entries which generate the
PH Cabrillo report category.
commit d22359a5c40f26fa692943295e7a6d052237530e
Author: David Freese <[email protected]>
Date: Tue Jun 15 11:11:26 2010 -0500
Version 3.20.16
Maintenance release
commit b17468be12d3c5c056d619dd4cb3881a3db04c95
Author: David Freese <[email protected]>
Date: Tue Jun 15 11:08:37 2010 -0500
QRZ xml service
Changed url for QRZ online xml server iaw with urgent email
notification received from QRZ.com on 6/14/2010.
commit 5057f711f4b7045db7f3b4168753ef426874c221
Author: David Freese <[email protected]>
Date: Thu Jun 10 09:06:25 2010 -0500
Version 3.20.15
Maintenance release
commit caff457f072d43bcc92d832bef85c99a60755875
Author: David Freese <[email protected]>
Date: Thu Jun 10 09:01:47 2010 -0500
RTTY 75 baud
Removed RTTY-75 from menu structures
Added RTTY-75N, 75 baud, 5 bit, 170 Hz shift
Added RTTY-75W, 75 baud, 5 bit, 850 Hz shift
commit 52dc87d3169b079adfba7f0191f39db0acc02280
Author: David Freese <[email protected]>
Date: Thu Jun 10 09:00:39 2010 -0500
Read Config
Increased buffer size used for line input from file
fldigi_def.xml
commit c80c28e238ad660c6bb8cf18c0f3b5ecfede00b4
Author: David Freese <[email protected]>
Date: Tue Jun 8 15:16:58 2010 -0500
Version 3.20.14
Maintenance release
commit e718eba19b498b58cd28bb026c513b4e2ecb2944
Author: David Freese <[email protected]>
Date: Tue Jun 8 15:04:41 2010 -0500
CTY.DAT-KG4
Modify cty.dat lookup to account for special KG4
call assignments. 1 & 3 letter suffix in US
2 letter suffix in Guantanamo
commit 2c914bd09d0983d60e5989b8f6754716ff400078
Author: David Freese <[email protected]>
Date: Sat Jun 5 21:10:12 2010 -0500
RSID new codes
* CONTESTIA 32-2000
* CONTESTIA 64-500
* CONTESTIA 64-1000
* CONTESTIA 64-2000
commit ff69a15cd67cb522625831f213d35a105d2a89e0
Author: David Freese <[email protected]>
Date: Fri Jun 4 14:08:55 2010 -0500
Version 3.20.13
Maintenance release
commit e3f6f9b4b3a2e2b96fcb6fc2cde1fa79983c7aae
Author: David Freese <[email protected]>
Date: Fri Jun 4 18:43:12 2010 -0500
TX Wrap disable
Disable word wrap when file insert or drag-n-drop operation
is performed. Restore word wrap to former state after TX
is finished or TX panel is cleared.
commit 9464c4b42be6513800f1ca23944854983f34246f
Author: David Freese <[email protected]>
Date: Fri Jun 4 18:33:44 2010 -0500
RSID squelch
* Added user setting in seconds to allow RSID to open squelch in
decoder.
* Changed default to Extended Characters for Olivia, Contestia
and MT63
* Change default to "Capture wrapped messages"
commit a34b1e0e2431502cc9f013eb133b3ca96cd55878
Author: David Freese <[email protected]>
Date: Thu Jun 3 06:38:17 2010 -0500
RSID tx suppression
Suppress RsID transmit for unsupported RTTY, OLIVIA and
CONTESTIA modes.
commit 439627cd57ed71f8955df48fe2c4a179944c3f2d
Author: David Freese <[email protected]>
Date: Tue May 18 09:17:00 2010 -0500
Change Log
Added updated ChangeLog
commit 22908ca71be6d73372bc13056df0b385c9406157
Author: David Freese <[email protected]>
Date: Tue May 18 08:33:11 2010 -0500
Version 3.20.12
Maintenance release
commit 2f3aa34441f8c11e1fd8c884cec7ebd9bdabf827
Author: David Freese <[email protected]>
Date: Sat May 15 23:39:15 2010 -0500
Pulse audio
flush blocking
Deleted call to pa_simple_drain.
pa_simple_drain caused long delays on Ubuntu 9.04, 9.10 and
10.04 due to blocking by pulse audio library
Added SCBLOCKSIZE delay interval followed by call to
pa_simple_flush
commit d8a519eb248ffb8e4a9ef4d304a6fafaac1106b2
Author: David Freese <[email protected]>
Date: Fri May 14 18:40:09 2010 -0500
PSK RSID
Disabled signal search on init of psk modem types
Prevents jumping off of RSID detected frequency
commit 63762857942223564478a6ce8a3de85db69a4e6a
Author: David Freese <[email protected]>
Date: Wed May 12 21:31:59 2010 -0500
RSID DomEX-FEC
Resolve RSID for DominoEX / DominoEX-FEC modes
commit 453ca217fa72de6b31d26ed97941010a0687e346
Author: Stelios Bounanos <[email protected]>
Date: Thu May 13 00:50:50 2010 +0100
Implement CLOCK_MONOTONIC on OS X
commit ed574fbf97681bd6f2977560862280051fea43b1
Author: David Freese <[email protected]>
Date: Sun May 2 06:40:51 2010 -0500
Configure.ac update
Updated configure.ac for version 3.20.11
commit 49b08808df0458e519c8d6584f728d1836430f14
Author: David Freese <[email protected]>
Date: Sun May 2 06:08:11 2010 -0500
Version 3.20.11
Release
commit ff47cc4ac44d298ae9eb2fe60273a619a86901ef
Author: David Freese <[email protected]>
Date: Sun May 2 05:46:23 2010 -0500
XCVR Freq
Changed initial no-rig frequency to zero
Changed title to "Enter Xcvr Freq"
commit 5186a749090fbd06d50af9f096e23f165273cb7d
Author: David Freese <[email protected]>
Date: Sat May 1 11:22:55 2010 -0500
FLARQ 4.3.1
Release
commit 83f42cbd0e4561ad10eb4b39b30caa8ce863dd94
Author: David Freese <[email protected]>
Date: Sat May 1 06:48:28 2010 -0500
Version 3.20.1
Release
commit 55eec2a8b9f737c95713c941c6ef5f1404655189
Author: David Freese <[email protected]>
Date: Fri Apr 30 18:31:37 2010 -0500
MAP macro update
Google search by:
1) postal address, city, state, country
2) latitude, longitude
3) maidenhead grid square
where 1) and 2) are obtained from QRZ xml subscriber query
3) from QRZ or by manual entry
<MAPIT> map trying 1)...2)...3)
<MAPIT:adr> map trying 1)...2)...3)
<MAPIT:lat> map trying 2)...3)
<MAPIT:loc> map trying 3)
commit e17ccfb6c3b269d45c3d197b00d113df5f919348
Author: David Freese <[email protected]>
Date: Thu Apr 29 13:42:00 2010 -0500
LOCK macro
Added callback to waterfall Lock button
commit 917b5bd14dc75b17ccc1b368edb714287d52adba
Author: David Freese <[email protected]>
Date: Tue Apr 27 19:13:49 2010 -0500
Freq Browser Select
Bug fix - double click select failed to correctly update
frequency display when logging panel set to single line
commit 00addd8c1135d354e2dee85c3bf9b517dc38b127
Author: David Freese <[email protected]>
Date: Tue Apr 27 10:09:13 2010 -0500
Version 3.20.0bB
Beta release
commit 4474bd497f69122cb06a2cae104cd5f1b9a2d1cf
Author: David Freese <[email protected]>
Date: Tue Apr 27 08:41:16 2010 -0500
MAP macro
Added macro <MAPIT> which performs same call to default browser
as the perl shell program "mapit.pl"
commit 2da1e558849719a80a9536a29c7c494fb301f4c8
Author: David Freese <[email protected]>
Date: Sun Apr 25 13:59:31 2010 -0500
ARQ auto file
Fix wrap autofile location and detection
commit 54a056907f118465c8ef9c79394730a477ef5178
Author: David Freese <[email protected]>
Date: Sat Apr 24 11:11:36 2010 -0500
Freq Control Font
Modified Frequency Control widget to allow selection of font
Added configuration item and support to allow user to select
font used for the Frequency Control.
commit 5b7e8390572c0000a96aee87f70ba323d18de7be
Author: Stelios Bounanos <[email protected]>
Date: Thu Apr 22 20:58:51 2010 +0100
Disable sprintf re-declaration
commit c5f34c684d2bc0db04eb1006e12545c7c9d10f16
Author: Stelios Bounanos <[email protected]>
Date: Thu Apr 22 20:58:30 2010 +0100
Fix compiler warnings
commit 1733f1f1dec7631919586dca2d9370c885cf93ae
Author: Stelios Bounanos <[email protected]>
Date: Mon Apr 19 23:12:38 2010 +0100
Add preliminary support for FLTK-1.3
* Bundle Fl_Text_Buffer from FLTK 1.1, renamed as Fl_Text_Buffer_mod.
* Bundle Fl_Text_{Buffer,Display,Editor} from FLTK 1.3, renamed as
above. Apply most of Fl_Text_Display->Fl_Text_Display_mod changes
to the 1.3 Fl_Text_Display.
* Detect FLTK API at configure time and define macros to determine
version of the *Text* files will be built.
commit ab092a6f1ee08ce56f7db04aea20fb0615f907b1
Author: David Freese <[email protected]>
Date: Fri Apr 16 19:01:32 2010 -0500
psk reporter mode
Added mode specifier to spot_recv and viewaddchr
Allows continued correct psk31 reporting from pskviewer when
a mode such as QPSK or PSKR is being used in the primary
decoder channel.
commit 6c15ddde0e552f0ed8a3768061d4f10ea226deca
Author: David Freese <[email protected]>
Date: Tue Apr 13 16:34:09 2010 -0500
Psk Viewer Min Width
Changed initial default width to 30 for ease of viewing on
1024 x 800 screen.
commit 2bc610505537efdb0582004ea7870cae8a24a05c
Author: David Freese <[email protected]>
Date: Mon Apr 12 18:05:56 2010 -0500
Revert "SC Time Out"
This reverts commit 8df121a46a798b86592f0a2c4e20a44876610432.