File: ChangeLog

package info (click to toggle)
flrig 1.3.42-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 4,544 kB
  • sloc: cpp: 90,806; sh: 4,842; ansic: 2,206; makefile: 359
file content (1423 lines) | stat: -rw-r--r-- 26,874 bytes parent folder | download
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
2019-01-10  David Freese  <w1hkj@bellsouth.net>

	855104a: FT1000 debugging
	d915248: FLTK 1.4 test
	1f54f12: FTdx3000
	ff835b6: Parse -psn


=Version 1.3.41=

	dadd32c: FT991
	af73be7: IC7300 noise blanker
	ba55a05: TS-950
	9da74e7: BW inhibit
	09cfb60: ts480sat
	b02db5b: Yaesu
	e209b81: has_extras
	51a0a72: XMLRPC debug level
	fe4a31d: ts2000 get/set trace
	0343328: IC7700 set/get
	16850ec: pbt
	0762082: FTdx1200
	a976bab: PCR1000
	16a757e: TT550/TT538
	56b5f2a: FT450D/FTdx5000
	0299ff2: IC7300
	65164bc: k2/k3/kx3
	05c7082: TS2000 squelch
	9dc6f6f: Band Select
	34f9c42: Bogus command line parameters
	90e147e: Warnings fixes
	adb529b: K3 bug fix
	5aa7835: IC7610
	f306f89: TS-940SAT
	b70bf4e: OMNI-VI
	7d225d7: Cosmetics
	0cd455c: IC756PRO extra
	cbc1a6d: IC 9100
	a2a5cee: TAB controls
	37ee48f: xml_io
	60af694: IC7100
	b7ad209: IC735


=Version 1.3.40=

	d0e59a3: FT950 comp
	35e4c75: NONE testing
	17bb692: Yaesu mods
	2a8249e: slider drag
	1402141: IC PBT controls
	bed34f2: KENWOOD vfoA/B split
	b168de6: Send Command
	e9fff86: tt550
	8d515a4: Test Xcvr
	991658c: ICOM transceivers
	b7eaac2: UI init
	e4b001f: modeA modeB
	d380515: Documentation
	94483a9: xml_server
	d66b4b6: trace update

2018-06-08  Sean Sharkey  <g0oan@icloud.com>

	674134c: FT1000 update

2018-05-12  David Freese  <w1hkj@bellsouth.net>

	b8512d0: guard lock
	f441895: KENWOOD base
	e440c24: Trace
	07b6621: ts2000 get split
	d561ca0: TOD thread
	9e05041: PTT on split
	a3c1f86: TS2000 split
	5de0c04: TS series A2B
	dc0f217: Send command
	afe64f4: ICOM A/B vfo handling
	68fa0bf: xmlrpc split/swap/a2b
	55284eb: fix tod clock
	398522b: TS480
	137c24a: PTT queue
	efadab6: sizeof errors
	dd5fb97: XMLRPC Select Vfo
	22e2750: xmlrpc server
	67d085f: TS480HX/SAT
	e62b4a2: FT891 mods
	b583d4b: Conditional trace
	5abcd90: Warnings fixes
	c054910: FT950 debug
	4bf2ac6: Icom updates
	2946e47: Vfo-B mode
	8526ef2: Load prefs file
	2d42c2f: Exit processing
	a4f2190: appbundle
	6360f33: Init no split
	a00a7a6: xmlrpc method swap
	24c4895: altvfo
	ded9ad8: FT series vfo
	f4d5f2e: Service queues
	65fb95f: replystr mutex
	6f770c0: ptt race / debug trace
	f41e8a1: xmlrpc a/b vfo
	a23d9fa: ICbase
	8f4a204: Split operation

2018-03-26  Michael Black  <mdblack98@yahoo.com>

	7c88d0f: TT588

2018-03-24  David Freese  <w1hkj@bellsouth.net>

	bb31cf0: xmlrpc help
	60dcf2e: xmlrpc swap/split
	f6e55f7: Yaesu ID
	47a8dc0: Mode change


=Version 1.3.39=

	fa86d2e: Memory delete
	93e5e53: IC706MKG
	cfc78d0: OS X build script
	3654db2: IC7850
	bb7ddc3: civ tests
	61f49f2: restore ab
	22b57eb: TT550


=Version 1.3.38=

	afe3bbe: xml server
	bc0b5db: IC7100 / 9100
	782310c: sliders
	8facc1a: Icom Split query


=Version 1.3.37=

	318525f: TS990 / xmlrpc server mods
	6ae502c: IC7200 filter width
	ab52166: Rotate log
	c028b78: Get PTT
	72540db: Comm timeout
	77df05d: IC7200/7300 notch
	1591335: TS990 changes
	ab76f02: Remove xmlrpc client
	d4eba84: UI service paradigm
	8e3ed6f: IC718
	d7e240d: IC7200
	7b24e97: Extras drop down panel
	96fc5cd: start-stop
	e5af612: FT-991A
	dbdd895: OS X race conditions
	b1c196e: PTT xmlrpc get
	5c2d2a0: Value by VFO
	7f2cd8b: UI wide power button
	a16b2c9: Comp Level


