forked from viking-gps/viking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.0
1939 lines (1552 loc) · 73 KB
/
ChangeLog.0
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
2009-07-28
Guilhem Bonnefille <[email protected]>:
* Fix #2766609: Don't use gpsd_units()
2009-07-26
Herm <[email protected]>:
* Fix #2812856: Change SRTM URL
2009-07-26
Guilhem Bonnefille <[email protected]>:
* Fix #2818818: unset langage preset while opening external Google
2009-06-19
Jonas Norling <[email protected]>
* Filters out irrelevant modifiers when using the scroll wheel
* Minor refactoring of the zooming code
* Fix #2796985: Crash when cancelling background job
2009-06-02
Guilhem Bonnefille <[email protected]>:
* Upgrade OSM-traces support to 0.6 API
2009-05-22
Tal <[email protected]>:
* Add hdop,vdop,pdop,nsat support in GPX
2009-05-22
Jocelyn Jaubert <[email protected]>:
* Fix #570956: change saved_width to 1
2009-05-09
Jocelyn Jaubert <[email protected]>:
* Allow to flush memory consumed by map cache
* Add a preference to change the map cache size
2009-05-09
Tal <[email protected]>:
* Replace g_strtod by g_ascii_strtod
2009-05-06
Jocelyn Jaubert <[email protected]>:
* Add a thread pool for downloading
2009-04-04
Jocelyn Jaubert <[email protected]>:
* Include full libcurl version in user agent
* replace deprecated CURLOPT_FILE by CURLOPT_WRITEDATA
* Fix bug #2481237: Maps directory file chooser should look for directory
2009-02-08
Guilhem Bonnefille <[email protected]>:
* Update translations
* Release 0.9.8
2009-01-22
Mathieu Albinet <[email protected]>:
* Fix loading of world map file
2009-01-22
Rob Norris <[email protected]>:
* Fix 2249398: Fix some memory leaks
2009-01-18
Guilhem Bonnefille <[email protected]>:
* configure.ac: allow to enable/disable geonames and select the search method
2009-01-18
Hein Ragas <[email protected]>:
* Add GeoNames support (both for search and for POI import from Geonames+Wikipedia)
2009-01-15
Mathieu Albinet <[email protected]>:
* Windows port: avoid "\\" in URL
2008-12-20
Guilhem Bonnefille <[email protected]>:
* Remove Google's map tiles
2008-12-17
Guilhem Bonnefille <[email protected]>:
* Remove old Google stuff
2008-12-13
Guilhem Bonnefille <[email protected]>:
* Add external tools framework
* Add OpenStreetMap and Google web tools
2008-12-07
Quy Tonthat <[email protected]>:
* Clicking on "vivisble" tick no longer makes the layer selected.
2008-12-03
Hein Ragas <[email protected]>
* GPX export: sort track by time. Some application can make use
of this feature when reading gpx files.
2008-11-22
Quy Tonthat <[email protected]>:
* Merging tracks by name. Users can now select more than one tracks to
merge with.
* Fix bugs that caused magic scissors not working.
2008-11-19
Quy Tonthat <[email protected]>:
* Merging tracks by name. As submitted by Hein Ragas <[email protected]>
* Merging tracks by name. Tracks can only be merged if they have
timestamps. Make sure users won't cause damage to themselves by
merging tracks without timestamps. Also a few bug fixes and
optimisation.
2008-11-13
Quy Tonthat <[email protected]>:
* Viking no longer support Google satellite maps due to requests
from Google.
2008-10-31
Quy Tonthat <[email protected]>:
* Tittle waypoint properties dialog as "Waypoint Properties"
not "Create".
2008-10-30
Quy Tonthat <[email protected]>:
* Add larger size waypoint symbols (icons) that look similar to
the ones used in Garmin GPS.
* The larger symbols are now used by default. To switch back to the
old smaller icons, use command line option "-s" or "--small_waypoint".
* Waypoint Property Dialog: The combo box "symbol" (used for selecting
waypoint symbol) now has tooltip that shows the name of the selected
symbol.
* src/icons/Makefile.am: Make sure we won't pick up unwanted _pixmap.h
files
* Waypoint names are now displayed at the top of waypoint symbol
and no longer overlap symbols.
2008-10-28
Quy Tonthat <[email protected]>:
* Waypoint symbols: Use Garmin waypoit names so that waypoint has
proper symbols on GPS after upload (and on Viking after download).
Old viking files still works the way they did.
2008-10-22
Quy Tonthat <[email protected]>:
* Fix compatibility problem for windows caused by
g_shell_parse_argv()
2008-10-20
Quy Tonthat <[email protected]>:
* New server for OSM cycle map.
2008-10-13
Quy Tonthat <[email protected]>:
* GPS realtime tracking: Keep retrying when fail to connect
to gpsd, either because gpsd is not (yet) running or gpsd
disconnect (eg. gps unplugged).
2008-10-12
Jon Burgess <[email protected]>:
* fix implicit declaration of maps_layer_default_dir()
* fix missing status return in spawn_command_line_async()
* fix curl error buffer usage
2008-10-12
Guilhem Bonnefille <[email protected]>:
* Release 0.9.7
2008-10-12
Rob Norris <[email protected]>:
* Fix 2161310: Fix some more compiler warnings
2008-10-12
Jon Burgess <[email protected]>:
* Fix 2134452: Properties of some tracks show as NaN
2008-10-11
Quy Tonthat <[email protected]>:
* Fix segfault in realtime tracking.
* Add new moving map method for realtime tracking.
2008-09-30
Stanislav Brabec <[email protected]>:
* Rename icon: viking_icon.png -> viking.png
* Fix missing files in po/POTFILES.in
* src/viking.desktop.in: add GenericName and revise Categories
* viking.spec.in, src/icons/Makefile.am: Fix icon target dir
2008-09-22
Quy Tonthat <[email protected]>:
* Change "Zoom To" short cut to avoid conflict with "Zoom Tool".
2008-09-16
Guilhem Bonnefille <[email protected]>:
* Update translations
2008-09-07
Quy Tonthat <[email protected]>:
* fix parallel build (make -j8) on multi-processor machines. Based
on a patch from sbrabec. Thanks.
2008-09-03
Guilhem Bonnefille <[email protected]>:
* QA: cleanning old stuff
2008-09-01
Guilhem Bonnefille <[email protected]>:
* Fix #1947260: correct a corrupted escape
2008-09-01
Quy Tonthat <[email protected]>:
* Google search adapting changes from Google.
2008-09-01
Quy Tonthat <[email protected]>:
* Fixed crashes when creating new layers.
2008-08-30
Guilhem Bonnefille <[email protected]>:
* QA: removing specific GtkCellRenderer
2008-08-30
Armin Moser <[email protected]>:
* add osm cycle layer support
* add a menu entry to extend an existing track using magic scissors
2008-08-30
anonymous:
* Patch #2009666: OpenAerialMap
2008-08-30
Rob Norris <[email protected]>:
* Fix #1952523: mode_button assertion loading old datafile
2008-08-25
Guilhem Bonnefille <[email protected]>:
* Add preferences to select how degrees are displayed
2008-08-24
Guilhem Bonnefille <[email protected]>:
* Fix: update layer after applying properties
2008-06-24
Mathieu Albinet <[email protected]>:
* Color picker button for the Coordlayer properties dialog
2008-08-23
Guilhem Bonnefille <[email protected]>:
* Cut/Copy/Paste empty selection is not critical
2008-06-23
Mathieu Albinet <[email protected]>:
* Layers panel UI improvements
2008-08-22
Guilhem Bonnefille <[email protected]>:
* Replace specific about dialog by GtkAboutDialog
* Replace some g_warning by g_debug
* Homogeneous icons management.
2008-08-17
Guilhem Bonnefille <[email protected]>:
* Add preferences to store OSM login/password
* Add a password entry widget
2008-08-16
Guilhem Bonnefille <[email protected]>:
* Ensure that confirmation dialog is over file selector
2008-08-13
Quy Tonthat <[email protected]>:
* Fixed google map download problem.
2008-07-31
Guilhem Bonnefille <[email protected]>:
* Release Viking 0.9.6
* Fix unecessary (and probably) Makefile.am directive
2008-07-28
Quy Tonthat <[email protected]>:
* Fix gcget command line to accomodate negative coords.
2008-07-22
Quy Tonthat <[email protected]>:
* Google maps no longer worked due to changes made by Google.
The Problems now fixed.
2008-07-21
Guilhem Bonnefille <[email protected]>:
* Release Viking 0.9.5
2008-07-18
Guilhem Bonnefille <[email protected]>:
* Install man pages
* Update translations
2008-07-15
Quy Tonthat <[email protected]>:
* Added viking.desktop
2008-07-13
Rob Norris <[email protected]>:
* Fix #1947456: Compiler warning fixes
2008-07-09
Guilhem Bonnefille <[email protected]>:
* Update translations
2008-07-02
Quy Tonthat <[email protected]>:
* Track properties: split track at marker.
2008-06-30
Quy Tonthat <[email protected]>:
* Track properties: Keep markers of the graphs in sync with each
other.
2008-06-29
Guilhem Bonnefille <[email protected]>:
* Windows port: fallback temporary file
2008-06-29
Mathieu Albinet <[email protected]>:
* Windows port: typo in util.c
2008-06-24
Quy Tonthat <[email protected]>:
* Track graph marker now works again.
2008-06-22
Quy Tonthat <[email protected]>:
* Fix google version number.
2008-06-15
Quy Tonthat <[email protected]>:
* RELEASE: Test release 0.9.4.20080614 (by Guilhem)
2008-06-09
Mathieu Albinet <[email protected]>:
* Windows port: redefine LOCALEDIR
2008-06-06
Quy Tonthat <[email protected]>:
* viking no longer converts waypoint names to uppercase. Waypoint names
are now case insensitive.
2008-06-02
Mathieu Albinet <[email protected]>:
* Portability: remove "/dev/null" use
2008-05-08
Mathieu Albinet <[email protected]>:
* Windows port: rename interface to source_interface
* Portability: replace mmap functions by g_mapped_file*
* Portability: use of g_ascii_dtostr to format google url
2008-05-02
Guilhem Bonnefille <[email protected]>:
* Update man page
2008-05-01
Guilhem Bonnefille <[email protected]>:
* Add file content checking process
2008-05-01
Mathieu Albinet <[email protected]>:
* Remove dependency to wget
2008-05-01
Guilhem Bonnefille <[email protected]>:
* Adding --debug and --verbose command line option
2008-04-26
Guilhem Bonnefille <[email protected]>:
* Fix pipe leaks
2008-04-26
Mathieu Albinet <[email protected]>:
* Portability: provide our own curl WRITE function
2008-04-22
Robert Norris <[email protected]>:
* Fix: Initalize tv_usec field.
* Fix for implicit declaration of function 'g_fopen'
2008-04-21
Guilhem Bonnefille <[email protected]>:
* Bug #1915121: add an utility to reproduce (test/gpx2gpx)
* Fix #1915121: use GLib functions to handle ISO8601 dates
2008-04-16
Tim Scofield <[email protected]>:
* Fix: typo false -> FALSE
2008-04-12
Mathieu Albinet <[email protected]>:
* M_PI already defined
2008-04-12
Guilhem Bonnefille <[email protected]>:
Mathieu Albinet <[email protected]>:
* Portability: reduce unistd.h dependency
* Portability: replace mkdir by g_mkdir
* Portability: replace deprecated bzero function by memset
* Portability: remove dirname needs with g_mkdir_with_parents
2008-03-27
Mathieu Albinet <[email protected]>:
* Replace GtkFileSelection by GtkFileChooser
2008-03-24
Guilhem Bonnefille <[email protected]>:
* Merge icons in a single binary object
2008-03-15
Guilhem Bonnefille <[email protected]>:
* Fix: [ 1839948 ] Maximize/Restore changes current cursor
* Add panning tool as default
2008-02-25
Guilhem Bonnefille <[email protected]>:
* po/ChangeLog: needed file for distribution
2008-02-25
Rob Norris <[email protected]>:
* Fix: autogen can generate broken configure file (SF#1881475)
* Fix some compiler warnings (SF#1888407)
2008-02-24
Guilhem Bonnefille <[email protected]>:
* Change OSM's tiles URL
2008-02-22
Michael A. Peters <[email protected]>:
* viking.spec: Correct license, required packages and local.
2008-02-20
Guilhem Bonnefille <[email protected]>:
* Update translations
2008-02-16
Guilhem Bonnefille <[email protected]>:
* main.c: I18N improvements
* French translation update
2008-02-16
Jocelyn Jaubert <[email protected]>:
* I18N improvements
* French translation update
(both submitted the 2008-01-12 on mailing-list)
2008-01-22
Alex Foobarian <[email protected]>:
* Fix a crash bug in merge-by-time reported by Evan <[email protected]>
2008-01-18
Quy Tonthat <[email protected]>:
* Fix a crash bug in mapcache reported by Jocelyn <[email protected]>
* Added mutex to protect mapcache from being corrupted by threads.
2008-01-04
Alex Foobarian <[email protected]>:
* Tuned the v-t diagram drawing
2007-12-27
Evan Battaglia <[email protected]>:
* Minor fixes/debugging to gcget. Add gcget-perl
* Full screen mode.
* Bugfix for prefernces -- don't cut off last character of password
2007-12-27
Guilhem Bonnefille <[email protected]>:
* Add GpxWritingOptions to control GPX file writing
2007-12-23
Oddgeir Kvien <[email protected]>:
* Add default values to ele and time fields (due to OSM)
2007-12-21
Evan Battaglia <[email protected]>:
* Preferences groups/tabs
* Fix gcget to accept username and password. Pass this in to gcget.
* Oops! Reading preferences from the file wasn't working. Fixed.
2007-12-21
Jocelyn Jaubert <[email protected]>:
* Update French translation
2007-12-21
Christoph Eckert <[email protected]>:
* Update source for OSM/Osmarender tiles
2007-12-20
Evan Battaglia <[email protected]>:
* Preferences in ~/.viking/viking.prefs, this will soon allow geocaching support to go mainstream, (hopefully)
2007-12-20
Quy Tonthat <[email protected]>:
* Revert a previous change that disabled realtime tracking if libgps
does not exist.
2007-12-17
Jocelyn Jaubert <[email protected]>:
* Use specific gettext call for plural form
2007-12-16
Evan Battaglia <[email protected]>:
* Sort waypoints in GPX output.
* Use the "next unused" (not really) waypoint number as default.
2007-12-15
Guilhem Bonnefille <[email protected]>:
* Fix compilation under HURD (missing MAXPATHLEN macro)
* Fix: if libgps is missing, Realtime GPS Tracking is disabled
2007-12-15
Jocelyn Jaubert <[email protected]>:
* Make menu entries translatable
* Mark many strings translatable
* Update french translation
2007-12-12
Guilhem Bonnefille <[email protected]>:
* Marking translatable strings
* First french translation (incomplete)
2007-12-12
Guilhem Bonnefille <[email protected]>:
* Fix warning: underquoted definition of AM_WITH_EXPAT
* Fix bug: "config.status: error: cannot find input file: Makefile.in"
2007-12-07
Quy Tonthat <[email protected]>:
* Fix autogen.sh to remove the assumption that version 1.9 of automake
is available on all systems.
* Now that autogen.sh runs configure, "make full" should not.
2007-12-07
Evan Battaglia <[email protected]>:
* BlueMarble tiles: http://mike.teczno.com/notes/blue-marble-tiles.html
* Google Terrain maps
* Disable printing to make Viking compile for GTK < 2.10
2007-11-27
Guilhem Bonnefille <[email protected]>:
* util.c: Use a list of possible browsers.
2007-11-20
Quy Tonthat <[email protected]>:
* Fix a bug that can potentially cause segfault.
2007-11-19
Quy Tonthat <[email protected]>:
* Improve track graphs. Some tracks looked too flat.
2007-11-09
Evan Battaglia <[email protected]>:
* GPSBabel filter work I've been sitting on for a while now.
* Draw circle for downloading geocaches. Constrain by maximum distance.
2007-11-08
Quy Tonthat <[email protected]>:
* Printing support
2007-11-01
Quy Tonthat <[email protected]>:
* Fix bug that caused Old Google maps not being disabled by default.
2007-10-24
Quy Tonthat <[email protected]>:
* Fix crashes on elev graph for some tracks.
* Make low alt tracks look more visible on elev graph.
* Fix "incompatible pointer type" warnings.
2007-10-23
Quy Tonthat <[email protected]>:
* Missing declaration. Thanks to Bernd Zeimetz <[email protected]>
2007-10-20
Guilhem Bonnefille <[email protected]>:
* Releasing 0.9.3
2007-10-20
Evan Battaglia <[email protected]>:
* Fixing minor typo in vikdemlayer.c which could cause crashes
2007-10-20
Quy Tonthat <[email protected]>:
* Track Properties Dialog no longer blocks interaction of the main
window.
* Draw position marker on track elev/speed graphs at mouse click.
* Diasable buttons on Track Properties Dialog when not needed.
* Display track name on title of track property dialog. Now that
viking allows multiple dialogs displayed simultaneously.
2007-10-17
Evan Battaglia <[email protected]>:
* Fix problem with extraneous waypoints being plotted (wrap around problem). May still be problems in UTM mode.
2007-10-16
Evan Battaglia <[email protected]>:
* Fix Google version parsing. Google no longer uses '=' and '&' but hex equivalents to describe the URI. Not sure if this will last :/
2007-10-16
Quy Tonthat <[email protected]>:
* Interpolating DEM data in 3 different methods. Track data,
elevation-distance graph and elevation info on status bar now make use
of interpolation.
2007-10-15
Quy Tonthat <[email protected]>:
* Add more room to the top of elevation-distance graph.
2007-10-14
Evan Battaglia <[email protected]>:
* Fix plotting of DEM elevation data (subtract min altitude)
2007-10-12
Evan Battaglia <[email protected]>:
* Fix Esc and Backspace to work only when VikViewport has focus.
* VikViewport grabs focus on click or release events, or when a
tool move event returns VIK_LAYER_TOOL_ACK_GRAB_FOCUS.
2007-10-12
Quy Tonthat <[email protected]>:
* Make use of DEM elevation data and GPS speed for track graphs.
2007-10-11
Evan Battaglia
* Key press framework for tools. Esc to stop track. Backspace to end track.
2007-10-11
Guilhem Bonnefille <[email protected]>:
* Upgrading to API 0.5 of OSM
2007-10-11
Quy Tonthat <[email protected]>:
* Make Realtime Tracking a feature that can be disabled at configure
time. Do not quietly disable it beacause libgps is not available
at compiling time.
* Extra data from GPS in realtime mode are now stored in trackpoints.
2007-10-10
Quy Tonthat <[email protected]>:
* Fix a crash bug caused by operation on variable inside a macro.
2007-10-09
Evan Battaglia <[email protected]>:
* Ctrl-shift-scroll to zoom like Google. Just scroll zooms like before.
* Show currently edited track in red-dashed line. This makes it easier
to tell if we've ended the track.
* When using new track tool, draw a line before making a point to
preview the new point.
* Use $BROWSER environment variable (for viewing geocache pages)
2007-10-08
Quy Tonthat <[email protected]>:
* Fix compiling breakage caused by missing icon file from the list.
2007-10-07
Guilhem Bonnefille <[email protected]>:
* libgps is no more mandatory
2007-10-07
Evan Battaglia <[email protected]>:
* Scroll zoom keeps cursor over same spot on map (like Google, QLandKarte)
* Cursors for tools.
* Undo magic scissors by right-clicking.
* Extend a track by right-clicking on it.
* Experiment: "Begin track" tool
2007-10-07
Quy Tonthat <[email protected]>:
* Correctly calculate position (based on time instead of distance)
when clicking on speed-time graph.
* Added km/h to speed entries of the track properties dialog.
* The "Selected Time" on track properties dialog is now correct.
* Track Properties: now displays track distance/time instead of
"Selected Time".
2007-10-06
Quy Tonthat <[email protected]>:
* Fix bugs that caused odd display of time on track properties dialog.
* Pop a message when failed to connect to gpsd.
2007-10-05
Quy Tonthat <[email protected]>:
* Fix a segfault caused by (mistakenly) adding a new layer to gps
layer.
* Be more selective in collecting realtime trackpoints.
2007-10-04
Quy Tonthat <[email protected]>:
* Improvements for GPS layer's "realtime tracking".
2007-10-02
Quy Tonthat <[email protected]>:
* Fix crashes caused by emitting update too early at layer creation.
* Add realtime tracking to GPS layer.
* fix half-drawn problems for GPS layer.
2007-10-01
Guilhem Bonnefille <[email protected]>:
* Relax dependencies about glib by implementing
g_hash_table_remove_all ourselves (Evan's patch)
2007-10-01
Quy Tonthat <[email protected]>:
* Disable half-drawn update when the center is moved. Avoid using
static "trigger" in viklayer.c which causes problems when viking
has more than one windows.
2007-09-28
Quy Tonthat <[email protected]>:
* Fix bug that caused Elevation graph not working properly with some
tracks.
2007-09-27
Evan Battaglia <[email protected]>:
* GPSD Layer -- draw an arrow.
* Minimum elevation for DEM layer.
* Half-drawn hack to only draw layers on top of the one that has
recently changed. A must for realtime GPS.
2007-09-25
Quy Tonthat <[email protected]>:
* SRTM download now works for regions outside North_America too.
2007-09-23
Evan Battaglia <[email protected]>:
* Fix copy & pasting DEM layers -- new serializing string list code.
* Don't crash if using tool on wrong type of layer / no layer.
Although I really want to know what happened to "use the top visible layer",
and return TRUE if the tool "accepts" the use...
editing lots of TRWLayers was way easier that way...
* Remove unused vik_layer_copy() code
* Add Magic Scissors icon (from GIMP)
* Add comment when making a Google Route.
* Continue a magic scissors route by holding down control. Continue the comment too.
* Right-click a route created by google route (multiple or single) to see the Google directions web page which created it. Useful for creating a route w/ Viking, then seeing the verbal directions (left here, right there)
* Experimental GPSD support (VikGpsdLayer)
2007-09-22
Evan Battaglia <[email protected]>:
* Pan Accelerators (Ctrl+Left, etc)
* Ctrl-Scroll and Ctrl-Shift-Scroll to pan, kind of like Gimp.
* Add a RADIOGROUP_STATIC properties factory type to make it easy
for new layers. Uses an array list (like before)
instead of a GList.
* DEM US 10m (dem24k) source! Option in DEM Layer & ./configure
* (copying & pasting DEM layers is broken, will fix later)
2007-09-21
Evan Battaglia <[email protected]>:
* Fix right-click on geocache to work with new geocache names.
* Download & import SRTM 90m DEM data (still working on US 10m)
2007-09-17
Evan Battaglia <[email protected]>:
* Draw lines to show file existence for MapsLayer for very zoomed out maps. It's faster that actually showing the maps but still gets slow at a certain level.
2007-09-09
Guilhem Bonnefille <[email protected]>:
* Removing unused files (*.png.h).
2007-09-08
Guilhem Bonnefille <[email protected]>:
* Fix #1789550: define MAX macro if not defined on ALL systems
2007-09-08
Quy Tonthat <[email protected]>:
* AUtomatically fetching google version number.
2007-09-07
Guilhem Bonnefille <[email protected]>:
* Fix #1789550: mkdtemp usage is conditioned, so it is possible
to build viking on system not offering such feature.
2007-09-06
Guilhem Bonnefille <[email protected]>:
* Adding command line option framework.
2007-09-06
Quy Tonthat <[email protected]>:
* Make viking's default start location somewhere more likely has maps.
* Fix crash when using "Maps Download" tools right after viking is
started (without a viking file).
2007-09-05
Quy Tonthat <[email protected]>:
* Viking 0.9.2 (By Guilhem Bonnefille <[email protected]>)
2007-09-03
Guilhem Bonnefille <[email protected]>:
* Fix: crash when "applying" a map layer property dialog.
* QA: strong type the second argument of the *_post_read functions.
* Preset filename when exporting a TrwLayer.
* Refactoring: retrieve the VikWindow from the VikViewport via its
GtkWidget nature.
* Use $EMAIL to initialise email field for OSM upload.
* Do not warn about drawmode inconsistency while reading file.
* Hide Expedia view mode when expedia is not built in.
2007-09-01
Guilhem Bonnefille <[email protected]>:
* Disable Expedia map layer by default (as it is not working).
2007-08-30
Bernd Zeimetz <[email protected]>:
* Add redirect support (for Expedia map layer).
2007-08-30
Guilhem Bonnefille <[email protected]>:
* Add ability to upload a single track.
2007-08-28
Guilhem Bonnefille <[email protected]>:
* Check current drawmode after creating a new MapsLayer.
2007-08-25
Quy Tonthat <[email protected]>:
* New google version number.
* Better checking to detect downloaded text instead of images.
* Give more instructive message for attempting to download maps in
wrong mapmode.
2007-08-20
Guilhem Bonnefille <[email protected]>:
* libcurl is a requirement
2007-08-20
Quy Tonthat <[email protected]>:
* Fix bugs that cause crashes on layers copy/paste/delete.
* Fix bug in Google search that caused viking jump to wrong location
when Google can not find the match.
2007-08-16
Guilhem Bonnefille <[email protected]>:
* Group "Export Layer..." entries in a sub-menu.
2007-08-16
Quy Tonthat <[email protected]>:
* Clean up and eliminate compiler warning.
2007-08-15
Quy Tonthat <[email protected]>:
* Fix bug in creating temporary HOME when HOME is not set.
* Added --enable-old-google to configure script. Old google modes are
now disabled by default.
* Default mode for new maps is Google Maps.
2007-08-09
Quy Tonthat <[email protected]>:
* Make Google Map default map type.
2007-08-02
Quy Tonthat <[email protected]>:
* DEM module can now read hgt.zip files directly (no need to unzip
them).
* DEM module can now process 1 arc sec hgt(.zip) files (mainly for USA
regions).
2007-07-27
Quy Tonthat <[email protected]>:
* Plug filedescriptor leak in dem.c
2007-07-26
Quy Tonthat <[email protected]>:
* Display on status bar altitude at cursor using data from DEM layer(s).
2007-07-25
Quy Tonthat <[email protected]>:
* New google version numbers.
2007-07-24
Quy Tonthat <[email protected]>:
* Disable GeoCache Acquire since it nolonger works. Can be enabled
again using configure --enable-geocaches.
2007-07-18
Quy Tonthat <[email protected]>:
* Remove (my) debug messages which are no longer needed.
2007-07-15
Quy Tonthat <[email protected]>:
* Missing a few changes here.
* release 0.9 (by Guilhem)
2007-07-13
Quy Tonthat <[email protected]>:
* Eliminate the needs of entering DEM files for every single
track/waypoint layer.
2007-07-07
Quy Tonthat <[email protected]>:
* Fixed typo in Makefile.am
2007-07-06
Evan Battaglia <[email protected]>:
* Merge DEM Branch
2007-07-04
Quy Tonthat <[email protected]>:
* Bug fix: View Mode displayed wrong setting on start up
2007-07-03
Quy Tonthat <[email protected]>:
* Fixed bugs that caused draw_scale and draw_centermark status not being
consistent among View menu, viewport and loaded files.
2007-07-02
Evan Battaglia <[email protected]>:
* DEM Branch: Trying to fix/cleanup various DEM things
* DEM Branch: Support for SRTM 3 arcsecond _global_ DEM data from http://www2.jpl.nasa.gov/srtm/
2007-07-02
Quy Tonthat <[email protected]>:
* Fixed bugs that caused crashes during GPS upload/download.
2007-07-01
Quy Tonthat <[email protected]>:
* Make "Save Image" and "Save Image Directory" dialogs reusable.
2007-06-24
Guilhem Bonnefille <[email protected]>:
* Merging with Ralf's work around debianization
* INSTALL: refreshed
2007-06-23
Guilhem Bonnefille <[email protected]>:
* Minor change to avoid SEGFAULT on x86_64
* Add DownloadOptions type to specify referer per map source
2007-06-19
Quy Tonthat <[email protected]>:
* Fix bugs that causes "drawcentermark" not recognised when reading
from files.
* Fix a wild pointer bug that can cause crashes
2007-06-18
Guilhem Bonnefille <[email protected]>:
* Copying libcurl.m4 as it is needed everywhere
2007-06-18
Quy Tonthat <[email protected]>:
* New google version numbers.
* Make scale more visible.
* Add center mark which can be turn on/off in View menu.
* Viking now uses cookies for http requests. Some server(s) is quite
picky about this. (With great help from Lixus <[email protected]>)
* Download maps along a track. Right click on a track layer, select map
type and zoom level, viking will do the rest.
* release 0.1.3-20070618
2007-06-13
Guilhem Bonnefille <[email protected]>:
* Adding an icon (suggested by Ralf Meyer <[email protected]>)
2007-06-8
Quy Tonthat <[email protected]>:
* Fix a bug that causes segfault when viewing properties of a
waypoint.
2007-06-1
Quy Tonthat <[email protected]>:
* Fix a bug that causes segfault when viewing properties of a track
that has only one trackpoint with elevation information.
* Backport Evan's magic scissors from DEM branch.
2007-05-31
Quy Tonthat <[email protected]>:
* Add Google Maps search to View menu and Toolbar
* Waypoint created right after the search will pick up the search
string as comment. (Use TrackWaypoint Layer menu, not toolbar, to
create waypoint).
2007-05-26
Mark Coulter <[email protected]>:
* new waypoint symbols.
2007-05-26
Quy Tonthat <[email protected]>:
* Fix intermittent problem of map redraw.
* Mapslayer: Fixed bugs that cause in some cases, map display can not
be refreshed without downloading.
2007-05-24
Ralf Meyer <[email protected]>:
* Adding man pages.
2007-05-24
Quy Tonthat <[email protected]>:
* Maps layer: Improve performance for map autodownload.
* Make dimensions easier to be found and changed to suit own tastes.
* Small touches on the look.
2007-05-23
Quy Tonthat <[email protected]>:
* New GPS layer menu items: "empty upload", "empty download", "empty
all"
* acquire->Google Directions now record and display previous queries
fo "From"/"To" entries.
* Position Google Directions dialogs at the center of Viking window.