-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathNEWS
5155 lines (4481 loc) · 137 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
48.beta - Jan 29, 2025
=========================
Changes since 48.alpha2
- Redesigned user location marker, using system accent color
- Redesigned/improved rendering of route markers and public transit
route itineraries
Added/updated/fixed translations
- Slovenian
- Brazilian Portuguese
- Turkish
- Hebrew
All contributors to this release
Marcus Lundblad <ml@dfupdate.se>
Martin <miles@filmsi.net>
Rafael Fontenelle <rafaelff@gnome.org>
Sabri Ünal <yakushabb@gmail.com>
Yaron Shahrabani <sh.yaron@gmail.com>
48.alpha2 - Jan 4, 2025
=========================
Changes since 48.alpha
- Define release artifact path as a global variable in CI
All contributors to this release
Marcus Lundblad <ml@dfupdate.se>
48.alpha - Jan 4, 2025
=========================
Changes since 47.0
- Moved the Transitous support to use the new MOTIS v2 API
- Refreshed headerbar icons for layers and favorites menu buttons
- Added animation to favorite star when favoring a place
- Use AdwSpinner widgets for all spinners
- Close sidebar when pressing Esc
- Updated screenshots to reflect new map theme, public transit support, and
dark mode
- Use an AdwToggleGroup widget for the routing mode switcher
- Redesigned POI edit dialog
Added/updated/fixed translations
- Belarusian
- Slovenian
- Hebrew
- Serbian (Latin)
- Serbian
- Dutch
- Czech
- Latvian
- Brazilian Portuguese
- Kabyle
- Slovak
All contributors to this release
Athmane MOKRAOUI <butterflyoffire@protonmail.com>
Christopher Davis <christopherdavis@gnome.org>
Daniel Rusek <mail@asciiwolf.com>
Denis Rangelov <84382-rangelovd@users.noreply.gitlab.gnome.org>
Felipe Kinoshita <kinofhek@gmail.com>
Harry Bond <me@hbond.xyz>
Jordi Mas i Hernandez <jmas@softcatala.org>
Jose Riha <jose1711@gmail.com>
Juliano de Souza Camargo <julianosc@protonmail.com>
Marcus Lundblad <ml@dfupdate.se>
Martin <miles@filmsi.net>
Nathan Follens <nfollens@gnome.org>
Rūdolfs Mazurs <alta.liepa@gmail.com>
Vasil Pupkin <3abac@3a.by>
Yaron Shahrabani <sh.yaron@gmail.com>
Милош Поповић <gpopac@gmail.com>
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 <alanmortensen.am@gmail.com>
Alexander Shopov <ash@kambanaria.org>
Anders Jonsson <anders.jonsson@norsjovallen.se>
Andika Triwidada <atriwidada@gnome.org>
Aurimas Černius <aurisc4@gmail.com>
Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Bruce Cowan <bruce@bcowan.me.uk>
Daniel <daniel.mustieles@gmail.com>
Efstathios Iosifidis <eiosifidis@gnome.org>
Fran Dieguez <frandieguez@gnome.org>
Hugo Carvalho <hugo79@vivaldi.net>
Jordi Mas i Hernandez <jmas@softcatala.org>
Marcus Lundblad <ml@dfupdate.se>
Piotr Drąg <piotrdrag@gmail.com>
Quentin PAGÈS <pages_quentin@hotmail.com>
Sabri Ünal <yakushabb@gmail.com>
twlvnn kraftwerk <kraft_werk@tutanota.com>
Vojtěch Perník <info@pervoj.cz>
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 <asiersarasua@ni.eus>
Balázs Úr <balazs@urbalazs.hu>
Brage Fuglseth <bragefuglseth@gnome.org>
Danial Behzadi <dani.behzi@ubuntu.com>
Daniel Șerbănescu <daniel@serbanescu.dk>
Ekaterine Papava <papava.e@gtu.ge>
Irénée THIRION <irenee.thirion@e.email>
James Addison <jay@jp-hosting.net>
Jeeyong Um <conr2d@gmail.com>
Jiri Grönroos <jiri.gronroos@iki.fi>
Jose Riha <jose1711@gmail.com>
Juliano de Souza Camargo <julianosc@protonmail.com>
Jürgen Benvenuti <jbenvenuti@gnome.org>
Luming Zh <lumingzh@qq.com>
Marcus Lundblad <ml@dfupdate.se>
Sabri Ünal <yakushabb@gmail.com>
Vasil Pupkin <3abac@3a.by>
Yuri Chornoivan <yurchor@ukr.net>
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 <arturios05@bk.ru>
Marcus Lundblad <ml@dfupdate.se>
Martin <miles@filmsi.net>
Scrambled 777 <weblate.scrambled777@simplelogin.com>
Yaron Shahrabani <sh.yaron@gmail.com>
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 <anders.jonsson@norsjovallen.se>
Marcus Lundblad <ml@dfupdate.se>
Martin <miles@filmsi.net>
Scrambled 777 <weblate.scrambled777@simplelogin.com>
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 <anders.jonsson@norsjovallen.se>
Andre Klapper <a9016009@gmx.de>
Andy Holmes <andyholmes@gnome.org>
A S Alam <amanpreet.alam@gmail.com>
Automeris naranja <automerisnaranja@tutanota.com>
Balázs Úr <balazs@urbalazs.hu>
Balló György <ballogyor@gmail.com>
DaPigGuy <mcpepig123@gmail.com>
Efstathios Iosifidis <eiosifidis@gnome.org>
Fabio Tomat <f.t.public@gmail.com>
Guntupalli Karunakar <karunakar@indlinux.org>
Hugo Carvalho <hugokarvalho@hotmail.com>
Jakub Steiner <jimmac@gmail.com>
James Westman <james@jwestman.net>
Jeff Fortin <nekohayo@gmail.com>
Jordi Mas i Hernandez <jmas@softcatala.org>
Marcus Lundblad <ml@dfupdate.se>
Martin Blanchard <tchaik@gmx.com>
Martin <miles@filmsi.net>
Matheus Polkorny <mpolkorny@ipt.br>
Rachida SACI <rgebbid@gmail.com>
Sudhanshu Tiwari <230231060@hbtu.ac.in>
Yuri Chornoivan <yurchor@ukr.net>
Милош Поповић <gpopac@gmail.com>
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 <alanmortensen.am@gmail.com>
Alexandre Franke <afranke@gnome.org>
Anders Jonsson <anders.jonsson@norsjovallen.se>
Artur S0 <arturios05@bk.ru>
Athmane MOKRAOUI <butterflyoffire@protonmail.com>
Balázs Úr <balazs@urbalazs.hu>
James Westman <james@jwestman.net>
Jeeyong Um <conr2d@gmail.com>
Marcus Lundblad <ml@dfupdate.se>
Milo Casagrande <milo@milo.name>
Piotr Drąg <piotrdrag@gmail.com>
Quentin PAGÈS <pages_quentin@hotmail.com>
Rūdolfs Mazurs <alta.liepa@gmail.com>
Valentin Blot <14005-vblot@users.noreply.gitlab.gnome.org>
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 <afranke@gnome.org>
Andi Chandler <andi@gowling.com>
Asier Sarasua Garmendia <asiersarasua@ni.eus>
Aurimas Černius <aurisc4@gmail.com>
Automeris naranja <104251-automerisnaranja@users.noreply.gitlab.gnome.org>
Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Boyuan Yang <073plan@gmail.com>
Bruce Cowan <bruce@bcowan.me.uk>
Christian Kirbach <Christian.Kirbach@gmail.com>
Danial Behzadi <dani.behzi@ubuntu.com>
Daniel Mustieles <daniel.mustieles@gmail.com>
Daniel Rusek <mail@asciiwolf.com>
Ekaterine Papava <papava.e@gtu.ge>
Fabio Tomat <f.t.public@gmail.com>
Fran Dieguez <frandieguez@gnome.org>
James Westman <james@jwestman.net>
Jiri Grönroos <jiri.gronroos@iki.fi>
Julián Villodre <jvillodrede@gmail.com>
Kukuh Syafaat <kukuhsyafaat@gnome.org>
Marcus Lundblad <ml@dfupdate.se>
Matej Urbančič <mateju@src.gnome.org>
Nathan Follens <nfollens@gnome.org>
Rūdolfs Mazurs <alta.liepa@gmail.com>
Sabri Ünal <libreajans@gmail.com>
Sophie Herold <sophie@hemio.de>
Vasil Pupkin <3abac@3a.by>
Yaron Shahrabani <sh.yaron@gmail.com>
Yuri Chornoivan <yurchor@ukr.net>
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 <arturios05@bk.ru>
Danial Behzadi <dani.behzi@ubuntu.com>
Daniel Rusek <mail@asciiwolf.com>
Fran Dieguez <frandieguez@gnome.org>
Jakub Steiner <jimmac@gmail.com>
James Westman <james@jwestman.net>
Marcus Lundblad <ml@dfupdate.se>
Sabri Ünal <libreajans@gmail.com>
Vittorio Monti <gitlapur.a8tut@aleeas.com>
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 <arturios05@bk.ru>
Bruce Cowan <bruce@bcowan.me.uk>
Dark Dragon <darkdragon-001@web.de>
Emin Tufan Çetin <etcetin@gmail.com>
Fabio Tomat <f.t.public@gmail.com>
Felipe Kinoshita <kinofhek@gmail.com>
Florentina Mușat <florentina.musat.28@gmail.com>
Guillaume Bernard <associations@guillaume-bernard.fr>
James Westman <james@jwestman.net>
Jordi Mas i Hernandez <jmas@softcatala.org>
Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>
Marcus Lundblad <ml@dfupdate.se>
Rafael Fontenelle <rafaelff@gnome.org>
Sabri Ünal <libreajans@gmail.com>
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 <alanmortensen.am@gmail.com>
Anders Jonsson <anders.jonsson@norsjovallen.se>
Aurimas Černius <aurisc4@gmail.com>
Balázs Úr <balazs@urbalazs.hu>
Daniel Rusek <mail@asciiwolf.com>
James Westman <james@jwestman.net>
Jeeyong Um <conr2d@gmail.com>
Marcus Lundblad <ml@dfupdate.se>
Matej Urbančič <mateju@src.gnome.org>
Yosef Or Boczko <yoseforb@gnome.org>
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 <amanpreet.alam@gmail.com>
Artur S0 <arturios05@bk.ru>
Asier Sarasua Garmendia <asiersarasua@ni.eus>
Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Boyuan Yang <073plan@gmail.com>
Danial Behzadi <dani.behzi@ubuntu.com>
Daniel Mustieles <daniel.mustieles@gmail.com>
Daniel Rusek <mail@asciiwolf.com>
Efstathios Iosifidis <eiosifidis@gnome.org>
Fran Dieguez <frandieguez@gnome.org>
Harry Bond <endim8@pm.me>
Hugo Carvalho <hugokarvalho@hotmail.com>
James Westman <james@jwestman.net>
Jiri Grönroos <jiri.gronroos@iki.fi>
Kukuh Syafaat <kukuhsyafaat@gnome.org>
Marcus Lundblad <ml@dfupdate.se>
Michael Evans <michaelgrahamevans@gmail.com>
Nathan Follens <nfollens@gnome.org>
Philipp Kiemle <philipp.kiemle@gmail.com>
Piotr Drąg <piotrdrag@gmail.com>
RedAuburn <endim8@pm.me>
Sabri Ünal <libreajans@gmail.com>
Vasil Pupkin <3abac@3a.by>
Yuri Chornoivan <yurchor@ukr.net>
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 <Alexmelman88@gmail.com>
Alexander Shopov <ash@kambanaria.org>
Andika Triwidada <atriwidada@gnome.org>
Boyuan Yang <073plan@gmail.com>
Danial Behzadi <dani.behzi@ubuntu.com>
Dušan Kazik <prescott66@gmail.com>
Ekaterine Papava <papava.e@gtu.ge>
Fabio Tomat <f.t.public@gmail.com>
Felipe Kinoshita <kinofhek@gmail.com>
Gianvito Cavasoli <gianvito@gmx.it>
Jakub Steiner <jimmac@gmail.com>
kramo <contact@kramo.hu>
Leônidas Araújo <leorusvellt@hotmail.com>
Marcus Lundblad <ml@dfupdate.se>
Martin <miles@filmsi.net>
Nathan Follens <nfollens@gnome.org>
Sabri Ünal <libreajans@gmail.com>
Sam Hewitt <snwh@gnome.org>
Sveinn í Felli <sv1@fellsnet.is>
Szymon Kłos <eszkadev@gmail.com>
Yuri Chornoivan <yurchor@ukr.net>
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 <Alexmelman88@gmail.com>
Alexander Shopov <ash@kambanaria.org>
Anders Jonsson <anders.jonsson@norsjovallen.se>
Bruce Cowan <bruce@bcowan.me.uk>
Efstathios Iosifidis <eiosifidis@gnome.org>
Fabio Tomat <f.t.public@gmail.com>
Irénée THIRION <irenee.thirion@e.email>
Jeeyong Um <conr2d@gmail.com>
Jordi Mas i Hernandez <jmas@softcatala.org>
Marcus Lundblad <ml@dfupdate.se>
MohammadSaleh Kamyab <mskf1383@envs.net>
Piotr Drąg <piotrdrag@gmail.com>
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 <alanmortensen.am@gmail.com>
Andika Triwidada <atriwidada@gnome.org>
Asier Sarasua Garmendia <asiersarasua@ni.eus>
Aurimas Černius <aurisc4@gmail.com>
Automeris naranja <104251-automerisnaranja@users.noreply.gitlab.gnome.org>
Balázs Úr <balazs@urbalazs.hu>
Christopher Davis <christopherdavis@gnome.org>
Daniel <daniel.mustieles@gmail.com>
Ekaterine Papava <papava.e@gtu.ge>
Fabio Tomat <f.t.public@gmail.com>
Felipe Kinoshita <kinofhek@gmail.com>
Fran Dieguez <frandieguez@gnome.org>
Hugo Carvalho <hugokarvalho@hotmail.com>
Jiri Grönroos <jiri.gronroos@iki.fi>
Julian Sparber <julian@sparber.net>
Jürgen Benvenuti <jbenvenuti@gnome.org>
Kukuh Syafaat <kukuhsyafaat@gnome.org>
Marcus Lundblad <ml@dfupdate.se>
Marek Černocký <marek@manet.cz>
Matej Urbančič <mateju@src.gnome.org>
Sabri Ünal <libreajans@gmail.com>
Vasil Pupkin <3abac@3a.by>
Yaron Shahrabani <sh.yaron@gmail.com>
Yosef Or Boczko <yoseforb@gnome.org>
Yuri Chornoivan <yurchor@ukr.net>
Марко Костић <marko.m.kostic@gmail.com>
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 <kekun.plazas@laposte.net>
Aleksandr Melman <Alexmelman88@gmail.com>
Asier Sarasua Garmendia <asiersarasua@ni.eus>
Efstathios Iosifidis <eiosifidis@gnome.org>
Ekaterine Papava <papava.e@gtu.ge>
Emin Tufan Çetin <etcetin@gmail.com>
Fabio Tomat <f.t.public@gmail.com>
Hugo Carvalho <hugokarvalho@hotmail.com>
Jürgen Benvenuti <jbenvenuti@gnome.org>
Kukuh Syafaat <kukuhsyafaat@gnome.org>
Marcus Lundblad <ml@dfupdate.se>
Sabri Ünal <libreajans@gmail.com>
Vasil Pupkin <3abac@3a.by>
Yosef Or Boczko <yoseforb@gnome.org>
Yuri Chornoivan <yurchor@ukr.net>
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 <Alexmelman88@gmail.com>
Amit Tripathi <tripathiamit2021@gmail.com>
Balázs Úr <balazs@urbalazs.hu>
Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Dušan Kazik <prescott66@gmail.com>
Efstathios Iosifidis <eiosifidis@gnome.org>
Fabio Tomat <f.t.public@gmail.com>
Gianvito Cavasoli <gianvito@gmx.it>
James Westman <james@jwestman.net>
Marcus Lundblad <ml@dfupdate.se>
Nathan Follens <nfollens@gnome.org>
Pablo Correa Gómez <ablocorrea@hotmail.com>
Pawan Chitrakar <chautari@gmail.com>
Sabri Ünal <libreajans@gmail.com>
Shivam Madlani <shivammadlani5@gmail.com>
Sveinn í Felli <sv1@fellsnet.is>
Taisei Washington <taiseiwashington27@protonmail.com>
Valentin Blot <14005-vblot@users.noreply.gitlab.gnome.org>
Vasil Pupkin <3abac@3a.by>
Yosef Or Boczko <yoseforb@gnome.org>
Yuri Chornoivan <yurchor@ukr.net>
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 <ash@kambanaria.org>
Aurimas Černius <aurisc4@gmail.com>
Boyuan Yang <073plan@gmail.com>
Charles Monzat <charles.monzat@free.fr>
Fran Dieguez <frandieguez@gnome.org>
Jan Tojnar <jtojnar@gmail.com>
Jeeyong Um <conr2d@gmail.com>
Jeremy Bicha <jeremy.bicha@canonical.com>
Jordi Mas <jmas@softcatala.org>
Jürgen Benvenuti <gastornis@posteo.org>
Leônidas Araújo <leorusvellt@hotmail.com>
Marcus Lundblad <ml@dfupdate.se>
Matej Urbančič <mateju@src.gnome.org>
Rūdolfs Mazurs <rudolfs.mazurs@gmail.com>
Yosef Or Boczko <yoseforb@gnome.org>
Zurab Kargareteli <zuraxt@gmail.com>
Марко Костић <marko.m.kostic@gmail.com>
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 <alanmortensen.am@gmail.com>
Aleksandr Melman <Alexmelman88@gmail.com>
Anders Jonsson <anders.jonsson@norsjovallen.se>
Asier Sarasua Garmendia <asiersarasua@ni.eus>
Balázs Úr <balazs@urbalazs.hu>
Christopher Davis <christopherdavis@gnome.org>
Danial Behzadi <dani.behzi@ubuntu.com>
Daniel Mustieles <daniel.mustieles@gmail.com>
Emin Tufan Çetin <etcetin@gmail.com>
Fran Dieguez <frandieguez@gnome.org>
Goran Vidović <trebelnik2@gmail.com>
Hugo Carvalho <hugokarvalho@hotmail.com>
Jiri Grönroos <jiri.gronroos@iki.fi>
Jordi Mas <jmas@softcatala.org>
Kukuh Syafaat <kukuhsyafaat@gnome.org>
Marcus Lundblad <ml@dfupdate.se>
Marek Černocký <cernockym@example.cz>
Marek Černocký <marek@manet.cz>
Nart Tlisha <daniel.abzakh@gmail.com>
Piotr Drąg <piotrdrag@gmail.com>
Quentin PAGÈS <pages_quentin@hotmail.com>
Sabri Ünal <libreajans@gmail.com>
Yuri Chornoivan <yurchor@ukr.net>
Zurab Kargareteli <zuraxt@gmail.com>
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 <anders.jonsson@norsjovallen.se>
Asier Sarasua Garmendia <asiersarasua@ni.eus>
Bartłomiej Piotrowski <b@bpiotrowski.pl>
Claude Paroz <claude@2xlibre.net>
Danial Behzadi <dani.behzi@ubuntu.com>
Daniel Mustieles <daniel.mustieles@gmail.com>
Emin Tufan Çetin <etcetin@gmail.com>
Goran Vidović <trebelnik2@gmail.com>
Jiri Grönroos <jiri.gronroos@iki.fi>
Kukuh Syafaat <kukuhsyafaat@gnome.org>
Marcus Lundblad <ml@dfupdate.se>
Nart Tlisha <daniel.abzakh@gmail.com>
Piotr Drąg <piotrdrag@gmail.com>
Yosef Or Boczko <yoseforb@gnome.org>
Yuri Chornoivan <yurchor@ukr.net>
Zurab Kargareteli <zuraxt@gmail.com>
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 <Alexmelman88@gmail.com>
Anders Jonsson <anders.jonsson@norsjovallen.se>
Andreas Nilsson <anilsson@redhat.com>
Balázs Úr <balazs@urbalazs.hu>
Danial Behzadi <dani.behzi@ubuntu.com>
Daniel Mustieles <daniel.mustieles@gmail.com>
Dušan Kazik <prescott66@gmail.com>
Fabio Tomat <f.t.public@gmail.com>
Fran Dieguez <frandieguez@gnome.org>
Gianvito Cavasoli <gianvito@gmx.it>
Hugo Carvalho <hugokarvalho@hotmail.com>
Jakub Steiner <jimmac@gmail.com>
Jürgen Benvenuti <gastornis@posteo.org>
Marcus Lundblad <ml@dfupdate.se>
Nathan Follens <nfollens@gnome.org>
Pawan Chitrakar <chautari@gmail.com>
Piotr Drąg <piotrdrag@gmail.com>
Rūdolfs Mazurs <rudolfs.mazurs@gmail.com>
Sten Smoller <stnsm1@outlook.com>
Sveinn í Felli <sv1@fellsnet.is>
Yosef Or Boczko <yoseforb@gnome.org>
Yuri Chornoivan <yurchor@ukr.net>
Zurab Kargareteli <zuraxt@gmail.com>
42.0 - Mar 19, 2022
=========================
Added/updated/fixed translations
- Slovenian
- Norwegian Bokmål
- Russian
- Serbian
- French
- Spanish
- Kazakh
- German
- Bulgarian
- Korean
- Hungarian
- Danish
- Hebrew