=Version 1.3.36=

	fc88084: IC 9100
	cc62a5a: K2

2017-10-18  steve AG7GN  <steve.magnuson@gmail.com>

	ce45cb2: IC7100

2017-10-14  David Freese  <w1hkj@bellsouth.net>

	6236378: KH6TY


=Version 1.3.35=

	e10e7fe: FTdX5000 mods
	5d71f8d: mingw-mods
	07d1a43: xml inhibit


=Version 1.3.34=

	a2d2dd4: doc update
	e9628ee: Save/Restore
	9213bfc: flrig shell

2017-07-31  Sean Sharkey  <g0oan@icloud.com>

	22e70f6: FT1000 update

2017-07-29  David Freese  <w1hkj@bellsouth.net>

	34fdb94: IC7300 NR scale
	fa0cdaf: IC7200/7300 compile warning

2017-07-23  Steve Magnuson AG7GN  <steve.magnuson@gmail.com>

	661374f: IC7100


=Version 1.3.33=


2017-07-21  David Freese  <iam_w1hkj@w1hkj.com>

	8443bbe: IC7200 power scale
	f7ec539: IC7300 VFO B
	1c241bb: IC7200 small controls
	15887f6: ATT control
	fe6697a: WIN COMM port


=Version 1.3.32=


2017-06-20  Ernst Schroeder DJ7HS  <ernst.schroeder@web.de>

	115f675: FT900 update

2017-06-16  David Freese  <iam_w1hkj@w1hkj.com>

	81a98ac: Power slider
	4cb23f2: FT-450D
	a19a94a: Break-in Label
	b3c8c2c: INSTALL
	8d552a0: aor5k


=Version 1.3.31=

	7f14db7: Documentation update
	9c1a0f3: IC735
	a5a453a: FT817 CW MODE
	4deacd6: FT-891
	c3e6371: IC7200 Initial BW
	67ed018: TS850


=Version 1.3.30=

	fd596a8: FT857/897 base class


=Version 1.3.29=

	8a18cbb: TS990 update
	8f150ff: FT817
	4f4b560: Xcvr Init
	041ce65: k3 kx3
	73d3a59: AGC button
	b3492e3: BCD/Decimal conversions
	8cd0764: initial bandwidth
	fe8571a: Missing tooltips
	6f5c24a: Polling
	2fc88cd: Exchange-Equalize AB
	20ffb3c: IC7200 mods
	4985a5e: IC7300 update

2017-01-27  Rafael GarcĂ­a  <ea4bpn@gmail.com>

	c8be4d9: TS480SAT update

2017-01-26  David Freese  <iam_w1hkj@w1hkj.com>

	0062796: FT817 metering

2017-01-23  Dave G0WBX  <g8kbvdave@googlemail.com>

	df4e296: PCR1000 update


=Version 1.3.28=


2017-01-20  David Freese  <iam_w1hkj@w1hkj.com>

	5add320: Multiple xmlrpc servers
	cf1b1bb: Separate PTT
	07bf4b5: K2 comments
	c5edf8e: User defined command buttons
	71e5aac: ic7300 update
	5960bd9: IC9100 update


=Version 1.3.27=

	4d24585: New controls
	f86e7d1: TS480SAT extras
	c404c8a: Xmlrpcpp source director
	efbbc70: FT100D
	2fb8bbc: IC9100 mode/bw
	c22d48a: TS990 TS590SG
	5abb5bd: restore keep rig data
	5166fea: TT 550 Pegasus mods
	28f3c34: IC7300 serial defaults
	5ba38d2: TS990 ALC/SWR

2016-07-10  Kamal Mostafa  <kamal@whence.com>

	d9cc0f6: fix XmlRpc tm_mday comparison typo

2016-07-04  Robert Cunnings  <nw8l@whitemesa.com>

	a10a7f2: mxe update

2016-06-27  David Freese  <iam_w1hkj@w1hkj.com>

	c3c68d9: IC756 volume range
	765519d: C11 errors


=Version 1.3.26=

	8547731: IC7200 update


=Version 1.3.25=

	52a21b6: FT900 update
	acf388b: IC7300
	50b07b3: FT950
	9aaab6b: IC-7600 mods
	c5f6adf: UI small sliders
	8b73bbb: IC7200 update
	23604a6: IC7000 exchange vfos
	db07bd2: key_fldigi


=Version 1.3.24=

	29f82e6: K3 KX3 mods
	c1645f0: xmlserver update
	69ae54a: FTdx9000
	295ed35: FT5000 update
	754ba24: FTdx3000 update
	e5429b9: RIG ENUMERATION
	976d2df: FT991
	1d29d8a: TS2000
	7cb8293: FT900
	f511fd9: IC7100 data mode detect


=Version 1.3.23=

	424c33b: FT817 FT857D FT897D
	86cc66f: xmlrpc server
	b4bd89b: FT900
	b6303c1: TS590SG
	76d12b0: MXE update
	47d053c: FT990a
	cd39b31: Set Mode/BW controls
	f5da410: restore xml client
	9d994e6: KENWOOD mods
	7d4054f: IC7800
	7c41ac6: fldigi BW interface

