forked from GNOME/gnome-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWS
2153 lines (1815 loc) · 55.6 KB
/
NEWS
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
3.25.2 - May 22, 2017
=========================
Changes since 3.25.2
- Fix OpenStreetMap editing in Flatpaks (update librest build dependency)
- Use localized format when showing distances
Added/updated/fixed translations:
- Arabic
- Catalan
- Slovenian
All contributors to this release:
Jordi Mas <[email protected]>
Khaled Hosny <[email protected]>
Marcus Lundblad <[email protected]>
Matej Urbančič <[email protected]>
3.25.1 - Apr 24, 2017
=========================
Changes since 3.25.1:
- Fix JSON formatting for Flatpak manifest
All contributors to this release:
Marcus Lundblad <[email protected]>
3.24.1 - Apr 10, 2017
=========================
Changes since 3.24.0:
- Fix rendering of compacted route labels for transit routing
- Don't show the “Next” button when selecting POI types when editing
OpenStreetMap objects
- Use HTTPS Wikipedia links
Added/updated/fixed translations:
- Croatian
- Greek
- Polish
- Norwegian bokmål
All contributors to this release:
gogo <[email protected]>
Kjartan Maraas <[email protected]>
Marcus Lundblad <[email protected]>
Piotr Drąg <[email protected]>
RyuzakiKK <[email protected]>
Tom Tryfonidis <[email protected]>
3.24.0 - Mar 20, 2017
=========================
Changes since 3.23.92:
- Fix running when gnome-online-accounts isn't available.
Added/updated/fixed translations:
- Russian
- Turkish
- Slovak
- Latvian
- Italian
- Japanese
All contributors to this release:
Dušan Kazik <[email protected]>
Gianvito Cavasoli <[email protected]>
Marcus Lundblad <[email protected]>
Osman Karagöz <[email protected]>
Rūdolfs Mazurs <[email protected]>
sujiniku <[email protected]>
Yuri Myasoedov <[email protected]>
3.23.92 - Mar 13, 2017
=========================
Changes since 3.23.91:
- Fix rendering Wikipedia links to articles containing a colon.
- Updated OpenStreetMap POI definitions for editing.
- Handle application/geo+json mime type for GeoJSON layer files.
Added/updated/fixed translations:
- Finnish
- Swedish
- Chinese (Taiwan)
- Icelandic
- Danish
- Slovenian
- Basque
- Korean
- Lithuanian
- German
- Catalan
- Indonesian
- Scottish Gaelic
- Czech
- Slovak
- Serbian
All contributors to this release:
Anders Jonsson <[email protected]>
Ask Hjorth Larsen <[email protected]>
Aurimas Černius <[email protected]>
Chao-Hsiung Liao <[email protected]>
Cheng-Chia Tseng <[email protected]>
GunChleoc <[email protected]>
Inaki Larranaga Murgoitio <[email protected]>
Jiri Grönroos <[email protected]>
Jordi Mas <[email protected]>
Kukuh Syafaat <[email protected]>
Marcus Lundblad <[email protected]>
Marek Cernocky <[email protected]>
Mario Blättermann <[email protected]>
Matej Urbančič <[email protected]>
Seong-ho Cho <[email protected]>
Sveinn í Felli <[email protected]>
Марко М. Костић <[email protected]>
3.23.91 - Feb 27, 2017
=========================
Changes since 3.23.90:
- Support for public transit routing (enabled when service definition contains
a URL for an OpenTripPlanner server, or by debug environment variable).
- Add a button to reverse a route.
- Stop using "for in" loops to traverse arrays.
- Fixes for ES6 (GJS 1.48).
Added/updated/fixed translations:
- Kazakh
- Danish
- Spanish
- German
- Slovak
- Norwegian bokmål
- Finnish
- Polish
- Basque
- Friulian
- Brazilian Portuguese
- Ukrainian
- Galician
- Serbian
- Hungarian
- French
All contributors to this release:
Anders Jonsson <[email protected]>
Andreas Nilsson <[email protected]>
Ask Hjorth Larsen <[email protected]>
Balázs Meskó <[email protected]>
Baurzhan Muftakhidinov <[email protected]>
Claude Paroz <[email protected]>
Daniel Korostil <[email protected]>
Daniel Mustieles <[email protected]>
Dušan Kazik <[email protected]>
Fabio Tomat <[email protected]>
Fran Dieguez <[email protected]>
Inaki Larranaga Murgoitio <[email protected]>
Jiri Grönroos <[email protected]>
Kjartan Maraas <[email protected]>
Marcus Lundblad <[email protected]>
Mario Blättermann <[email protected]>
Mattias Bengtsson <[email protected]>
Philip Chimento <[email protected]>
Piotr Drąg <[email protected]>
Rafael Fontenelle <[email protected]>
Мирослав Николић <[email protected]>
3.23.90 - Feb 13, 2017
=========================
Added/updated/fixed translations:
- Slovak
- Chinese (China)
- Indonesian
All contributors to this release:
Dingzhong Chen <[email protected]>
Dušan Kazik <[email protected]>
Kukuh Syafaat <[email protected]>
Marcus Lundblad <[email protected]>
3.23.4 - Jan 16, 2017
=========================
Changes since 3.23.4:
- Removed usage of deprecated gtk_menu_popup() function.
Added/updated/fixed translations:
- Finnish
- Spanish
All contributors to this release:
Daniel Mustieles <[email protected]>
Jiri Grönroos <[email protected]>
Marcus Lundblad <[email protected]>
3.23.3 - Dec 12, 2016
=========================
Changes since 3.23.2:
- Enable easy building as a flatpak from within GNOME Builder.
Added/updated/fixed translations:
- Russian
- Kazakh
- Swedish
- Hungarian
All contributors to this release:
Anders Jonsson <[email protected]>
Baurzhan Muftakhidinov <[email protected]>
Christian Hergert <[email protected]>
Gábor Kelemen <[email protected]>
Marcus Lundblad <[email protected]>
Stas Solovey <[email protected]>
3.23.2 - Nov 21, 2016
=========================
Changes since 3.23.1:
- Use Unicode in translatable strings
Added/updated/fixed translations:
- Friulian
- Czech
- Hungarian
- German
- Polish
All contributors to this release:
Balázs Meskó <[email protected]>
Fabio Tomat <[email protected]>
Marek Černocký <[email protected]>
Paul Seyfert <[email protected]>
Piotr Drąg <[email protected]>
3.23.1 - Oct 24, 2016
=========================
Changes since 3.22.1:
- Fixed a typo and a formatting issue
- Handle a plain 00:00-24:00 opening hour
specification as being "always open" for POIs
Added/updated/fixed translations:
- Norwegian bokmål
All contributors to this release:
Kjartan Maraas <[email protected]>
Marcus Lundblad <[email protected]>
3.22.1 - Oct 10, 2016
=========================
Added/updated/fixed translations:
- Basque
All contributors to this release:
Inaki Larranaga Murgoitio <[email protected]>
3.22.0 - Sep 18, 2016
=========================
Added/updated/fixed translations:
- Persian
- Italian
- Scottish Gaelic
- Ukrainian
All contributors to this release:
Arash Mousavi <[email protected]>
Daniel Korostil <[email protected]>
Gianvito Cavasoli <[email protected]>
GunChleoc <[email protected]>
3.21.92 - Sep 12, 2016
=========================
Changes since 3.21.91:
- Added = accelerator for zoom-in
- Fix rendering of website links containing HTML markup characters
- Updated/added POI definitions for OpenStreetMap editing
Added/updated/fixed translations:
- Greek
- Danish
- Polish
- Galician
- Latvian
- Vietnamese
- Lithuanian
- Kazakh
- Korean
All contributors to this release:
Ask Hjorth Larsen <[email protected]>
Aurimas Černius <[email protected]>
Baurzhan Muftakhidinov <[email protected]>
Fran Dieguez <[email protected]>
Marcus Lundblad <[email protected]>
Piotr Drąg <[email protected]>
Razvan Brinzea <[email protected]>
Rūdolfs Mazurs <[email protected]>
Seong-ho Cho <[email protected]>
Tom Tryfonidis <[email protected]>
Trần Ngọc Quân <[email protected]>
3.21.91 - Aug 29, 2016
=========================
Changes since 3.21.90:
- Fix bug where you could not type + or - in the searchbar
- Added Amisha, Marcus and Mattias as maintainers in the doap file
Added/updated/fixed translations:
- French
- Serbian
- Slovenian
- Polish
All contributors to this release:
Alexandre Franke <[email protected]>
Jonas Danielsson <[email protected]>
Matej Urbančič <[email protected]>
Piotr Drąg <[email protected]>
Мирослав Николић <[email protected]>
3.21.90 - Aug 19, 2016
=========================
Hello there!
So we will stop using a redirect from gis.gnome.org to Mapbox tile server.
Instead we will attempt to download a service.json file from gis.gnome.org.
This file will tell us where our third-party services are. Starting with
tile services. This is for two reasons. 1) It is much faster and 2) Mapbox
didn't like the redirect approach.
Changes since 3.21.4:
- Download a service.json file to get tile server URI among other things.
- Use GtkClutter for the attribution logo, to get transparency.
Added/updated/fixed translations:
- Hungarian
- Slovak
- Hebrew
- Czech
- Arabic
- Finnish
- Brazilian Portuguese
- Indonesian
- Brittish English
All contributors to this release:
Andika Triwidada <[email protected]>
Balázs Úr <[email protected]>
David King <[email protected]>
Dušan Kazik <[email protected]>
Gustavo Marques <[email protected]>
Jiri Grönroos <[email protected]>
Jonas Danielsson <[email protected]>
Marek Cernocky <[email protected]>
Mattias Bengtsson <[email protected]>
Safa Alfulaij <[email protected]>
Yosef Or Boczko <[email protected]>
3.21.4 - Jul 30, 2016
=========================
Hi!
This is an important release! With this release we switch from using
the MapQuest open API for fetching tiles. And instead we start using
Mapbox API. Using an community API key from Mapbox.
Mapbox is a company with a commitment to Open source. And provides
infrastructure that will allow us to do more with Maps. We are accessing
the Mapbox API through a GNOME proxy that will allow us to easier switch
our tile provider/URI in the future.
Big thanks to Mattias Bengtsson who made this solution happen.
Thank you, and sorry for our outage.
Changes since 3.20.1:
- Change tile URIs to use Mapbox, through proxy
- Fix escaping of tel: URIs
- Adapt colors of instuction when printing routes
Added/updated/fixed translations:
- Esperanto
- Slovenian
- Occitan
- Polish
- Portuguese
- Turkish
- Catalan
- Norwegian bokmål
- Indonesian
- Punjabi
- Spanish
- Friulian
All contributors to this release:
Anders Jonsson <[email protected]>
Andika Triwidada <[email protected]>
A S Alam <[email protected]>
Cédric Valmary <[email protected]>
Daniel Mustieles <[email protected]>
Fabio Tomat <[email protected]>
Jonas Danielsson <[email protected]>
Jordi Mas <[email protected]>
Kjartan Maraas <[email protected]>
Kristjan SCHMIDT <[email protected]>
Marcus Lundblad <[email protected]>
Matej Urbančič <[email protected]>
Muhammet Kara <[email protected]>
Nayan Deshmukh <[email protected]>
Piotr Drąg <[email protected]>
Tiago Santos <[email protected]>
3.20.1 - April 11, 2016
=========================
Changes since 3.20.0:
- Bump dependencies on libchamplain and gjs
- Fox memory leak in osmEdit
Added/updated/fixed translations:
- Ukrainian
- Friulian
- Greek
- Vietnamese
- Persian
- Arabic
All contributors to this release:
Arash Mousavi <[email protected]>
Daniel Korostil <[email protected]>
Fabio Tomat <[email protected]>
Jonas Danielsson <[email protected]>
Jordi Mas <[email protected]>
Khaled Hosny <[email protected]>
Marcus Lundblad <[email protected]>
Tom Tryfonidis <[email protected]>
Trần Ngọc Quân <[email protected]>
3.20.0 - March 21, 2016
=========================
Changes since 3.20.0:
- Fix marking of translatable strings
Added/updated/fixed translations:
- Slovak
- German
- Polish
- Catalan
- Spanish
- Czech
- Hungarian
- Finnish
- Korean
- Kazakh
- Brazilian Portuguese
- Russian
- Lithuanian
- Swedish
- Galician
- Serbian
- Serbian Latin
- French
- Danish
- Greek
All contributors to this release:
Antonio Fernandes C. Neto <[email protected]>
Ask Hjorth Larsen <[email protected]>
Aurimas Černius <[email protected]>
Balázs Meskó <[email protected]>
Baurzhan Muftakhidinov <[email protected]>
Bernd Homuth <[email protected]>
Claude Paroz <[email protected]>
Daniel Mustieles <[email protected]>
Dušan Kazik <[email protected]>
Fran Dieguez <[email protected]>
Gianvito Cavasoli <[email protected]>
Inaki Larranaga Murgoitio <[email protected]>
Jiri Grönroos <[email protected]>
Jordi Mas <[email protected]>
Marcus Lundblad <[email protected]>
Marek Černocký <[email protected]>
Mario Blättermann <[email protected]>
Piotr Drąg <[email protected]>
Rūdolfs Mazurs <[email protected]>
Sebastian Rasmussen <[email protected]>
Seong-ho Cho <[email protected]>
Stas Solovey <[email protected]>
Tom Tryfonidis <[email protected]>
Yuri Myasoedov <[email protected]>
Марко Костић <[email protected]>
Милош Поповић <[email protected]>
3.19.91 - March 14, 2016
==========================
Changes since 3.19.91:
- Rework geoclue interaction
- Ellipsize route instructions in print layout
- Add 'aeroway' type to OSM editting
- Make auto-complete accent insensitive
Added/updated/fixed translations:
- Slovak
- Brazilian Poruguese
- Galician
- Hebrew
- Spanish
- Korean
- Ukrainian
- Occitan
- Hungarian
- German
- Kazakh
- Latvian
- Finnish
- Friulian
- Serbian
- Lithuanian
- French
All contributors to this release:
Artur de Aquino Morais <[email protected]>
Aurimas Černius <[email protected]>
Baurzhan Muftakhidinov <[email protected]>
Cédric Valmary <[email protected]>
Claude Paroz <[email protected]>
Daniel Korostil <[email protected]>
Daniel Mustieles <[email protected]>
Dušan Kazik <[email protected]>
Fabio Tomat <[email protected]>
Fran Dieguez <[email protected]>
Gábor Kelemen <[email protected]>
Jiri Grönroos <[email protected]>
Jonas Danielsson <[email protected]>
Mario Blättermann <[email protected]>
Marius Stanciu <[email protected]>
Razvan Brinzea <[email protected]>
Rūdolfs Mazurs <[email protected]>
Seong-ho Cho <[email protected]>
Yosef Or Boczko <[email protected]>
Zeeshan Ali (Khattak) <[email protected]>
Марко М. Костић <[email protected]>
3.19.91 - March 1, 2016
==========================
Changes since 3.19.90:
- Handle case when nothing was found when reverse
geocoding through context menu
- Make sure we validate bounding boxes from geoJSON layer
- Add markers to route when printing
- Add via points to route when printing
- Add ability to add and edit addresses on OpenStreetMap
- Allow Maps to shrink more by not using a fixed width
for the searchbar
- Add tooltip to icon next to route entry to help
discoverbility of drag and drop re-oredering.
Added/updated/fixed translations:
- Galician
- Dutch
- Polish
- German
- Spanish
- Serbian
- Slovak
- Brazilian Portuguese
- French
- Chinese (Taiwan)
- Czech
- Hingarian
- Catalan
3.19.90 - February 16, 2016
==========================
Changes since 3.19.4:
- Added icon to toggle visibility of a shape layer
- Improve travel animations
- Add a scale ruler to the bottom left corner
- Include less information by default in map bubbles
- Add expandable area on map bubbles
- Add context menu item for adding location to OpenStreetMap
- Enable editting of opening hours on OpenStreetMap
- Add internet access tag to map bubbles
- Add ele altitude tag to map bubbles
- Add website to map bubbles
- Add phone nunber to map bubbles
- Add support for KML and GPX shape files
- Add support for printing a route with instructions
Added/updated/fixed translations:
- Russian
- Finnish
- Catalan
- German
- Slovak
- Hungarian
- Spanish
- Slovenian
- Latvian
- Polish
- Kazakh
- Chinese (Taiwan)
- Brazilian Portuguese
- Bulgarian
- Serbian
- French
All contributors to this release:
Alaf Azam <[email protected]>
Alexandre Franke <[email protected]>
Amisha Singla <[email protected]>
Balázs Meskó <[email protected]>
Baurzhan Muftakhidinov <[email protected]>
Chao-Hsiung Liao <[email protected]>
Codreanu Andrei <[email protected]>
Cosimo Cecchi <[email protected]>
Damián Nohales <[email protected]>
Daniel Mustieles <[email protected]>
Debarshi Ray <[email protected]>
Dušan Kazik <[email protected]>
Gábor Kelemen <[email protected]>
Hashem Nasarat <[email protected]>
Ivailo Panamski <[email protected]>
Jiri Grönroos <[email protected]>
Jonas Danielsson <[email protected]>
Jordi Mas <[email protected]>
Marcus Lundblad <[email protected]>
Mario Blättermann <[email protected]>
Matej Urbančič <[email protected]>
Piotr Drąg <[email protected]>
Rafael Fontenelle <[email protected]>
Richard Hughes <[email protected]>
Rūdolfs Mazurs <[email protected]>
Stas Solovey <[email protected]>
Zeeshan Ali (Khattak) <[email protected]>
Мирослав Николић <[email protected]>
3.19.4 - Januari 18, 2016
==========================
First release of the year, and what a release!
We have so many new contributors, it really warms your heart.
And a lot of new stuff added, see below for details!
Changes since 3.19.3:
- Addded a keybinding help overlay (F1 to activate)
- Fix zoom behaviour to be more aggresive
- Fix bug with cancel login in OpenStreetMap account dialog
- Add keyboard shortcut for going to current location (<Primary>L)
- Fix layout of OpenStreetMap edit
- Fix bug that made it impossible to sign-in to OpenStreetMap if you
first inputed the wrong credentials
- Fix drag-and-drop to be more acceptive and responsive
- Make sure we can export our markers to PNG
- Give user the choice of exporting markers or not
- Add GUI for loading and managing shape layers such as GeoJSON or
in the future(?) KML
- Add roundabout support to route
- Use a regular GtkButton for marking favorites
Added/updated/fixed translations:
- Spanish
- Kazakh
- Slovak
- Spanish
- Lithuanian
- Finnish
- Esperanto
- Czech
- German
- Brazilian Portuguese
- Norwegian bokmål
All contributors to this release
Alaf Azam <[email protected]>
Alex Anthony <[email protected]>
Amisha Singla <[email protected]>
Aurimas Černius <[email protected]>
Baurzhan Muftakhidinov <[email protected]>
Damián Nohales <[email protected]>
Daniel Mustieles <[email protected]>
Dušan Kazik <[email protected]>
Enrico Nicoletto <[email protected]>
Hashem Nasarat <[email protected]>
Jiri Grönroos <[email protected]>
Jonas Danielsson <[email protected]>
Karanbir Chahal <[email protected]>
Kjartan Maraas <[email protected]>
Kristjan SCHMIDT <[email protected]>
Marcus Lundblad <[email protected]>
Marek Černocký <[email protected]>
Mario Blättermann <[email protected]>
Mattias Bengtsson <[email protected]>
Prashant Tyagi <[email protected]>
3.19.3 - December 13, 2015
==========================
Changes since 3.19.2:
- Added export to image to context menu
- Added support for MultiPoint in GeoJSON
- Fixed bug in send-to-dialog when default browser has
no icon
- Added support for MapBox simplestyle for GeoJSON
- Added support for editing locations in OpenStreetMap
Added/updated/fixed translations:
- Hungarian
- Spanish
- Czech
- Greek
- Poruguese
- Slovak
- Finnish
- Slovenian
All contributors to this release:
alafazam <[email protected]>
Alaf Azam <[email protected]>
Balázs Meskó <[email protected]>
Daniel Mustieles <[email protected]>
Dušan Kazik <[email protected]>
Hashem Nasarat <[email protected]>
Jiri Grönroos <[email protected]>
Jonas Danielsson <[email protected]>
Kalev Lember <[email protected]>
Marcus Lundblad <[email protected]>
Marek Černocký <[email protected]>
Martin Srebotnjak <[email protected]>
Matej Urbančič <[email protected]>
Pedro Albuquerque <[email protected]>
Piotr Drąg <[email protected]>
Tom Tryfonidis <[email protected]>
3.19.2 - November 23, 2015
==========================
- Fix GeoJSON filling of polygons in polygons
- Add simpler keyboard shortcuts for zoom
- Fix width of send-to dialog
- Add open with browser to send-to dialog that will
open a location on OpenStreetMap web
- Handle the 'geo' URI scheme, this will allow
us to handle geu: URIs in for instance the browser or
in Polari
- Go to latest visited view on start up
Added/updated/fixed translations:
- Czech
- Portuguese
- zh_CN
- Norwegian bokmål
- Spanish
- Turkish
- Finnish
- Lithuanian
- German
All contributors to this release:
alafazam <[email protected]>
Amisha <[email protected]>
Aurimas Černius <[email protected]>
Benjamin Steinwender <[email protected]>
Daniel Mustieles <[email protected]>
Jiri Grönroos <[email protected]>
Jonas Danielsson <[email protected]>
Kjartan Maraas <[email protected]>
Marcus Lundblad <[email protected]>
Marek Černocký <[email protected]>
Mingye Wang (Arthur2e5) <[email protected]>
Muhammet Kara <[email protected]>
Pedro Albuquerque <[email protected]>
Piotr Drąg <[email protected]>
3.19.1 - October 26, 2015
======================
- Fix bugs in contact address lookup
- No more warnings if address has no street address
- Do not attempt to classify type of address if only one(1)
- Use new convenience library for GeoClue
- Add support for opening and displaying GeoJSON files.
- https://en.wikipedia.org/wiki/GeoJSON
- This is with help of the Mapbox geojson-vt javascript code
found at: https://github.com/mapbox/geojson-vt
- Added/updated/fixed translations:
- Basque
- Slovak
All contributors to this release:
Dušan Kazik <[email protected]>
Inaki Larranaga Murgoitio <[email protected]>
Jonas Danielsson <[email protected]>
Zeeshan Ali (Khattak) <[email protected]>
Changes since 3.18.1:
3.18.1 - October 10, 2015
======================
Changes since 3.18.0.1:
- Fix bugs in zooming to a location or contact
- Fix styling of dialog header buttons
- Added/updated/fixed translations:
- Irish
All contributors to this release:
Jonas Danielsson <[email protected]>
Marcus Lundblad <[email protected]>
Seán de Búrca <[email protected]>
3.18.0.1 - September 25, 2015
======================
Changes since 3.18.0:
- Fix bug that prevented Maps from launching
- Added/updated/fixed translations:
- Danish
- Swedish
- Greek
- Serbian
- Serbian Latin
All contributors to this release:
Anders Jonsson <[email protected]>
Ask Hjorth Larsen <[email protected]>
Jonas Danielsson <[email protected]>
Tom Tryfonidis <[email protected]>
Марко Костић <[email protected]>
Милош Поповић <[email protected]>
3.18.0 - September 20, 2015
======================
Changes since 3.17.92:
- Added/updated/fixed translations:
- Spanish
- Italian
- Brazilian Portuguese
- Persian
- Korean
- Czech
- Russian
- Hungarian
- Turkish
All contributors to this release:
Arash Mousavi <[email protected]>
Balázs Úr <[email protected]>
Claudio Arseni <[email protected]>
Daniel Mustieles <[email protected]>
Enrico Nicoletto <[email protected]>
Marek Černocký <[email protected]>
Muhammet Kara <[email protected]>
Seong-ho Cho <[email protected]>
Stas Solovey <[email protected]>
3.17.92 - September 14, 2015
======================
Changes since 3.17.91:
- Add --local switch to use local, offline, tiles
from a structured directory
- Added/updated/fixed translations:
- Polish
- Indonesian
- Hebrew
- Hungarian
- Italian
- Lithuanian
- Kazakh
- Korean
- German
- Turkish
- Norwegian bokmål
- Icelandic
- Slovenian
- Finnish
- Slovak
- French
- Persian
- Japanese
- Portuguese
- Galician
- German
All contributors to this release:
Andika Triwidada <[email protected]>
Arash Mousavi <[email protected]>
Aurimas Černius <[email protected]>
Balázs Úr <[email protected]>
Baurzhan Muftakhidinov <[email protected]>
Benjamin Steinwender <[email protected]>
Bernd Homuth <[email protected]>
Claude Paroz <[email protected]>
Claudio Arseni <[email protected]>
Dušan Kazik <[email protected]>
Fran Dieguez <[email protected]>
Hajime Taira <[email protected]>
Jiri Grönroos <[email protected]>
Jonas Danielsson <[email protected]>
Kjartan Maraas <[email protected]>
Martin Srebotnjak <[email protected]>
Muhammet Kara <[email protected]>
Pedro Albuquerque <[email protected]>
Piotr Drąg <[email protected]>
Seong-ho Cho <[email protected]>
Sveinn í Felli <[email protected]>
Ting-Wei Lan <[email protected]>
Yosef Or Boczko <[email protected]>
3.17.91 - Aaugust 29, 2015
======================
Changes since 3.17.90.1
- Fix memory leaks in contacts handling
- Make sure car routes gets correct icon
- Added/updated/fixed translations:
- Galician
- French
- Portuguese
- Chinese (Taiwan)
- Russian
- Greek
All contributors to this release:
Alexandre Franke <[email protected]>
Chao-Hsiung Liao <[email protected]>
Fran Dieguez <[email protected]>
Jonas Danielsson <[email protected]>
Kalev Lember <[email protected]>
Pedro Albuquerque <[email protected]>
Tom Tryfonidis <[email protected]>
Yuri Myasoedov <[email protected]>
3.17.90.1 - Aaugust 22, 2015
======================
Changes since 3.17.90
- Fix up search popup list
- Fix storing of transportation type of route
- Some bugfixes
- Added/updated/fixed translations:
- Slovak
- Spanish
All contributors to this release:
Daniel Mustieles <[email protected]>
Dušan Kazik <[email protected]>
Jonas Danielsson <[email protected]>
Zeeshan Ali (Khattak) <[email protected]>
3.17.90 - Aaugust 16, 2015
======================
Changes since 3.17.1
- Add new user-location icon
- Add directional user-location icon
- Show heading from Geoclue
- Do not animate on 'what is here?'
- Add support for Geo URI (RFC5870) in searchbar
- Add 'Copy Geo URI' context menu item