-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
5137 lines (3397 loc) · 132 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-12-06 Alexandru Csete <oz9aec at gmail.com>
* src/about.c:
* src/gtk-sat-module.c:
* src/gtk-sat-module.c:
* src/sat-info.c:
* src/sat-pass-dialogs.c:
* src/sat-pref-qth.c:
* src/sat-pref-rot.c:
* src/sat-pref-rot-editor.c:
Fix typos (bug 3451841).
2011-11-23 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-event-list-popup.c
* src/gtk-sat-data.c
* src/gtk-sat-list-popup.c
* src/gtk-sat-map.c
* src/gtk-sat-map-popup.c
* src/gtk-polar-view.c
* src/gtk-polar-view-popup.c
* src/gtk-single-sat.c
* src/sat-info.c
* src/sgpsdp/sgp4sdp4.h
Escape satellite nicknames and use them when in markup.
(Bug 3441490: Satellite Nickname Not escaped for PANGO.)
2011-11-22 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-sat-selector.c
Apply compare function to all categories.
2011-11-21 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-sat-map.c
Apply consistent checking of pole to eliminate disagreements.
(Bug 3437555: Graphical Glitch Plotting Footprints near pole)
* src/gtk-sat-list.c
* src/gtk-sat-list.h
* src/gtk-event-list.c
* src/gtk-event-list.c
Bold entries for satellites above horizon.
(Feature Request 3169710: Highlight satellites within range in the list view)
* src/gtk-single-sat.c
Eliminate segfault.
2011-11-13 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-sat-module-popup.c
* src/gtk-rot-knob.c
* src/gtk-sky-glance.c
* src/gtk-rig-ctrl.c
* src/gtk-sat-list.c
* src/gtk-sat-module.c
* src/gtk-sat-list-col-sel.c
* src/gtk-sat-selector.c
* src/gtk-single-sat.c
* src/gtk-polar-plot.c
* src/gtk-event-list.c
* src/gtk-sat-map.c
* src/gtk-freq-knob.c
* src/gtk-rot-ctrl.c
* src/gtk-azel-plot.c
* src/gtk-polar-view.c
Eliminate compiler warnings.
2011-11-12 Charles Suprin <hamaa1vs at gmail.com>
* doc/um/gpredict-user-manual.odt
Update user manual for GPSD and other features.
* src/gtk-sat-module-popup.c
Sort satellite list in popup.
* src/tle-update.c
Change decision of two versus three line tle's to do simpler checks first.
2011-11-06 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-sat-map.c
Add comments.
* src/gtk-polar-view.c
* src/gtk-polar-view.h
* src/gtk-polar-view-popup.c
Eliminate duplicate code in polar view and the popup.
2011-11-05 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-polar-view.c
Remove memory leak.
2011-11-03 Charles Suprin <hamaa1vs at gmail.com>
* src/qth-data.c
Maintain Maidenhead grid (length 4 characters) for qth in qra field.
2011-10-29 Charles Suprin <hamaa1vs at gmail.com>
* data/trsp/37841.trsp
Move SRVMU to correct catalog number.
* data/trsp/37841.trsp
Add transponder data for JUGNU.
* src/gtk-event-list-popup.c
* src/gtk-sat-list-popup.c
* src/gtk-sat-map-popup.c
* src/gtk-polar-view-popup.c
* src/gtk-single-sat.c
* NEWS
Add current pass menuitem to popups. (Bug 3292729: Show next pass shows the current pass.)
2011-10-28 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-sat-popup-common.c
* src/gtk-sat-popup-common.h
* src/gtk-sat-map-popup.c
Attempt to resolve "Show next pass shows the current pass".
2011-10-27 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-event-list-popup.c
* src/gtk-sat-list-popup.c
* src/gtk-sat-map-popup.c
* src/gtk-polar-view-popup.c
* src/gtk-sat-popup-common.c
* src/gtk-sat-popup-common.h
* src/gtk-single-sat.c
* src/Makefile.am
Consolidate popup callback functions into single function and file.
2011-10-26 Charles Suprin <hamaa1vs at gmail.com>
* src/tle-update.c
Read .sat files only when there is data to compare.
* src/tle-update.c
Restructure satellite name test and add "OBJECT A" name type to list for replacement.
2011-10-23 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-sat-map-groundtrack.c
Use more robust check on orbit change time.
* src/gtk-rig-ctrl.c
* src/sat-debugger.c
* src/sat-pref.c
* src/sat-log-browser.c
* src/mod-cfg.c
* src/loc-tree.c
Eliminate calls to deprecated gtk_box_pack_start_defaults.
* src/mod-cfg-get-param.c
* src/mod-cfg-get-param.h
* src/gtk-sat-map.c
* src/gtk-polar-view.c
Migrate satellite map and polar view to single mod-cfg functions for getting lists of integers.
* data/trsp/37839.trsp
* data/trsp/5580.trsp
Add transponder data for Prospero and SRMVU satellites.
* src/gtk-sat-module.c
Replace part of satellite update with call to predict_calc.
2011-10-13 Charles Suprin <hamaa1vs at gmail.com>
* ChangeLog
* src/qth-data.c
* src/save-pass.c
* src/gtk-polar-view-popup.c
Eliminate unused variables to clean compiler output.
* ChangeLog
* src/sat-log-browser.c
Add currently shown file name in title.
2011-10-12 Charles Suprin <hamaa1vs at gmail.com>
* ChangeLog
* src/gtk-sat-list.c
* src/gtk-sat-list.h
Filter decayed satellites from satellite list. (Bug 3414666)
* ChangeLog
* src/gtk-event-list.c
* src/gtk-event-list.h
Filter decayed satellites from event list. (Bug 3414666)
2011-10-10 Charles Suprin <hamaa1vs at gmail.com>
* ChangeLog
* src/gtk-sat-module-popup.c
* src/menubar.c
* src/mod-mgr.c
Add internationalization to several strings.
2011-10-09 Charles Suprin <hamaa1vs at gmail.com>
* src/tle-update.c
Eliminate compiler warning.
* data/trsp/37772.trsp
Add transponder file for ARISSAT/Radioskaf-b from Michael Schulz, K5TRI.
2011-10-08 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-sat-map-groundtrack.c
Use more robust check on orbit change time.
Reset satellite after computing ground track.
2011-10-07 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-polar-view.c
* src/gtk-sat-map.c
Update label as part of satellite update.
2011-10-05 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-rot-ctrl.c
Eliminate compiler warning.
* src/gtk-sat-list.c
* src/gtk-single-sat.c
* src/gtk-sat-map.h
* src/predict-tools.h
Use signed 32 bit integers for orbit counts.
2011-10-03 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-polar-view-popup.c
Fix segfault when turning on and off skytrack. Bug 3417553: Gpredict crashes.
2011-10-02 Charles Suprin <hamaa1vs at gmail.com>
* src/sgpsdp/sgp4sdp4.h
* src/gtk-sat-map-ground-track.c
Make groundtrack show on orbit zero. (bug 3416451: No ground track for new satellites)
2011-10-02 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-sat-map.c
* src/gtk-sat-map-ground-track.c
Delete ground track of decayed satellite.
2011-10-01 Alexandru Csete <oz9aec at gmail.com>
* src/gtk-sat-moduile-tmg.c:
Use GTK_STOCK_MEDIA_FORWARD and REWIND (bug 3309111: Wrong icon in time
controller).
2011-09-28 Charles Suprin <hamaa1vs at gmail.com>
* ChangeLog
* src/config-keys.c
* src/gtk-event-list.c
* src/gtk-event-list.h
Save and restore sort information for event lists.
* ChangeLog
* src/config-keys.c
* src/gtk-sat-list.c
* src/gtk-sat-list.h
Save and restore sort information for satellite lists.
2011-09-25 Charles Suprin <hamaa1vs at gmail.com>
* ChangeLog
* src/tle-update.c
Fix bugs in tle-update for two line tle's at end of file.
* ChangeLog
* src/gtk-sat-selector.c
* src/mod-cfg.c
Update sort routines to include catalog number to handle ties in name.
2011-09-22 Charles Suprin <hamaa1vs at gmail.com>
* ChangeLog
* src/gtk-polar-view.c
* src/gtk-polar-view-popup.c
Saves polarview showtrack information from one session to another.
* ChangeLog
* src/first-time.c
* src/gpredict-utils.c
* src/gpredict-utils.h
* src/mod-cfg.c
* src/qth-data.c
* src/radio-conf.c
* src/rotor-conf.c
* src/sat-cfg.c
* src/tle-update.c
Unifies saving glib key file routine into one place instead of eight.
2011-09-21 Charles Suprin <hamaa1vs at gmail.com>
* ChangeLog
* src/tle-update.c
Corrects satellite name not being updated correctly when a satellite occurs
with international ID and name in same update.
* ChangeLog
* src/tle-update.c
Corrects satellite status not being updated correctly when a .sat and update
data have different status.
2011-09-20 Charles Suprin <hamaa1vs at gmail.com>
* ChangeLog
* src/sgpsdp/sgp_in.c
* src/tle-update.c
* src/gtk-sat-data.c
Eliminate segfaults for some .sat file corruption.
2011-09-19 Charles Suprin <hamaa1vs at gmail.com>
* ChangeLog
* src/tle-update.c
Process bare tle's based on checksums.
2011-09-18 Charles Suprin <hamaa1vs at gmail.com>
* ChangeLog
* src/tle-update.c
Speed up tle-update by updating the gui less frequently.
2011-09-18 Charles Suprin <hamaa1vs at gmail.com>
* ChangeLog
* src/qth-data.c
Remove error message if latitude, longitude, or altitude is zero.
2011-09-07 Charles Suprin <hamaa1vs at gmail.com>
* ChangeLog
* src/tle-update.c
Update progress bar calculation for tle update.
2011-09-07 Charles Suprin <hamaa1vs at gmail.com>
* ChangeLog
* src/tle-update.c
Save status for new satellites.
2011-09-04 Charles Suprin <hamaa1vs at gmail.com>
* ChangeLog
* src/tle-update.c
Cleanup comments and code with satellite status updates.
2011-09-01 Charles Suprin <hamaa1vs at gmail.com>
* ChangeLog
* NEWS
* src/tle-update.c
* src/tle-update.h
* src/gtk-sat-data.c
Tracks operational status through tle-update and stores it in .sat files
when available. Fixes Bug 3400534: Operational Status
2011-08-26 Charles Suprin <hamaa1vs at gmail.com>
* ChangeLog
* src/gtk-polar-view.h
* src/gtk-polar-view.c
Add hashes to support storing polar view sky track on and off.
2011-08-23 Charles Suprin <hamaa1vs at gmail.com>
* ChangeLog
* src/gtk-sat-module.c
Adds Event list to modules support in satellite reload and corrects some
error messages.
2011-08-21 Charles Suprin <hamaa1vs at gmail.com>
* ChangeLog
* src/tle-update.c
Eliminates memory leak and cut and paste error and removes whitespace around
tle before importing.
* ChangeLog
* src/gtk-sat-tree.c
Eliminates use of deprecated tooltips code.
* ChangeLog
* TODO
Updates TODO.
2011-08-20 Charles Suprin <hamaa1vs at gmail.com>
* ChangeLog
* src/tle-update.c
Updates satellite name and nickname if of form YYYY-NNNAAA indicating first
TLE downloaded before celestrak used given name and improves error reporting.
2011-08-09 Charles Suprin <hamaa1vs at gmail.com>
* ChangeLog
* src/tle-update.c
Use newest tle available in file tle update.
* ChangeLog
* NEWS
* src/gtk-rot-ctrl.c
Fixes bug 3271573: Track button in rotator controller has no effect.
* ChangeLog
* src/Makefile.am
Eliminates DATADIR from defines to avoid mingw32 problem with winsock.
* ChangeLog
* src/gtk-sat-map.c
Refactors code that stores per satellite show track and highlight coverage.
2011-08-04 Charles Suprin <hamaa1vs at gmail.com>
* ChangeLog
* src/gtk-sat-map.c
* src/gtk-sat-map.h
* src/gtk-sat-map-popup.c
* src/config-keys.h
Remember ground tracks and highlight coverages in map view.
Feature Request: 3179738
2011-07-31 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-rot-knob.c
* src/gtk-rot-knob.h
* src/gtk-sky-glance.c
* src/gtk-sky-glance.h
* src/gtk-rig-ctrl.h
* src/gtk-sat-list.h
* src/gtk-sat-module.h
* src/gtk-sat-list-col-sel.h
* src/gtk-sat-selector.h
* src/gtk-single-sat.h
* src/gtk-polar-plot.c
* src/gtk-polar-plot.h
* src/gtk-event-list.h
* src/gtk-sat-map.c
* src/gtk-sat-map.h
* src/gtk-freq-knob.c
* src/gtk-freq-knob.h
* src/gtk-azel-plot.c
* src/gtk-rot-ctrl.h
* src/gtk-azel-plot.h
* src/mod-mgr.c
* src/gtk-polar-view.c
* src/gtk-sat-tree.h
* src/gtk-polar-view.h
Remove deprecated calls and functions to allow make
CFLAGS+="-DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED" to work per
<http://developer.gnome.org/gtk3/3.0/gtk-migrating-2-to-3.html>.
2011-07-30 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-azel-plot.h
* src/gtk-event-list.h
* src/gtk-polar-plot.h
* src/gtk-polar-view.h
* src/gtk-sat-list.h
* src/gtk-sat-map.h
* src/gtk-sat-module.h
* src/gtk-sat-module-tmg.h
* src/gtk-sky-glance.h
Change gtk headers to only include from short list at
<http://developer.gnome.org/gtk3/3.0/gtk-migrating-2-to-3.html>.
* src/gpredict-help.c
* src/gpredict-utils.c
* src/gtk-azel-plot.c
* src/gtk-polar-plot.c
* src/gtk-polar-view.c
* src/gtk-sat-map.c
* src/gtk-sat-module.c
* src/gtk-sat-module-popup.c
* src/gtk-sky-glance.c
* src/loc-tree.c
* src/main.c
* src/menubar.c
* src/mod-cfg.c
* src/mod-mgr.c
* src/qth-editor.c
* src/sat-info.c
* src/sat-log-browser.c
* src/sat-pass-dialogs.c
* src/sat-pref.c
* src/sat-pref-qth-editor.c
* src/sat-pref-rig-editor.c
* src/sat-pref-rot-editor.c
* src/save-pass.c
Use access functions instead of private elements per
<http://developer.gnome.org/gtk3/3.0/gtk-migrating-2-to-3.html>.
* src/gtk-sat-module-popup.c
* src/sat-pref-single-sat.c
* src/sat-pref-layout.c
* src/sat-pref-debug.c
* src/sat-pref-qth-editor.c
* src/sat-pref-polar-view.c
* src/sat-pref-map-view.c
* src/sat-pref-multi-pass.c
* src/mod-cfg.c
* src/gtk-sat-module-tmg.c
* src/sat-pref-conditions.c
* src/sat-pref-formats.c
* src/sat-pref-tle.c
* src/sat-pref-sky-at-glance.c
* src/qth-editor.c
* src/sat-pref-list-view.c
* src/sat-pref-single-pass.c
* src/gtk-sat-tree.c
* src/sat-pref-refresh.c
Eliminate use of deprecated GtkTooltips for GtkTooltip per
<http://developer.gnome.org/gtk/2.22/gtk-migrating-tooltips.html>.
2011-07-23 Charles Suprin <hamaa1vs at gmail.com>
* src/sat-cfg.[ch]
* src/mod-mgr.c
Save and restore the current module on closing.
2011-07-07 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-polar-view.c
Fix compiler error.
2011-07-03 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-sat-selector.c
* src/gtk-sat-selector.h
* src/mod-cfg.c
Show catalog number in satellite selector.
Address 3322786: Show More Information in Edit Module Sat Selection.
* src/tle-update.c
Add tle filename as description in new .cat files instead of catalog number.
* src/gtk-polar-view.c
Add check on polarview object allocation.
2011-07-01 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-sat-map.c
Add check on satellite map object allocation.
* src/gtk-sat-module.c
Add check on mod->grid allocation.
2011-06-29 Charles Suprin <hamaa1vs at gmail.com>
* src/tle-update.c
Fix SEGFAULT in tle-update.c when unable to open file for writing in network
updates.
2011-06-26 Charles Suprin <hamaa1vs at gmail.com>
* src/sat-log.c
Fix log retention and deletion.
2011-06-25 Charles Suprin <hamaa1vs at gmail.com>
* src/qth-data.c
Add support for gpsd 2.96 and cleanup comments.
2011-06-20 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-sat-map.c
* src/gtk-polar-view.c
Change naos logic to avoid a daynum 2458849.5 (Y2021?) problem.
* src/main.c
Move log closing and module saving until after gtk has shut down.
2011-06-19 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-sat-map.c
Remove decayed satellite object from hash.
2011-06-07 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-polar-view.c:
Remove decayed satellites from polar view.
2011-06-05 Alexandru Csete <oz9aec at gmail.com>
* src/gtk-rig-ctrl.c:
Add TX cycle function for full duplex radios.
Fixes bug 3272993: Issue controlling Yaesu FT-847.
2011-06-04 Alexandru Csete <oz9aec at gmail.com>
* src/gtk-rig-ctrl.c:
Attempt to fix bug #3272993: Issue controlling Yaesu FT-847.
Coding style clean up.
2011-06-04 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-sat-map.c
* src/gtk-polar-view.c
Reset satellite when reseting NAOS in sat-map and polar views.
2011-05-31 Charles Suprin <hamaa1vs at gmail.com>
* src/sgpsdp/sgp_time.c
* src/sgpsdp/sgp4sdp4.h
* src/gtk-sat-module-tmg.c
Fix discrepancy in year convention with Time_to_UTC between Julian_Date
convention and mktime convention.
Fixes Bug 3309110: 100% on manual time adjustment.
Fixes part of Ubuntu Bug #789691.
2011-05-26 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-single-sat.c
* src/config-keys.h
* src/sat-cfg.c
* src/sat-cfg.h
* src/gtk-sat-module.c
* src/gtk-single-sat.c
Save selected satellite in single sat view.
Part of Feature Request: 3179738
2011-05-14 Charles Suprin <hamaa1vs at gmail.com>
* data/trsp/25338.trsp
* data/trsp/26536.trsp
* data/trsp/27543.trsp
Update NOAA-15,-16,-17 transponder frequencies.
2011-05-01 Alexandru Csete <oz9aec at gmail.com>
* src/gtk-sat-module-popup.c
* src/gtk-sat-module.c
* src/gtk-sat-module.h
* src/gtk-sat-list.c
* src/gtk-sat-list.h
* src/gtk-single-sat.c
* src/gtk-single-sat.h
* src/gtk-event-list.c
* src/gtk-event-list.h
* src/gtk-sat-map.c
* src/gtk-sat-map.h
* src/gtk-polar-view.c
* src/gtk-polar-view.h
New module menu item to allow selection of a satellite in all views at the
same time. Related to feature request 3179102: Right click on satellite to
add the track (probably the closest we can get to "global selection" without
breaking the design).
2011-04-29 Alexandru Csete <oz9aec at gmail.com>
* data/desktop/gpredict.desktop.in
Fixed bug 3294829: Program name wrong in desktop files.
2011-04-03 Alexandru Csete <oz9aec at gmail.com>
* src/gtk-rot-knob.c
* src/gtk-rot-knob.h
* src/gtk-freq-knob.c
* src/gtk-freq-knob.h
Allow changing radio frequency and rotator position using mouse buttons
and wheel (feature req 2130926). Up/down arrows are kept for now.
* doc/um/gpredict-user-manual.odt
Updated with info about using the mouse wheel over the digits.
2011-04-01 Charles Suprin <hamaa1vs at gmail.com>
* win32/gpredict.rc
* win32/gpredict.exe.manifest
* win32/build-config.h
Apply Alan Moffet's changes for win32 build.
2011-04-01 Alexandru Csete <oz9aec at gmail.com>
* src/pass-to-txt.c
* src/sat-pass-dialogs.c
* src/gtk-rig-ctrl.c
* src/gtk-event-list.c
* src/gtk-rot-ctrl.c
* src/gtk-polar-view.c
Appied patch 3261586: Remove leading zero code from time formatting
functions (thanks to Paul Schulz).
* src/about.c
* AUTHORS
Trying to sync AUTHORS and about.c
2011-03-28 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-rig-ctrl.c
* src/gtk-rot-ctrl.c
Apply Stephane Fillods patch to repair Win32 networking.
* src/gtk-sat-selector.c
Remove strverscmp reference.
2011-03-27 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-azel-plot.c
* src/gtk-polar-plot.c
* src/gtk-polar-view-popup.c
* src/gtk-polar-view.c
* src/gtk-sat-list.c
* src/gtk-sat-module.c
* src/gtk-sat-selector.c
* src/gtk-single-sat.c
* src/gtk-sky-glance.c
* src/pass-to-txt.c
* src/sat-pass-dialogs.c
* src/time-tools.c
* src/time-tools.h
Rename julian_print_time daynum_to_str.
2011-03-26 Charles Suprin <hamaa1vs at gmail.com>
* src/predict-tools.c
Change get_current_pass to log error if returned pass is not current.
* src/gtk-polar-view.c
* src/gtk-sat-list.c
* src/gtk-sat-map.c
* src/gtk-sat-selector.c
* src/sat-pass-dialogs.c
Clean up compiler warnings.
2011-03-25 Charles Suprin <hamaa1vs at gmail.com>
* AUTHORS
* src/about.c
* src/Makefile.am
* src/menubar.c
* src/mod-cfg.c
* src/gpredict-utils.c
* src/gpredict-utils.h
* src/gtk-rig-ctrl.c
* src/gtk-rot-ctrl.c
* src/gtk-sat-selector.c
* src/gtk-single-sat.c
* src/strnatcmp.c
* src/strnatcmp.h
Added "natural comparison" by Martin Pool from patch 3237220 by Patrick Strasser.
2011-03-24 Charles Suprin <hamaa1vs at gmail.com>
* src/predict-tools.c
Unify get_pass and get_pass_no_min_el to use common pass generator.
2011-03-22 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-sat-map.c
Remove decayed satellites from map view.
2011-03-21 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-event-list-popup.c
* src/gtk-polar-view-popup.c
* src/gtk-sat-list-popup.c
* src/gtk-sat-list.c
* src/gtk-sat-map-ground-track.c
* src/gtk-sat-map-popup.c
* src/gtk-sat-module.c
* src/gtk-single-sat.c
* src/orbit-tools.c
* src/predict-tools.c
Include geo and decayed orbits in has_aos and make dynamic calls to
decayed instead of static orbit type check.
2011-03-20 Charles Suprin <hamaa1vs at gmail.com>
Merged gpsd_testing branch into trunk.
2011-03-20 Charles Suprin <hamaa1vs at gmail.com>
* doc/man/gpredict.1.in
Update Copyright to 2011
2011-03-13 Charles Suprin <hamaa1vs at gmail.com>
* data/locations.dat
Added more locations to locations.dat
* configure.ac
Changed version to 1.4svn
2011-03-12 Charles Suprin <hamaa1vs at gmail.com>
* src/predict-tools.c
Added check for slope of elevation in find_los.
2011-03-01 Alexandru Csete <oz9aec at gmail.com>
* data/satdata:
Updated satellite data.
* po:
Synchronised with translations from launchpad.net
* configure.ac:
Updated version number to 1.3.
Include da.po
2011-02-28 Alexandru Csete <oz9aec at gmail.com>
* src/tle-update.c:
Fixed spelling error.
2011-02-20 Charles Suprin <hamaa1vs at gmail.com>
* data/desktop/gpredict.desktop.in
Change categories in .desktop to fix issues w/ fedora and ubuntu packaging.
2011-02-19 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-polar-plot.c
* src/gtk-polar-view-popup.c
* src/gtk-polar-view.c
Do not polar plot pass points below the horizon.
2011-02-16 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-rot-ctrl.c
Remove Hamlib error checking from rotator to allow ST-1 to work.
* src/gtk-rot-knob.c
Eliminate printf when bounds exceeded.
2011-02-14 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-sat-selector.c
* src/gtk-sat-selector.h
* src/mod-cfg.c
List a satellite under the available column or the selected column but not both.
* src/gtk-polar-view-popup.c
Prevent potential buffer overflow in track_toggled by limiting ttidx.
* src/Makefile.am
Remove reference to defaults.h.
2011-02-08 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-sat-selector.c
Replace search capability with filter capability in gtk-sat-selector.
* data/desktop/gpredict.desktop.in
* pixmaps/icons/Makefile.am
Install a copy of gpredict-icon.png to pixmaps directory.
Change gpredict.desktop to reference this new copy.
Resolves part of Bug 3113190.
* src/about.c
Update copyright dates to 2011 from 2009.
2011-02-02 Charles Suprin <hamaa1vs at gmail.com>
* src/mod-cfg.c
Sort QTH list alphabetically when configuring module.
* src/gtk-sat-selector.c
Sort Satellites Groups alphabetically in combo box.
* src/gtk-single-sat.c
List satellites in single sat view alphabetically instead of hash order.
2011-02-01 Alexandru Csete <oz9aec at gmail.com>
* src/gtk-rig-ctrl.c:
Manage keyboard PTT event only if rig is RIG_TYPE_TOGGLE_MAN.
* src/defaults.h:
Deleted obsolete file.
2011-01-24 Charles Suprin <hamaa1vs at gmail.com>
* src/tle-update.c
Fix bug where tle file suffix compare is case dependent.
<https://bugs.launchpad.net/bugs/706452>
* ChangeLog
* src/gtk-sat-map.c
* src/gtk-sat-module.c
* src/gtk-polar-view.c
Code cleanup and comments.
Update Changelog
2011-01-21 Charles Suprin <hamaa1vs at gmail.com>
* src/predict-tools.c
Eliminate segfault if pass being returned is NULL in get_pass routines.
2011-01-20 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-sat-module.c
Convert gps update time to seconds.
2011-01-19 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-sat-module.c
* src/qth-data.c
* src/qth-data.h
* src/sat-pref-qth-editor.c
* src/sat-pref-qth.c
Added initial GPSD API version 5 support.
Added engineering gui support for GPSD.
2011-01-16 Charles Suprin <hamaa1vs at gmail.com>
* src/qth-data.c
Added more QTH validation
2011-01-14 Charles Suprin <hamaa1vs at gmail.com>
* NEWS
* src/config-keys.h
* src/gtk-polar-view.c
* src/gtk-rot-ctrl.c
* src/gtk-sat-map.c
* src/gtk-sat-module.c
* src/gtk-sat-module.h
* src/mod-mgr.c
* src/predict-tools.c
* src/predict-tools.h
* src/qth-data.c
* src/qth-data.h
* src/sat-pref-qth-data.h