2015-06-08  Kamal Mostafa  <kamal@whence.com>

	74450a4: BUILD_{DATE,USER,HOST}


=Version 1.3.22=


2015-04-17  David Freese  <iam_w1hkj@w1hkj.com>

	f7f87cb: xmlrpcpp
	48a04fb: xml server
	e6b132d: K3/KX3 bandwidth


=Version 1.3.21=

	b02f095: KX3
	45dc545: K3 update
	1f086c2: FSF address


=Version 1.3.20=

	399b37b: TT550 update
	6739d81: fix ab
	ad9bc7e: Rig server
	3bdebb6: no xmlrpc_c io
	179392e: ts2000 update
	418fe19: FT950
	962b96c: xmlrpc timing


=Version 1.3.19=

	08b5c44: xmlrpc error handling
	4aad930: Kenwood transceivers
	f8f01c8: TS450S
	d759736: Transceiver timeout
	b21600f: Scripts
	998fe5d: Yaesu
	ef3ee28: Kenwood
	967734b: TS870S


=Version 1.3.18=

	cb03871: fltk 1.3.3
	d488690: TS2000
	83691fc: Docs
	b85fbff: subdir objects
	696b824: FT950 Osc adjust
	ed5a6ea: FT100D
	bc3fd65: File versus Files


=Version 1.3.17=

	b5721aa: Documentation update
	506125a: FT450D Notch
	1d38b34: IC-9100 update
	c634a85: Power meter remote
	c678b79: Smeter remote
	9f8aeca: touch panel
	da7068a: xml-fix
	f25bd7c: FT450D
	1cf4388: Freq Control
	e94924e: IC 7410

2014-06-12  Robert Stiles  <kk5vd@yahoo.com>

	4bf4a58: doxygen documentation


=Version 1.3.16=


2014-06-06  David Freese  <w1hkj@w1hkj.com>

	ca9bbce: Socket i/o
	0e8e450: FTdx1200 mode

2014-06-04  Kamal Mostafa  <kamal@whence.com>

	67286b3: RTS/DTR restore

2014-05-31  David Freese  <w1hkj@w1hkj.com>

	cce02f3: wait_char
	e93a4fb: virtual-tty-port
	41a0e82: update build scripts
	a244acf: rig home dir
	4e751e2: Dir reorg
	fabad10: FL_APPS folder
	f3a91fc: TT599

2014-03-28  Arvo Järve  <arvo@dino2.dyndns.org>

	b37ce11: FT847

2014-03-26  David Freese  <w1hkj@w1hkj.com>

	f7e0959: TT550 split
	1791191: Disable meter averaging
	ac55457: ic7000 again
	e9d7a8e: ComboBox/ListBox
	cfa02f2: IC756
	45efe8a: License Declaration


=Version 1.3.15=

	3422195: 64 bit void pointer
	fa317c3: tty search
	7732b22: TT566
	6964cb6: TS590S/TS990S/TS2000 controls
	5b340a9: FTdx1200
	e199a62: Send cmd debug
	718f46f: TS-990
	05898d5: Sliders
	c13a20e: Notch controls
	86f1d0b: 7600 split
	9f08704: Restore debug


=Version 1.3.14=

	7f0b9b7: IC7100 mods
	9b1c856: Restore read_bandwidth
	d592682: Default event log level
	224cde7: vfprintf bug on 64 bit Linux systems


=Version 1.3.13=

	a8b451f: default debug level
	f8b1bf7: Compile cleanup
	8ccb54e: Debug level switch
	34530b1: TS590S init
	ff26de5: IC7100
	0016960: FTdx3000
	86dc11b: FT5000
	c53c0a8: MXE build
	899e226: TT588 VfoB


=Version 1.3.12=

	a50060b: Build bin
	79aa597: FT-990
	3c88685: Serial by-id
	c6e9748: FT950
	f04eed9: TS870 split


=Version 1.3.11=

	6aae7e6: fltk m4 script


=Version 1.3.10=

	5d5e739: X11 Package check
	a6d99d4: FT747GX

2012-12-07  Michael Corbin  <kc9lwk@sbcglobal.net>

	42a12bb: PCR1000


=Version 1.3.09=


2012-12-03  Dave Freese (none)  <dave@compaq>

	de5c622: TS480 data port

2012-10-27  David Freese  <w1hkj@w1hkj.com>

	d0e137b: NBEMSapps folder
	d76049e: IC746Pro NR/Split
	77bf112: Combo box update


=Version 1.3.08=

	d7a3b46: IC7600 bw tables


=Version 1.3.07=

	426c50d: IC746/756 family
	46b114d: IC9100
	50351e5: IC735 update


=Version 1.3.06=

	1305004: PCR1000


=Version 1.3.05=

	b6a1cdb: FT450 - TS570


=Version 1.3.04=

	71f1a09: PCR1000
	ec35a89: TS570 series


=Version 1.3.03=


