-
Notifications
You must be signed in to change notification settings - Fork 29
/
NEWS
5080 lines (4417 loc) · 135 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
47.0 - Sep 13, 2024
=========================
Changes since 47.rc
- Fix issue with sometimes bad contrasting public transit route lines
- Fix orientation of "fish head"-shaped highway shields
- Add additional public transit mode icons, and also use taxi icon for
taxi stations
Added/updated/fixed translations
- Polish
- British English
- Occitan
- Danish
- Czech
- Swedish
- Catalan
- Bulgarian
- Spanish
- Galician
- Lithuanian
- Portuguese
- Greek
- Kazakh
- Turkish
- Indonesian
All contributors to this release
Alan Mortensen <[email protected]>
Alexander Shopov <[email protected]>
Anders Jonsson <[email protected]>
Andika Triwidada <[email protected]>
Aurimas Černius <[email protected]>
Baurzhan Muftakhidinov <[email protected]>
Bruce Cowan <[email protected]>
Daniel <[email protected]>
Efstathios Iosifidis <[email protected]>
Fran Dieguez <[email protected]>
Hugo Carvalho <[email protected]>
Jordi Mas i Hernandez <[email protected]>
Marcus Lundblad <[email protected]>
Piotr Drąg <[email protected]>
Quentin PAGÈS <[email protected]>
Sabri Ünal <[email protected]>
twlvnn kraftwerk <[email protected]>
Vojtěch Perník <[email protected]>
47.rc - Aug 30, 2024
=========================
Changes since 47.beta
- Support Transitous for public transit routing
- Update POI definitions
- Update highway shields from OSM Americana
- Don't grab focus on search entry when pressing modifier keys
Added/updated/fixed translations
- German
- Brazilian Portuguese
- Basque
- Finnish
- Chinese (China)
- Norwegian Bokmål
- Ukrainian
- Georgian
- Belarusian
- Romanian
- Hungarian
- Turkish
All contributors to this release
Asier Sarasua Garmendia <[email protected]>
Balázs Úr <[email protected]>
Brage Fuglseth <[email protected]>
Danial Behzadi <[email protected]>
Daniel Șerbănescu <[email protected]>
Ekaterine Papava <[email protected]>
Irénée THIRION <[email protected]>
James Addison <[email protected]>
Jeeyong Um <[email protected]>
Jiri Grönroos <[email protected]>
Jose Riha <[email protected]>
Juliano de Souza Camargo <[email protected]>
Jürgen Benvenuti <[email protected]>
Luming Zh <[email protected]>
Marcus Lundblad <[email protected]>
Sabri Ünal <[email protected]>
Vasil Pupkin <[email protected]>
Yuri Chornoivan <[email protected]>
47.beta - Aug 1, 2024
=========================
Changes since 47.alpha2
- Integrate "explore" in main search entry to avoid problems with linked
style making rounded corners disappear when showing search results
Added/updated/fixed translations
- Hindi
- Russian
- Hebrew
- Slovenian
Contributors to this release
Artur S0 <[email protected]>
Marcus Lundblad <[email protected]>
Martin <[email protected]>
Scrambled 777 <[email protected]>
Yaron Shahrabani <[email protected]>
47.alpha2 - Jul 2, 2024
=========================
Changes since 47.alpha
- Fix generating message catalogs (remove non-existing file from POTFILES.in)
Added/updated/fixed translations
- Hindi
- Slovenian
Contributors to this release
Anders Jonsson <[email protected]>
Marcus Lundblad <[email protected]>
Martin <[email protected]>
Scrambled 777 <[email protected]>
47.alpha - Jul 1, 2024
=========================
Changes since 46.0
- Use the vector by default, and remove the old raster tiles
- Remove the "What's here" menu item, as we now have clickable POIs
- Stop using the downloaded service file, as it's not needed for raster tiles
now that the vector style embeds a map source, and instead bundle defintions
for public transit providers
- Use zoom parameter from geo: URIs when available
- Support dark mode when drawing public transit routes on the map
- Unselect previously selected place when clicking on the background
- Speed up "zoom to" animations
- Show brand logos from Wikidata for POIs when available
- Show place type icon and in place type in bubbles for POIs
- Port more dialogs to use libadwaita dialogs
- Add missing mnemonics for menu items
- Various a11y improvements
- Add playground icons :)
- Properly show 12/24 hour format based on system setting when selecting
time for public transit routing when running as Flakpak
- Set Window icon, used by some WMs/DEs
Added/updated/fixed translations
- Catalan
- Hungarian
- Hindi
- Portuguese
- Greek
- Ukranian
- Slovenian
- Friulian
- Kabyle
- Serbian (Latin)
- Serbian
- Punjabi
All contributors to this release
Anders Jonsson <[email protected]>
Andre Klapper <[email protected]>
Andy Holmes <[email protected]>
A S Alam <[email protected]>
Automeris naranja <[email protected]>
Balázs Úr <[email protected]>
Balló György <[email protected]>
DaPigGuy <[email protected]>
Efstathios Iosifidis <[email protected]>
Fabio Tomat <[email protected]>
Guntupalli Karunakar <[email protected]>
Hugo Carvalho <[email protected]>
Jakub Steiner <[email protected]>
James Westman <[email protected]>
Jeff Fortin <[email protected]>
Jordi Mas i Hernandez <[email protected]>
Marcus Lundblad <[email protected]>
Martin Blanchard <[email protected]>
Martin <[email protected]>
Matheus Polkorny <[email protected]>
Rachida SACI <[email protected]>
Sudhanshu Tiwari <[email protected]>
Yuri Chornoivan <[email protected]>
Милош Поповић <[email protected]>
46.0 - Mar 16, 2024
=========================
Changes since 46.rc
- Fix routes covering user location marker
- Update project link in DOAP file
Added/updated/fixed translations
- Korean
- Kabyle
- Polish
- Occitan
- Latvian
- Italian
- Danish
- Russian
- Swedish
- Hungarian
All contributors to this release
Alan Mortensen <[email protected]>
Alexandre Franke <[email protected]>
Anders Jonsson <[email protected]>
Artur S0 <[email protected]>
Athmane MOKRAOUI <[email protected]>
Balázs Úr <[email protected]>
James Westman <[email protected]>
Jeeyong Um <[email protected]>
Marcus Lundblad <[email protected]>
Milo Casagrande <[email protected]>
Piotr Drąg <[email protected]>
Quentin PAGÈS <[email protected]>
Rūdolfs Mazurs <[email protected]>
Valentin Blot <[email protected]>
46.rc - Mar 2, 2024
=========================
Changes since 45.beta
- Lots of updates to the map style
- Fix parsing OSM object URLs with trailing slashes
Added/updated/fixed translations
- German
- Latvian
- British English
- Lithuanian
- Chinese (China)
- Spanish
- Turkish
- Kazakh
- French
- Finnish
- Slovenian
- Dutch
- Basque
- Czech
- Hebrew
- Indonesian
- Persian
- Ukranian
- Belarusian
- Georgian
- Galician
- Friulian
All contributors to this release
Alexandre Franke <[email protected]>
Andi Chandler <[email protected]>
Asier Sarasua Garmendia <[email protected]>
Aurimas Černius <[email protected]>
Automeris naranja <[email protected]>
Baurzhan Muftakhidinov <[email protected]>
Boyuan Yang <[email protected]>
Bruce Cowan <[email protected]>
Christian Kirbach <[email protected]>
Danial Behzadi <[email protected]>
Daniel Mustieles <[email protected]>
Daniel Rusek <[email protected]>
Ekaterine Papava <[email protected]>
Fabio Tomat <[email protected]>
Fran Dieguez <[email protected]>
James Westman <[email protected]>
Jiri Grönroos <[email protected]>
Julián Villodre <[email protected]>
Kukuh Syafaat <[email protected]>
Marcus Lundblad <[email protected]>
Matej Urbančič <[email protected]>
Nathan Follens <[email protected]>
Rūdolfs Mazurs <[email protected]>
Sabri Ünal <[email protected]>
Sophie Herold <[email protected]>
Vasil Pupkin <[email protected]>
Yaron Shahrabani <[email protected]>
Yuri Chornoivan <[email protected]>
46.beta - Feb 10, 2024
=========================
Changes since 45.alpha
- The experimental vector map view now uses the new GNOME map style
- Add highway shield renderer using definitions from OSM-Americana to render
localized shields in some areas when using the experimental map view
- Show place bubbles directly when clicking symbols and labels in the
experimental map view (removing the need to use the "What's here?" context
menu)
- Refresh icons in the POI browser UI to use new icons matching the new map style
- Fixing issues with the place bar in narrow "mobile mode"
- Modernize map marker icon
- Show shapelayer name and place description in place bubbles for marked
places in shape layers
- Use the system's clock format (12h/24h) when sandboxed (through portal)
- Refreshed UI for favorites with an empty view, and the ability to remove
favorites directly from the menu
- Internal: refactored the place store to make it easier to show additional
information for places
Added/updated/fixed translations
- Czech
- Russian
- Turkish
- Galician
- Italian
- Persian
All contributors to this release
Artur S0 <[email protected]>
Danial Behzadi <[email protected]>
Daniel Rusek <[email protected]>
Fran Dieguez <[email protected]>
Jakub Steiner <[email protected]>
James Westman <[email protected]>
Marcus Lundblad <[email protected]>
Sabri Ünal <[email protected]>
Vittorio Monti <[email protected]>
46.alpha - Jan 6, 2024
=========================
Changes since 45.0
- Redesigned zoom controls inspired by the Loupe image viewer
- Support for OpenTripPlanner v2 GraphQL for public transit routing
- Redeigned OSM account dialog, using Adwaita widgets
- Simplified/refactored more flexible storage format for the place store cache
- Fixed a bug preventing the POI browser showing in some cases
Added/updated/fixed translations
- Friulian
- Russian
- Turkish
- Catalan
- Romanian
- French
- Brazilian Portuguese
- British English
- Esperanto
All contributors to this release
Artur S0 <[email protected]>
Bruce Cowan <[email protected]>
Dark Dragon <[email protected]>
Emin Tufan Çetin <[email protected]>
Fabio Tomat <[email protected]>
Felipe Kinoshita <[email protected]>
Florentina Mușat <[email protected]>
Guillaume Bernard <[email protected]>
James Westman <[email protected]>
Jordi Mas i Hernandez <[email protected]>
Kristjan SCHMIDT <[email protected]>
Marcus Lundblad <[email protected]>
Rafael Fontenelle <[email protected]>
Sabri Ünal <[email protected]>
45.0 - Sep 16, 2023
=========================
Changes since 45.rc
- Hide the experimental vector map toggle if libshumate is compiled without
vector support
- Fix POI browser category lables showing translated strings
Added/updated/fixed translations
- Swedish
- Slovenian
- Korean
- Hungarian
- Danish
- Lithuanian
- Hebrew
- Czech
All contributors to the release
Alan Mortensen <[email protected]>
Anders Jonsson <[email protected]>
Aurimas Černius <[email protected]>
Balázs Úr <[email protected]>
Daniel Rusek <[email protected]>
James Westman <[email protected]>
Jeeyong Um <[email protected]>
Marcus Lundblad <[email protected]>
Matej Urbančič <[email protected]>
Yosef Or Boczko <[email protected]>
45.rc - Sep 1, 2023
=========================
Changes since 45.rc
- Enabled experimental vector-based map
- Update OSM edit POI definition
- Increase sidebar width to fit longer translated strings
Added/updated/fixed translations
- Russian
- Chinese (China)
- Punjabi
- German
- Greek
- Kazakh
- Spanish
- Finnish
- Czech
- Portuguese
- Belarusian
- Polish
- Persian
- Galician
- Turkish
- Ukrainian
- Indonesian
All contributors to this release
Amn Alam <[email protected]>
Artur S0 <[email protected]>
Asier Sarasua Garmendia <[email protected]>
Baurzhan Muftakhidinov <[email protected]>
Boyuan Yang <[email protected]>
Danial Behzadi <[email protected]>
Daniel Mustieles <[email protected]>
Daniel Rusek <[email protected]>
Efstathios Iosifidis <[email protected]>
Fran Dieguez <[email protected]>
Harry Bond <[email protected]>
Hugo Carvalho <[email protected]>
James Westman <[email protected]>
Jiri Grönroos <[email protected]>
Kukuh Syafaat <[email protected]>
Marcus Lundblad <[email protected]>
Michael Evans <[email protected]>
Nathan Follens <[email protected]>
Philipp Kiemle <[email protected]>
Piotr Drąg <[email protected]>
RedAuburn <[email protected]>
Sabri Ünal <[email protected]>
Vasil Pupkin <[email protected]>
Yuri Chornoivan <[email protected]>
45.beta - Aug 4, 2023
=========================
Changes since 45.alpha
- Use Adw.OverlaySplitView for the routing sidebar. This enables better
narrow screen size adaptiveness and using touch gestures to open the
sidebar
- Always show phone numbers as links when sandboxed (e.g. Flatpak)
- Re-enable animations when going to new places and showing routes
- Use toasts for the OSM zoom in and location service dialogs
- Restrict to using only supported languages for the GraphHopper geocoding
(search) service
45.alpha - Jul 1, 2023
=========================
Changes since 44.0
- Implemented POI explore UI
- Move zoom control buttons (back) to overlay
- Add rotation button with ability to reset rotation
- Make use of Adw.Toast for showing simple messages
- Update screenshots
- Add support for auth header in OpenTripPlanner plugin
Added/updated/fixed translations
- Brazilian Portuguese
- Icelandic
- Slovak
- Italian
- Turkish
- Friulian
- Bulgarian
- Russian
- Dutch
- Chinese (China)
- Persian
- Ukrainian
- Indonesian
- Georgian
- Indonesian
- Slovenian
All contributors to this release
Aleksandr Melman <[email protected]>
Alexander Shopov <[email protected]>
Andika Triwidada <[email protected]>
Boyuan Yang <[email protected]>
Danial Behzadi <[email protected]>
Dušan Kazik <[email protected]>
Ekaterine Papava <[email protected]>
Fabio Tomat <[email protected]>
Felipe Kinoshita <[email protected]>
Gianvito Cavasoli <[email protected]>
Jakub Steiner <[email protected]>
kramo <[email protected]>
Leônidas Araújo <[email protected]>
Marcus Lundblad <[email protected]>
Martin <[email protected]>
Nathan Follens <[email protected]>
Sabri Ünal <[email protected]>
Sam Hewitt <[email protected]>
Sveinn í Felli <[email protected]>
Szymon Kłos <[email protected]>
Yuri Chornoivan <[email protected]>
44.0 - Mar 18, 2023
=========================
Changes since 44.rc
- Disable the go-to animation to avoid getting throttled by the tile server
Added/updated/fixed translations
- British English
- Persian
- French
- Catalan
- Friulian
- Greek
- Swedish
- Polish
- Bulgarian
- Korean
- Russian
All contributors to this release
Aleksandr Melman <[email protected]>
Alexander Shopov <[email protected]>
Anders Jonsson <[email protected]>
Bruce Cowan <[email protected]>
Efstathios Iosifidis <[email protected]>
Fabio Tomat <[email protected]>
Irénée THIRION <[email protected]>
Jeeyong Um <[email protected]>
Jordi Mas i Hernandez <[email protected]>
Marcus Lundblad <[email protected]>
MohammadSaleh Kamyab <[email protected]>
Piotr Drąg <[email protected]>
44.rc - Mar 4, 2023
=========================
Changes since 44.beta
- Updated POI definitions for OpenStreetMap editing
- Center text in the location service dialog
- Tweak header captilization and ellipsation for tooltips and menu items
- Use proper suggestions style for search result lists
- Add nightly builds for AArch64
Added/updated/fixed translations
- Czech
- Finnish
- Slovenian
- Hungarian
- Danish
- Portuguese
- Friulian
- Galician
- Turkish
- Spanish
- Basque
- German
- Belarusian
- Indonesian
- Lithuanian
- Ukrainian
- Hebrew
- Georgian
- Serbian
All contributors to this release
Alan Mortensen <[email protected]>
Andika Triwidada <[email protected]>
Asier Sarasua Garmendia <[email protected]>
Aurimas Černius <[email protected]>
Automeris naranja <[email protected]>
Balázs Úr <[email protected]>
Christopher Davis <[email protected]>
Daniel <[email protected]>
Ekaterine Papava <[email protected]>
Fabio Tomat <[email protected]>
Felipe Kinoshita <[email protected]>
Fran Dieguez <[email protected]>
Hugo Carvalho <[email protected]>
Jiri Grönroos <[email protected]>
Julian Sparber <[email protected]>
Jürgen Benvenuti <[email protected]>
Kukuh Syafaat <[email protected]>
Marcus Lundblad <[email protected]>
Marek Černocký <[email protected]>
Matej Urbančič <[email protected]>
Sabri Ünal <[email protected]>
Vasil Pupkin <[email protected]>
Yaron Shahrabani <[email protected]>
Yosef Or Boczko <[email protected]>
Yuri Chornoivan <[email protected]>
Марко Костић <[email protected]>
44.beta - Feb 1, 2023
=========================
Changes since 44.alpha
- Prevent the scale to cover the sidebar when the window is narrow
- Fix keyboard navigation of search results (regression from the GTK 4 port)
- Style fixes of the sidebar border
- Make the "export as image" dialog work on phones
Added/updated/fixed translations
- Indonesian
- Russian
- German
- Greek
- Ukrainian
- Portuguese
- Belarussian
- Hebrew
- Georgian
- Turkish
- Basque
All contributors to this release
Adrien Plazas <[email protected]>
Aleksandr Melman <[email protected]>
Asier Sarasua Garmendia <[email protected]>
Efstathios Iosifidis <[email protected]>
Ekaterine Papava <[email protected]>
Emin Tufan Çetin <[email protected]>
Fabio Tomat <[email protected]>
Hugo Carvalho <[email protected]>
Jürgen Benvenuti <[email protected]>
Kukuh Syafaat <[email protected]>
Marcus Lundblad <[email protected]>
Sabri Ünal <[email protected]>
Vasil Pupkin <[email protected]>
Yosef Or Boczko <[email protected]>
Yuri Chornoivan <[email protected]>
44.alpha - Jan 6, 2023
=========================
Changes since 43.0
- Fix excessive margins in place bubbles
- Fix adaptive mode detection when maximized
- Fix broken long-press to bring up the context menu on touch screens
- Fixing various issues left after the GTK 4 port
- Fix setting adaptive narrow (phone) mode on first launch on portrait
displays
- Fix dragging-and-dropping route entris in the sidebar
- Fix opening shapelayer files when dragged-and-dropped onto the main window
- Fix selecting turnpoint instructions showing the position of the
instruction on the map
- Fix local tiles (using the --local command-line option)
- Fix location service dialog
- Fix send-to dialog
- Fix user location accuracy marker positioning
- Implement support for getting thumbnails and Wikipedia article extracts
from Wikidata
Added/updated/fixed translations
- Ukrainian
- Russian
- Turkish
- Belarussian
- Hungarian
- Hebrew
- Greek
- Italian
- Icelandic
- Slovak
- Dutch
- Friulian
- Nepali
- Kazakh
All contributors to this release
Aleksandr Melman <[email protected]>
Amit Tripathi <[email protected]>
Balázs Úr <[email protected]>
Baurzhan Muftakhidinov <[email protected]>
Dušan Kazik <[email protected]>
Efstathios Iosifidis <[email protected]>
Fabio Tomat <[email protected]>
Gianvito Cavasoli <[email protected]>
James Westman <[email protected]>
Marcus Lundblad <[email protected]>
Nathan Follens <[email protected]>
Pablo Correa Gómez <[email protected]>
Pawan Chitrakar <[email protected]>
Sabri Ünal <[email protected]>
Shivam Madlani <[email protected]>
Sveinn í Felli <[email protected]>
Taisei Washington <[email protected]>
Valentin Blot <[email protected]>
Vasil Pupkin <[email protected]>
Yosef Or Boczko <[email protected]>
Yuri Chornoivan <[email protected]>
43.0 - Sep 17, 2022
=========================
Changes since 43.rc
- Remove build-dependency on GTK3
- Don't install tests gresource
Added/updated/fixed translations
- French
- Bulgarian
- Catalan
- Lithuanian
- Hebrew
- Slovenian
- Latvian
- Georgian
- Serbian
- Korean
- Brazilian Portuguese
- Galician
- German
- Chinese (China)
All contributors to this release
Alexander Shopov <[email protected]>
Aurimas Černius <[email protected]>
Boyuan Yang <[email protected]>
Charles Monzat <[email protected]>
Fran Dieguez <[email protected]>
Jan Tojnar <[email protected]>
Jeeyong Um <[email protected]>
Jeremy Bicha <[email protected]>
Jordi Mas <[email protected]>
Jürgen Benvenuti <[email protected]>
Leônidas Araújo <[email protected]>
Marcus Lundblad <[email protected]>
Matej Urbančič <[email protected]>
Rūdolfs Mazurs <[email protected]>
Yosef Or Boczko <[email protected]>
Zurab Kargareteli <[email protected]>
Марко Костић <[email protected]>
43.rc - Sep 3, 2022
=========================
Changes since 43.beta
- Use Adwaita about dialog
- Various UI cleanups, tweaks, and fixes
- Switch OSM edit authorization to use OAuth 2
- Update POI definitions for OSM editing
Added/updated/fixed translations
- Danish
- Turkish
- Indonesian
- Catalan
- Basque
- Hungarian
- Swedish
- Finnish
- Croatian
- Czech
- Spanish
- Russian
- Portuguese
- Polish
- Ukrainian
- Occitan
- Persian
- Abkhazian
- Georgian
- Galician
All contributors to this release
Alan Mortensen <[email protected]>
Aleksandr Melman <[email protected]>
Anders Jonsson <[email protected]>
Asier Sarasua Garmendia <[email protected]>
Balázs Úr <[email protected]>
Christopher Davis <[email protected]>
Danial Behzadi <[email protected]>
Daniel Mustieles <[email protected]>
Emin Tufan Çetin <[email protected]>
Fran Dieguez <[email protected]>
Goran Vidović <[email protected]>
Hugo Carvalho <[email protected]>
Jiri Grönroos <[email protected]>
Jordi Mas <[email protected]>
Kukuh Syafaat <[email protected]>
Marcus Lundblad <[email protected]>
Marek Černocký <[email protected]>
Marek Černocký <[email protected]>
Nart Tlisha <[email protected]>
Piotr Drąg <[email protected]>
Quentin PAGÈS <[email protected]>
Sabri Ünal <[email protected]>
Yuri Chornoivan <[email protected]>
Zurab Kargareteli <[email protected]>
43.beta - Aug 20, 2022
=========================
Changes since 43.alpha
- Port to GTK 4 and libshumate
- Port to use libsoup 3
Added/updated/fixed translations
- Croatian
- Ukrainian
- Swedish
- Persian
- Finnish
- Basque
- Spanish
- French
- Abkhazian
- Georgian
- Turkish
- Hebrew
- Indonesian
All contributors to this release
Anders Jonsson <[email protected]>
Asier Sarasua Garmendia <[email protected]>
Bartłomiej Piotrowski <[email protected]>
Claude Paroz <[email protected]>
Danial Behzadi <[email protected]>
Daniel Mustieles <[email protected]>
Emin Tufan Çetin <[email protected]>
Goran Vidović <[email protected]>
Jiri Grönroos <[email protected]>
Kukuh Syafaat <[email protected]>
Marcus Lundblad <[email protected]>
Nart Tlisha <[email protected]>
Piotr Drąg <[email protected]>
Yosef Or Boczko <[email protected]>
Yuri Chornoivan <[email protected]>
Zurab Kargareteli <[email protected]>
43.alpha - Jul 1, 2022
=========================
Changes since 42.0
- Remove network check (always assume network is available)
- Remove check-in support (as no GOA backends support this anymore)
- Use external browser to authorize OSM account for editing
- Add checkbox to select the visibility of the scale
- Fix setting the correct month in the public transit time settings
- Migrate code to use ES 6 modules
- Tune location bias scale parameter for the Photon geocoder
- Fix a crash on exit
- Add icons for keep left/right route instuctions
- Remove support for contact address lookup (removes dependency on
libfolks, possible this will be re-introduces at some point using e-d-s
directly)
- Remove support for dark street and hybrid aerial tiles, as we don't have
access to these anymore and a future implementation of dark tiles will
likely use vector tiles with a stylesheet
- Add specific icon for tourist rail in public transit itineraries
- Update the Resrobot public transit plugin to API v2.1
Added/updated/fixed translations
- Brazilian Portuguese
- Persian
- Portuguese
- Ukrainian
- Russian
- Italian
- Friulian
- German
- Georgian
- Hebrew
- Nepali
- Spanish
- Galician
- Swedish
- Icelandic
- Slovak
- Hungarian
- Dutch
- Latvian
All contributors to this release
Aleksandr Melman <[email protected]>
Anders Jonsson <[email protected]>
Andreas Nilsson <[email protected]>
Balázs Úr <[email protected]>
Danial Behzadi <[email protected]>
Daniel Mustieles <[email protected]>
Dušan Kazik <[email protected]>
Fabio Tomat <[email protected]>
Fran Dieguez <[email protected]>
Gianvito Cavasoli <[email protected]>
Hugo Carvalho <[email protected]>
Jakub Steiner <[email protected]>
Jürgen Benvenuti <[email protected]>
Marcus Lundblad <[email protected]>
Nathan Follens <[email protected]>
Pawan Chitrakar <[email protected]>
Piotr Drąg <[email protected]>
Rūdolfs Mazurs <[email protected]>
Sten Smoller <[email protected]>
Sveinn í Felli <[email protected]>
Yosef Or Boczko <[email protected]>
Yuri Chornoivan <[email protected]>
Zurab Kargareteli <[email protected]>
42.0 - Mar 19, 2022
=========================
Added/updated/fixed translations
- Slovenian
- Norwegian Bokmål
- Russian
- Serbian
- French
- Spanish
- Kazakh
- German
- Bulgarian
- Korean
- Hungarian
- Danish
- Hebrew
- Galician
- Lithuanian
- Persian
- Polish
- Chinese (China)
All contributors to this release
Aleksandr Melman <[email protected]>
Alexander Shopov <[email protected]>
Ask Hjorth Larsen <[email protected]>
Aurimas Černius <[email protected]>
Balázs Úr <[email protected]>
Baurzhan Muftakhidinov <[email protected]>
Charles Monzat <[email protected]>
Danial Behzadi <[email protected]>
Daniel Mustieles <[email protected]>
Fran Dieguez <[email protected]>
Jeeyong Um <[email protected]>
Kjartan Maraas <[email protected]>
Luming Zh <[email protected]>
Marcus Lundblad <[email protected]>
Matej Urbančič <[email protected]>
Philipp Kiemle <[email protected]>
Piotr Drąg <[email protected]>
Yosef Or Boczko <[email protected]>
Марко Костић <[email protected]>
42.rc - Mar 5, 2022
=========================
Changes since 42.beta
- Save visibility of the scale in gsettings so it's remembered between runs
- Update OSM POI definitions for OSM editing
- Correctly set the initially selected date in the calendar widget for
public transit routing, so that the date is always set to today when
first selecting a date, even if Maps was started on an earlier day
- Fix some incositencies when showing times for public transit itineraries
- Update appdata screenshots
- Use tabular numbers for time labels in the public transit itinerary views
to keep things tidily lined up vertically
Added/updated/fixed translations
- Brazilian Portuguese
- Catalan
- Basque
- Turkish
- Finnish
- Czech
- Portuguese
- Croatian
- Ukrainian
- Indonesian
- Swedish
- German
- Polish
- Finnish
- Turkish
- French
- Lithuanian
All contributors to this release
Anders Jonsson <[email protected]>
Asier Sarasua Garmendia <[email protected]>
Aurimas Černius <[email protected]>
Claude Paroz <[email protected]>
Emin Tufan Çetin <[email protected]>
Enrico Nicoletto <[email protected]>
Goran Vidović <[email protected]>
Hugo Carvalho <[email protected]>
Jiri Grönroos <[email protected]>
Jordi Mas <[email protected]>
Kukuh Syafaat <[email protected]>
Marcus Lundblad <[email protected]>
Marek Černocký <[email protected]>
Piotr Drąg <[email protected]>