-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
2345 lines (1852 loc) · 76.4 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
2011-11-15 Remi Chateauneu <[email protected]>
4103a07: WEFAX error logging fix
2011-11-15 David Freese <[email protected]>
ff34b3c: Restore Log Sort
4aca1f1: eQSL update
389ce71: eQSL thread
2011-11-12 Remi Chateauneu <[email protected]>
dab85dc: Wefax enhancements.
21bcc18: Use Logbook record
2011-11-12 David Freese <[email protected]>
7f30f29: eQSL
2dae98d: eQSL
b0e37af: Exec macro
3288d8d: QRZ on-line lookup
bf88127: HamQTH update
15ff024: HamQTH
b5e788e: Auto-send
2d1d484: RSID defaults
db2803d: NBEMS-FLMSG Directories
9fd70bc: Resize fault
bcdc9cf: RSID limit fault
ece4fb7: DTMF debug
0b041f6: Multi QSY bug fix
cb5ddcd: Multi QSY
f63a77a: Common QSY
8630feb: Revert qsy patch
6bc6fc8: HamQTH lookup
f96fb25: Packet debug
cf3bed3: REV macro tag
39ebd8b: RTTY bandwidth
5c0da52: MFSK soft decode
2011-10-06 Remi Chateauneu <[email protected]>
7542ae9: Multi-QSY
2011-10-06 David Freese <[email protected]>
ee1747d: MACRO code cleanup
153e1e8: </EXEC>
ddab268: <EXEC>...</EXEC>
0388d6a: !Queue reset
fdf5fe0: Timer delay
3df6c3a: Olivia tone/bw choices
e3e2703: Macro Edit
58c1bd8: Macro Editor
6b39f52: WWV xmt mode
1c8cfca: Scheduled Macro
ca4c595: RTTY baud
bf7ff41: CW/RTTY init fault
75aa9a8: NULL modem
502e62e: <!IDLE
d1a574c: Timing race
95cc04a: Control-Z bug fix
c62a395: NULL modem
41a9daa: Queued QSY
b88931e: CW QSK
def0e07: MT63 eot mod
2011-09-09 Chris Sylvain <[email protected]>
7b2ecb6: PACKET long blobs
2011-09-09 David Freese <[email protected]>
1f6398e: Delayed macro timing
9a26985: Log Server lookup
6a03241: Delayed Tags
2011-09-06 Chris Sylvain <[email protected]>
31bfb98: PACKET max level
2011-09-05 David Freese <[email protected]>
563d667: Inline macro tags
7184fb8: DTMF decoder
d6eae02: CW Prosign defaults
2011-08-30 Remi Chateauneu <[email protected]>
3f08ee9: Macros code cleanup
2011-08-30 David Freese <[email protected]>
ff3b0b2: DTMF class
3113c68: DTMF encoder
2011-08-16 Chris Sylvain <[email protected]>
4942a0b: Packet audio boost
2011-08-14 David Freese <[email protected]>
8826d4f: Wide Cursor Tracks
4f0acd0: Log resort add record
fd8d86f: New Macro Tags
4478165: RTTY MARK coloring
60947aa: RTTY MARK frequency
381b809: QSY macros
2011-07-13 Remi Chateauneu <[email protected]>
f9a459a: Added wefax::adjust_metric method.
1da9ed1: modem::display_metric now sets the member modem::m
2011-07-10 David Freese <[email protected]>
07c12e0: TX Attenuator
2011-06-29 Pierfrancesco Caci <[email protected]>
12714eb: CW Offset optional
2011-06-29 David Freese <[email protected]>
c2d0b93: Pkt compile warnings
2011-06-29 Remi Chateauneu <[email protected]>
dc9edc1: WEFAX compiler warnings
406a5ea: Wefax improvements
732f12d: Wefax fixes
cfbfe22: Added XML-RPC functions for Wefax
2011-06-27 David Freese <[email protected]>
f77b48a: XMLRPC linking error
2011-06-26 Pierfrancesco Caci <[email protected]>
eda79c4: Swap mode/frequency change from frequency list
2011-06-18 David Freese <[email protected]>
b0c6941: XLOG save with xmllog
13819f5: Logbook server
360eedb: Logbook client
27b16f2: Logbook County
2011-06-11 Kamal Mostafa <[email protected]>
6e0cd5f: Mode_info table restrictions
2011-06-06 Pierfrancesco Caci <[email protected]>
af057a4: K3 CW-QSY
2011-06-06 David Freese <[email protected]>
6440654: TX attenuator
2b89e69: LOG.ADIF export
ec6104e: Duplicate #defines
2011-05-23 Kamal Mostafa <[email protected]>
8c066af: GNU/Hurd build fix
2011-05-23 David Freese <[email protected]>
ff3e162: Spot-notifier
2011-05-23 John Phelps, KL4YFD <[email protected]>
ab1602b: High baud rate Dom/Thor
2011-05-23 Chris Sylvain <[email protected]>
4931d1d: Packet Modem
2011-03-23 David Freese <[email protected]>
b74102f: Config defaults
485a633: No rig mode selection
f6bb403: wo save status
e04d5f6: flmsg auto start
91d9385: Wrap File reception
c054ee6: EXEC win32 macro tag
2011-03-06 Stelios Bounanos <[email protected]>
e987c66: 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
96419d7: Update manual pages
75e0eba: Fix main window title modification
0467a41: Fix PulseAudio backend
b8d160d: Fix compiler warnings
2010-01-31 David Freese <[email protected]>
c5ca09a: Configure Dialog
03eedc4: Olivia Divide by Zero Error
3333585: DUP indicator
b895c1a: Olivia Noise Estimator
d4540c0: Waterfall Offset
5c3dd09: Diamond Indicators
2010-01-28 Stelios Bounanos <[email protected]>
37ffd69: Update command line argument handling
2010-01-28 Chris Sylvain <[email protected]>
80ca36a: Make CPU speed check information available upon demand
0936615: Fix llabs() namespace ambiguity
2010-01-28 Stelios Bounanos <[email protected]>
78b515c: Add verbose log level
25e2c82: Rig control frame tweaks
2f9a0a2: Add rig.get_name
b23f5d5: Fix table widget
3bbb6ea: Fix wizard crash on OS X
2010-01-27 David Freese <[email protected]>
6b40f6b: RTTY demodulator
eb9a385: Rig control changes
e87b9df: Logbook empty record
29e891e: Config Dialog Cosmetics
6354484: RTTY mods
2010-01-25 John Douyere <[email protected]>
33075e3: PSKR DCD detector
2010-01-22 David Freese <[email protected]>
a06bf93: S/N evaluators
d84b060: RTTY decoder mods
93bedef: RSID fft processing
afd3adc: HELL AGC improvement
2010-01-12 Stelios Bounanos <[email protected]>
5b9ea76: Add rig control XML-RPC methods
ec51533: Disable frequency locking in qsy
5d3732c: Add wizard
af78f34: Improve RSID QSY functionality
2010-01-08 David Freese <[email protected]>
86bbd55: Initial UI
56610a9: NOLOG alternate Callsign entry
2010-01-08 Stelios Bounanos <[email protected]>
239ff98: Adjust View menu
2010-01-08 David Freese <[email protected]>
276e769: Xchg In capture
4cd90d3: WF freq limit
eea0287: Auto file transmit
c762969: CSV Export
75be29e: Debug code removal
ddc5790: Modem Initialization
6552c16: CSV Export
2010-01-06 Stelios Bounanos <[email protected]>
edb217c: Change waterfall focus handling
df5c3ff: Improve mode cycling
2010-01-06 Chris Sylvain <[email protected]>
0aa643b: Add keyboard shortcuts
2e476a3: Open PSK Browser only when last mode is a PSK mode
2010-01-06 Stelios Bounanos <[email protected]>
bf235e2: Update INSTALL
bb537ed: Update README
2010-01-06 David Freese <[email protected]>
9f9e738: UI adjustments
ca0e9a8: MS Excel compatibility
2010-01-02 Stelios Bounanos <[email protected]>
0ec66d1: Add ID mode exceptions
2010-01-01 David Freese <[email protected]>
4bf78c6: CW Squelch
d494b8a: QPSK Reverse
5d4ac2d: ARQ parser
afc5861: Olivia Mods
2009-12-30 Stelios Bounanos <[email protected]>
4380a15: Fix xmlrpc locking
c7eb9ac: Clean up xmlrpc
2009-12-30 David Freese <[email protected]>
6bb2a5c: Revert "XMLRPC set_freq bug fix"
b751b9d: THOR soft decoding
087b4aa: XMLRPC set_freq bug fix
8e8b418: Auto Extraction bug fix
2009-12-18 Stelios Bounanos <[email protected]>
56afe38: Add new RSID codes
4eb51ba: Fix rig mode menu
8af1511: Improve rig control methods
2a14309: Fix Fl_ComboBox
80a6ad4: Add new XML-RPC methods
b5edfc2: Improve XML-RPC log.get_rx method
38f76f7: Save PSK Browser search string
613ecfa: Store old event logs
fdc2cdf: Lower slow CPU speed test threshold
2009-12-18 John Douyere <[email protected]>
645b74c: THOR squelch adjustment
58d86f6: PSKR - PSK63F - new modem types
2009-12-08 Stelios Bounanos <[email protected]>
d4e0a6d: Add support for persistent xmlrpc connections
2009-12-08 David Freese <[email protected]>
f5d3e46: Gaussian Noise Generator
2009-11-29 Stelios Bounanos <[email protected]>
d952ad4: Fix pkg-config error
2009-11-28 David Freese <[email protected]>
69cb512: RxID Save
b4dba6f: Callsign field size mod
2009-11-27 Stelios Bounanos <[email protected]>
53a1e6b: Change arq class member types
78d5e4d: Disable win32 snprintf workaround
aaaef29: Remove unused variables
ab0d77f: Add missing USE_X checks
b3d0265: Update crash handler
483b537: Fix LDFLAGS
7e39599: Fix custom pkg-config macro
b06339d: Fix conditional pkg check
2009-11-18 David Freese <[email protected]>
c226978: Hamlib build fix
04992b1: Rig CAT mods
72959b6: RigCat Mods
53659c4: Hamlib mod fix
b6a7cb6: Hamlib-RigCAT mods
306e6c1: Minimalist GUI
d85b974: Hamlib mod
2009-11-06 Stelios Bounanos <[email protected]>
0997c47: Distribute common resource file
52caf9b: Fix guide generation
2009-11-05 David Freese <[email protected]>
04a9bfc: Macro Tags
2009-11-05 Stelios Bounanos <[email protected]>
5c856a9: Restrict FLTK API version check
2009-11-04 David Freese <[email protected]>
ade6427: WAIT macro
d02a3c8: RSID Macro Tags
18f4af1: Flarq email folder
d60d6d9: Macro Save Log
b99366d: No Rig Save
2009-10-26 Joe Veldhuis <[email protected]>
9173537: Base Rig
2009-10-26 John Douyere <[email protected]>
db836cc: PSK500 Addition
2009-10-24 David Freese <[email protected]>
65f70cd: WF Limits
4fa12df: ARQ RSID controls
6e4737d: RST Out clear bug
55168db: wfdisp-mod
05a62fa: PSK250-AFC
856b5ed: Rx/Tx Menu
abedc7c: Waterfall background
df226c9: Min-Rig-Log Panel
c9560ea: Macro Timer
ff7d941: Flarq mods
2625212: Log save bug
d1fe543: GUI adjustment
c092d62: Rx Contest Popup Menu
3d9952e: Contest Logging
e62b52f: ENTER bug fix
3e464b8: Docked Scope
0ecc899: Macro Timer
11b82cd: Stop Timer Bug
5333ee2: Focus Mod
45239f4: Internationalization
cc78045: Minimal UI
273622c: UI - minimized
7163ecb: RigCAT dialog
bc78904: KISS update
159ba1e: KISS update
6440fa5: KISS
9faebb1: Flarq Directory Structure
9d9d56b: Talker Socket
2009-10-14 Stelios Bounanos <[email protected]>
c574685: Update win32 resource files
1d2f578: Fix threads/exceptions bugs on mingw32
ecc297b: Revert "Hamlib Exception Handling"
2009-10-09 David Freese <[email protected]>
526c222: Macro bug fix
5733c10: Macro bug
d6fc376: Wrap Extract
536e251: Macro TUNE
ab565fb: Feld Hell Mod
615dd34: Text file out
a5e17e8: Logbook read bug
e0f86c7: TX Control Code fix
05ff91e: NBEMS
8a97f6b: Hamlib Exception Handling
7fb9639: RigCAT mods
2009-09-30 Stelios Bounanos <[email protected]>
e4e1af2: Fix silent rules
2009-09-23 David Freese <[email protected]>
fc18f87: Browser Discovery
2009-09-22 Stelios Bounanos <[email protected]>
5626e1c: Add silent build rules
8ae5b22: Do not use -rdynamic on win32
2009-09-22 David Freese <[email protected]>
a318522: Code cleanup
d373c26: Thor squelch mod
2009-09-17 Stelios Bounanos <[email protected]>
0f96bc7: Fix llabs call
07bf0c4: Only set stop_bits for serial port rigs
67ff721: Fix format string
2009-09-16 David Freese <[email protected]>
60ca5f0: rigCAT bug fix
4e19f03: rigCAT mods
f9423b4: Serial i/o Stopbits
765c6d9: Dom/Thor mod
fbcd160: QRZ lookup
d36b5de: ARQ / RSID mod
2009-09-08 Stephane Fillod <[email protected]>
a06482d: Some more work on french l10n
4287bd0: More i18n
2009-09-04 Stelios Bounanos <[email protected]>
71f2531: Remove g++-3 support via boost
ed74dfb: Update README
2009-09-02 David Freese <[email protected]>
5e35ec0: Menu bar ui mods
da2cc3b: RSID ui mod
df65003: RSID eot change
2009-09-01 Stelios Bounanos <[email protected]>