2012-06-04  Terry Embry  <ftembry@users.berlios.de>

	c68f48f: Polling loop fixes

2012-06-04  David Freese  <w1hkj@w1hkj.com>

	a2de5bf: Font Initialization


=Version 1.3.02=


2012-05-31  Brian Miezejewski K5HFI  <fmcane@gmail.com>

	11ad48f: PCR1000

2012-05-31  Terry Embry  <ftembry@users.berlios.de>

	f5cd783: FT950 Band Select

2012-05-07  David Freese  <w1hkj@w1hkj.com>

	6e5c31d: Kenwood transceivers


=Version 1.3.01=

	8aae5bc: Xcvr setup
	d9a461b: FT950 pkt bandwidth

2012-05-02  Terry Embry  <ftembry@users.berlios.de>

	9bd9f5e: FT950/xml_io

2012-05-01  David Freese  <w1hkj@w1hkj.com>

	5df2691: FT950 PKT_U/PKT_L
	e22066c: Kenwood DSP Hi/Lo
	e654106: XMLRPC post to Que
	e6ce673: FT950 defaults
	d474e82: A/B bypass serial loop
	54ce87c: TS590S
	d72e2b9: SWAP A/B

2012-04-19  Terry Embry  <ftembry@users.berlios.de>

	d408b05: IC7000 compression

2012-04-19  David Freese  <w1hkj@w1hkj.com>

	b1c794e: FreqControl

2012-04-19  Terry Embry  <ftembry@users.berlios.de>

	704aa65: FT950 compression
	c58ba5d: FT950 external tuner

2012-04-16  David Freese  <w1hkj@w1hkj.com>

	e8363f2: New User Interface
	2f894b8: BW control color


=Version 1.1.13=

	20fa614: TT516

2012-04-11  Terry Embry  <ftembry@users.berlios.de>

	1069bf5: FT950

2012-04-06  David Freese  <w1hkj@w1hkj.com>

	7169864: VFO paste

2012-04-06  Terry Embry  <ftembry@users.berlios.de>

	3b465e5: FT950 VFO switch

2012-04-01  David Freese  <w1hkj@w1hkj.com>

	feecd1b: FT950 60m offset
	c0d355e: FT960 60m selector

2012-04-01  Terry Embry  <ftembry@users.berlios.de>

	15f2c60: FT950 60 meter

2012-04-01  Andy Hart  <andylhart@gmail.com>

	ad0e023: IC7600


=Version 1.2.12=


2012-03-26  Dave (G8KBV)  <dave@g8kbv.demon.co.uk>

	592e08d: TS870S

2012-03-25  David Freese  <w1hkj@w1hkj.com>

	e772a4d: xml_io 64 bit compiler


=Version 1.2.11=

	3c715ec: Fix fldigi compatibility


=Version 1.2.10=

	6c8e520: FT950 ALC

2012-03-23  Terry Embry  <ftembry@users.berlios.de>

	2f280d1: FT950

2012-03-21  David Freese  <w1hkj@w1hkj.com>

	c47dd35: IC718
	9ce61a6: XML notch

2012-03-14  Terry Embry  <ftembry@users.berlios.de>

	fd977ac: FT950/5000

2012-03-07  David Freese  <w1hkj@w1hkj.com>

	d0f6679: FT950 PKT bandwidth
	a308e49: TT588 mods

2012-03-06  Terry Embry  <ftembry@users.berlios.de>

	73b0aaa: Code cleanup

2012-03-05  David Freese  <w1hkj@w1hkj.com>

	830ad59: TT599 split
	b7bdaf7: FT100 split
	7c68269: TS 480/590S/2000 Split Vfo
	344641d: Xmlrpc reset
	17f61fd: Win32 bottom bar
	245584d: TS-870 fix to rig numbering
	171e3f9: BW control update

2012-02-25  Terry Embry  <ftembry@users.berlios.de>

	4be7250: Read Mode

2012-02-24  David Freese  <w1hkj@w1hkj.com>

	fa1cbee: TS2000 split query

2012-02-23  Terry Embry  <ftembry@users.berlios.de>

	4debc06: serviceAB2

2012-02-23  David Freese  <w1hkj@w1hkj.com>

	35d23c6: TS870
	519f3af: TS590S split
	29a13fc: FT950 bandwidths

2012-02-22  Terry Embry  <ftembry@users.berlios.de>

	610803e: Service A/B

2012-02-22  David Freese  <w1hkj@w1hkj.com>

	87c3f70: TS2000 split

2012-02-20  Terry Embry  <ftembry@users.berlios.de>

	6599ae2: Freq List Alpha Tag - About Change


=Version 1.2.9=


2012-02-20  David Freese  <w1hkj@w1hkj.com>

	0b5bbba: Freq list alpha tag
	808e864: TS2000 Noise Blanker

2012-02-18  Terry Embry  <ftembry@users.berlios.de>

	758be7a: FT950 PKT/FM Bandwidths

2012-02-17  David Freese  <w1hkj@w1hkj.com>

	6c3259a: TS2000 SL/SH

2012-02-17  Terry Embry  <ftembry@users.berlios.de>

	ad07190: Rigbase value initialization


=Version 1.2.8=

	d6c88cc: Service A/B
	2721d1d: On line test

2012-02-16  David Freese  <w1hkj@w1hkj.com>

	3fb4a06: Disabled control bug
	af5641a: Debug Level

2012-02-13  Terry Embry  <ftembry@users.berlios.de>

	80712bc: Saved BW


=Version 1.2.7=

	db19ce7: FT2000 mic input
	fbd12d2: FT950 60m
	10d4a62: FT950 mods
	db3f77b: FT450 mods
	5e4f4a5: Band select

2012-02-01  David Freese  <w1hkj@w1hkj.com>

	4359fb0: FT950 controls
	5498d45: Redraw fault
	bc94a32: FLTK version
	1013a74: FT950 / FT450 mods
	d26af58: TT588 update
	3169bfe: Debug revision

2012-01-03  Terry Embry  <ftembry@users.berlios.de>

	9664223: FT950 defaults

2012-01-03  David Freese  <w1hkj@w1hkj.com>

	4209922: Desktop generic name


=Version 1.2.6=

	8e2982b: Lstep for timing controls

2012-01-02  Terry Embry  <ftembry@users.berlios.de>

	2d92636: FT950 fixes
	c75cebf: Init notch from xcvr
	21bc472: Xcvr auto-on-off

2011-12-29  David Freese  <w1hkj@w1hkj.com>

	3aff859: FLTK-1.3 mods

2011-12-29  Terry Embry  <ftembry@users.berlios.de>

	eb7262a: Poll frequency

2011-12-29  David Freese  <w1hkj@w1hkj.com>

	17c0ed7: IC703 - corrections
	706b6c0: IC7600 additions
	55a4f58: IC703 controls
	eee8a62: Power meter scales


=Version 1.2.5=

	e8402b8: Polling intervals

2011-12-20  Terry Embry  <ftembry@users.berlios.de>

	6d40a12: FT950 Noise reduction
	e4b8c48: FT450 Noise Reduction

2011-12-19  David Freese  <w1hkj@w1hkj.com>

	ef680de: Extras Tabs
	1f91ddd: Meter dialog

2011-12-19  Terry Embry  <ftembry@users.berlios.de>

	36d5fb5: FT450/950/2000/5000
	a04ea4d: Volume mute
	d35a878: Bandchange race fix


=Version 1.2.4=

	2843ca7: FT950 Mic Gain
	25a229c: FT5000 mods
	48a2dfb: FT-450 CW controls

2011-12-16  David Freese  <w1hkj@w1hkj.com>

	13b7e4f: Slider size

2011-12-16  Terry Embry  <ftembry@users.berlios.de>

	df51d9c: FT950

2011-12-16  Terry Embry (KJ4EED)  <mrtembry@yahoo.com>

	1533a56: Send Command exclusive

2011-12-16  David Freese  <w1hkj@w1hkj.com>

	d970cf3: Meter filters
	a897030: FT950 BW
	9ebc94b: Meter mods
	54f6b16: FT1000MP meter scales
	20f66e2: Hide controls
	ddf83b1: BAND selector

2011-12-06  Terry Embry  <ftembry@users.berlios.de>

	af88aa1: FT950 corrections

2011-12-06  David Freese  <w1hkj@w1hkj.com>

	45997d9: Vox On Dataport
	8bddd77: Pwr Metering


=Version 1.2.3=

	9b03699: UI minimize
	8538d05: TS480


=Version 1.2.2=

	b3ae963: TS590S


=Version 1.2.1=

	b8efca5: TS590 SH/SL/IS mod
	efad166: TS590S sh/sl
	1d06f83: key fldigi
	65f3fbd: FT5000
	364c5f8: TS480 center/width
	5c173d5: TS480 fixes
	d0b764e: TS480 DataPort select
	a5bada1: TS480 Mic/RF/Shift
	78434b3: TS590/480 series
	06766bf: TS480 menu_045
	93aefad: IC703
	6a1f7e3: TS480 metering
	627beb6: Volume restore
	45696b3: IC7000 read notch
	4fccae4: K2 smeter/pout
	aab7579: K2 split


=Version 1.2.0=

	9d02acf: K2 get split
	29953d7: K2 ptt/vfo-select
	12942c5: K2 low/high power
	9114a67: TS2000 swr/po
	d7d549c: FT950 manual notch
	5367c5d: TS2000 set volume
	66cbe4b: TS2000 queries, AM
	431ca8f: TS2000 defaults
	f082550: Deprecate d3572dc
	654f07f: FT950 Manual Notch
	d3572dc: TS2000 BC string
	2270d84: T2000 MBC
	ccbe938: TS590S SL/SH/FW corrections
	a971b72: K3 power control
	27bf270: FT950 manual notch
	f098dc3: TS2000 fixes
	e21d24f: TS480 series
	ff95d7f: TS590S
	455e650: TS480 series
	8913e9e: TS2000
	93d08c6: DSP lo/hi cut controls
	66b3b13: FT450 Notch
	7a6b96d: FT950 Manual Notch
	dc28189: TS480 HX/SAT
	e77ff21: K3 power control query
	aaedcf8: Copyright
	51310a9: K2 A/B

2011-06-10  Rich Newsom  <wa4sxz@cox.net>

	9551b86: FT857D meters

2011-06-09  David Freese  <w1hkj@w1hkj.com>

	7253b0b: FT450/950
	0ada8a5: TT588 RADIO/REMOTE
	22507e2: FT950 bandwidth
	8d70315: IC7xxx xcvrs
	46c3fd1: FT450 extras
	9d550ba: FT847 read freq/mode
	41b1251: FT950 extra controls
	b09df7f: Serial Port Discovery
	7365f30: FT950 AF/RF
	dff9047: FT950 split
	869dedb: rig_io DEBUG
	ee2ec21: Variable polling
	e4f8155: FT847
	6e98ae0: K3 PTT
	2426653: FT950 update
	cc0d347: Debug mods
	8c0e996: FT857/897
	6a9f177: Xcvr Extras
	33ed8c3: IC746/756 PRO series
	a8dddc8: TT550 controls
	1b82bc3: Queue mutex
	57e08ce: TT550 initialization
	95d455c: Xml queue
	2e02a2f: User interface
	80e7dda: waitN
	4c239f4: TT550 start up
	df5c74f: FT100D
	6d3cff3: A/B button initialize
	29340a5: Poll frequency
	0ac0323: IC746PRO
	0046e10: FT100D parse info
	b07e66f: DTR/RTS PTT
	e44a2d4: FT950 update
	2925b80: Connect indicators
	56daafa: K3 rfgain limits
	8c30bdb: FT100D
	1f23cf3: TT588 get data
	eb1c5d2: K3 Fine tune test
	ccd8d0d: TT588 two vfos
	e143e58: FT100D get info
	15690a5: XMLRPC address/port
	ccabe29: ICbase WARN
	c7dd9b4: K3 if-shift / mic gain
	78fc39d: TS570 duplicate statement
	3fb4cf7: Initialize Notch/IF_shift
	3c6bfc3: FT950 update
	654171a: TT588 Orion-II
	4b9f92f: TT566 update
	a3a2618: FT100D update
	a7c16ec: TT588 update
	9ae9a2a: IC756PRO3 split
	974d78c: FT100D bug fix
	b1c536e: TT588 if shift range
	e143828: K3 read options
	a47b892: IC7000
	aa77fff: IC756PRO3
	284a765: Memory List
	27eb3d1: TT588 additions
	d51a394: PTT for Voice
	60bad67: TS480HX events
	00bd636: IC706MKIIG set mode/bandwidth
	d3c9e8e: IC7000 bug fixes
	5fae473: FT100D event levels
	befcb95: Polling bug
	e4c0edf: TT550 events
	bf34ec1: IC756 A2B
	90a32a6: K3 revert
	2a68d6f: IC718 split
	a8fdef6: IC7000 missing controls
	32f3154: IC756 Series
	7c52305: Yaeusu series
	d5a3a0a: IC series
	9fb9fe8: K3 command query
	b4f2298: K3 OM fix
	f003d7d: K3 alt_vfo
	5958e0c: TT550 A/B
	a695ac3: IC7000 erroneous code bug
	ba79896: TT550 control panel
	a70a812: TS570 IF shift
	78253b3: IC746PRO
	807ad16: K3 controls
	bf04b82: Debugging
	67240d9: Alt Vfo Adjust
	8a7e582: K3 delayed response
	755a91f: FT920
	c5be00b: IC746 series
	bbd87b7: Xcvr DEAD
	344433a: Poll split
	50b8101: K3 get split
	cb6c3e5: KENWOOD split
	109c911: K3 initialization
	3b39099: TS450S vfoB
	5c75da9: TS590s showresp
	e97c2a6: IC7000 notch calibration
	02d1ed5: Icom Notch conversion
	e15db3c: TS590S vol control
	4581863: Split
	68f35a1: IC7200 mic gain
	66f3cb4: TT599 shutdown
	8d79846: TS570 metering
	8186404: IC7000 Notch/IF shift
	cbce8e9: Control polling
	3fec974: TT599 get power
	1c3053a: TS570 bug fixes
	00ef8a5: IC7000 bug fixes
	bdfcca0: Get power control
	63277a4: ICOM response
	bb40e21: TT599 Pwr-Swr
	0323877: Freq List
	78e7760: IC718
	dfa146b: FT920
	980ad5e: IC7000 bug fix
	4a74378: IC xcvr family
	7f2ae93: IC7000
	4406d39: TT599

2011-04-24  David Kjellquist  <dave@kjellquist.com>

	e1748e5: TS570

2011-04-23  David Freese  <w1hkj@w1hkj.com>

	170a5a7: Polling
	abf4489: TS480HX
	d77da92: IC7000
	361e437: IC7200
	5b2e35e: IC718
	57ace2f: IC7000
	3ddd26d: Event Log
	bc487a9: K3 split
	a2dcfe8: IC7200 metering
	baf9fea: Keep - Restore
	ad5116a: K3 bandwidth control
	ab17344: Color Dialog
	3221cdb: A-B Select force display value
	10e4b23: Compile Warning
	bd5755f: K3
	0f22450: Select A/B
	fd99d18: Select A/B
	b11057e: RAY152
	c7dff8d: TS480HX/SAT
	29f6884: IC7200
	44566d0: K3
	35ec168: FT857D s-meter
	26d8185: TS480XH power control
	70bd622: TT588 RF gain
	9df14fb: Serial Stream Parsing
	68ac858: Colors-Scheme
	2fbec07: TT599
	927db3d: TS2000
	1361905: TT538 code clean up
	7e55bda: System colors
	65dc4b1: Meter colors
	f9204b6: TT588
	5ff58ac: TT550 Auto Notch
	ef7b1ce: TT550 smeter


=Version 1.1.3=

	7fad31f: IC7200 Vfo B
	adfb091: TT550
	0c7b089: IC7600 RTTY fault
	71649a4: Adjust bandwidth
	ffd29d7: IC7200 7600 TT550
	c0c3821: FT100D ABA init
	c38b844: TS590S s/pwr meter


=Version 1.1.2=

	b54df4a: TS480HX/SAT update
	3444ca3: TT550 noise reduction
	4465b45: Meters / Colors
	4c5b946: Serial thread timing
	95ca6ce: TS590S smeter


=Version 1.1.1=

	145649f: TS590S update


=Version 1.1.0=

	8258086: TT550 update
	0a5bdc1: TT538 vfob
	2c5ade4: TS590S vfo read-write
	2b915d6: TT550 remote
	ef29ed7: A-B startup race
	7e07540: TT550 keypad
	95d95bc: FT847
	bcab820: TS590 ptt
	493b695: TS2000 update
	277941b: FT1000MP Tuner
	6abfdd2: TS570 compile error
	25946ef: IC7000 auto notch
	b4708a3: FT100D
	d814bc8: FT1000MP def bw
	5f1fbcd: IC series split
	4d20762: Default BW
	c53afce: IC7600 A/B mods
	c541e1a: FT1000MP swr/alc
	6abdb0c: RAY 152 smeter
	21b2310: FT1000MP power scale
	bb21b62: IC7600 update
	c01be68: FT1000MP Bandwidth
	b1fe8c6: Button A/B
	268f4fb: ICOM select race
	867f0d0: RAY152 - vfo


=Version 1.0.1.1=

	80633b6: FT1000MP vfo precision
	78c3697: TT516 update
	beaff06: Raytheon 152
	de3bebd: TS590S
	fbf17df: FT1000MP mods
	7432862: IC746 family


=Version 1.0.1=

	f960a7d: TT599 cleanup

2011-01-31  Terry Embry, KJ4EED  <mrtembry@yahoo.com>

	d33ef33: FT950 update

2011-01-26  David Freese  <w1hkj@w1hkj.com>

	d3a2af4: Que management
	ae0347b: IC7600 IC746 FT450
	9cb6b9d: Orion-II smeter
	d2a5697: Eagle CWU-smeter
	e78c7fb: Orion-II Smeter
	0f1eea4: Exception handling
	c10115c: TS450S init
	01d6148: Orion-II
	72b812d: Eagle split
	55d653b: Eagle-Orion-II
	ff67b97: Eagle-Orion getBW fix
	a9ab74c: Home Dir
	346c3c0: ft450 tests
	04c86fd: Que processing
	43e4ead: 64 bit recast
	535ba2f: TT566-TT599 correction
	61b6eba: Orion-II TT566
	997229c: TT599-Eagle
	e3a3124: TT 535 Delta-II
	9ef17a0: TT516 dual vfo
	397984a: A B vfo select
	ffebee9: IC706 mode type
	8a07b42: IC7200 digi mode
	4e7d1f3: H/W PTT control
	4022e57: ICOM dual vfo
	4ec4702: Parse Args
	92d90b9: Dual VFO mod
	61ea3d2: VFO A-B
	3d64fc0: K2 Update
	68ae4e4: Rig Ordering
	699c420: IC703
	626d3b0: Config Dir
	c1027a8: TS480 HX/SAT
	9b8479b: Combo Widget
	bc9b4c3: TS480 HX/SAT
	054e92a: TS450 update

2010-07-30  Frank Tomesh, AB2ZO  <fjt@ka1gl.net>

	f1a4670: IC703 seg fault fix

2010-07-17  David Freese  <w1hkj@w1hkj.com>

	6e82fef: Echo suppression
	d57238d: IC703 bug fixes
	9a6e9c4: IC703-CIV
	1d5dc71: IC7200 update
	7b3adae: IC718 update
	7cacc8a: TT550 Auto Tuner
	6654181: RTS-DTR ptt
	8091162: TT-538 Po/SWR
	66f7861: Menu update
	b567f0f: Restore Xcvr
	a58d4f6: FT817 mods
	eda4e7e: Fluid source
	8654ddb: Read Stream

2010-04-30  Jason Turning, N6WBL  <jturning@sbcglobal.net>

	2594d0a: IC718 Auto Notch

2010-04-29  David Freese  <w1hkj@w1hkj.com>

	b97848d: ICgeneric split
	500628b: IC703 Compression
	739a7b4: IC703 / TS450S

2010-04-29  Jason Turning, N6WBL  <jturning@sbcglobal.net>

	32492ac: IC718 additions

2010-04-27  David Freese  <w1hkj@w1hkj.com>

	3f5e11e: IC718 rf gain
	52f8e17: Added rigpanel.fl
	04ef71f: IC7200 Data mode
	cf066d3: IC718 corrections
	5df3c55: ICOM update
	b0b0afc: Freq Control Widget
	9d9864b: IC7200 changes
	195fcd9: IC718
	526150b: K3 mode
	a2a004d: IC7200
	70f138e: K3 bug fixes
	8ff9611: Build static distribution
	90250ee: K3 mods
	3f7ac25: Exec during config
	5c111de: SWR enable
	b36ef3c: Power - 7600

2010-04-13  Andrew Hart, VE3NVK  <andylhart@gmail.com>

	96005f5: IC7600 update

2010-03-29  David Freese  <w1hkj@w1hkj.com>

	3fbeee1: FT1000 series
	fa215e2: OS X serial device
	e2a1ff0: FT1000 FT1000MV update
	fe2bc28: TT550 AM mod
	8079933: DLL dependency
	462bc39: IC7000 mods
	e087a07: TT550 bug fixes
	713b0a7: TT-538 gain table
	c324e27: IC746 / Pro Disassociation
	37f9660: FT1000MV
	018b344: FT1000
	5c232a5: FT450 Volume range
	e53f04c: FT2000 debug strings
	a59c478: TS2000 Mic Gain
	b240047: IC-746 BW
	20c3253: Split Operation
	5b17be2: TT-550 update
	f8b355b: K2 serial baud rate
	8ee433c: Pegasus TT550 mic gain
	2792b74: On Line Help link
	3c372e6: Omni-VII TT588
	568ff59: Jupiter-TT538 update
	ae6a40a: TS570 update
	ae2ccbd: FT450 update
	5a807ed: Jupiter update
	800af3a: Jupiter-TT538 update
	ecbe0a5: TT550 Vfo Adjust
	c018a65: TT550 new mode
	4d56b12: XMLRPC sync delay
	881c3ed: OS X missing include
	f7dbe5d: WIN32 build fix
	61f1e71: Status File Change
	1329194: Serial Port Discovery
	3373096: TT-570 update
	8a0f254: TT-538 update

2010-02-04  André - M0JEK  <m0jek@me.com>

	9f0d0bc: OS X exit on start

2010-02-04  Chris Sylvain  <kb3cs@arrl.net>

	ee6911a: TS-570 S-meter scale adjusted
	4341cab: Add initial Kenwood TS-570 support
	35e8af5: Use modulo arithmetic on loopcount in serial loop
	c581acc: TS570 bandwidth control and basic metering

2010-01-17  David Freese  <w1hkj@w1hkj.com>

	4e275fe: Use defaults fix
	658c462: TS2000 fix
	d517094: Use rig data
	1b13be1: TT550 noise blanker addition
	02a6077: TT538 / TT550 additional controls
	edc73ce: TT538 / TT550
	8ecf733: FT450 Preamp Read
	5ff0ca1: TT550 work
	c9a9206: Jupiter-Pegasus DTR line
	ca14ecd: FT767 transceiver
	88db85e: XML_IO Race Condition
	8b336f5: FT100D fix
	98fc2e9: XMLRPC mod
	681d3ca: Mode-Bandwidth Annunciation
	bdbc63a: FT-857D update


=Version 0.9.98=

	84f04dd: FT-857D get_mode correction


=Version 0.9.97=

	2a4f12a: Socket not available checks


=Version 0.9.96=

	8017748: Improve transceiver response
	848b980: Exception handler


=Version 0.9.95=


2009-12-05  Stelios Bounanos  <vcs@enotty.net>

	40c3797: Use XML-RPC

2009-12-01  David Freese  <w1hkj@w1hkj.com>

	ab5c7e5: Thread conflict fix
	f0acfb4: Socket allocation
	a5f326a: Mem Leak Fix


=Version 0.9.94=

	0b301f0: FT857D mod
	b5ef8e3: Window Decoration
	09ec7ef: OSX Build mods


=Version 0.9.93=


2009-11-27  Stelios Bounanos  <vcs@enotty.net>

	0a75d3d: Disable win32 snprintf workaround


=Version 0.9.92=


2009-11-26  David Freese  <w1hkj@w1hkj.com>

	e126caa: No Curl Mod


=Version 0.9.91=

	f902afc: Dependencies
	bd30e7a: Build fixes

2009-11-23  Stelios Bounanos  <vcs@enotty.net>

	59a7b99: Fix OS X compilation
	7cb8e32: Fix resource include
	818bb9d: Add pthreads-w32 build flags


=Version 0.9.9=