-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathNEWS
More file actions
5653 lines (4936 loc) · 151 KB
/
Copy pathNEWS
File metadata and controls
5653 lines (4936 loc) · 151 KB
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
51.beta
=========================
Changes since 51.alpha
- Moved settings for showing scale, user location, and mesaurement systems
from menus to the preference dialog
- Change shortcut for toggling showing the scale to avoid confusion with
other usages of ctrl+s (typically save operations in other apps)
- Show shortcut for showing preferences in shortcuts overview
- Skip going-to animations for larger distances
- Allow public transit routing to places further from a routable walking path
(increased distance from 25 to 250 meters, to match behavior in MOTIS web app)
- Show walking durations in public transit iteneraries overview
- Increase font size for place name in sidebar/bottom sheet to better match
the new pill-style buttons
- Updated icon for tombs
Added/updated/fixed translations
- Persian
- Kazakh
- Georgian
- Czech
- Slovenian
- Ukrainian
- Romanian
- French
- Norwegian Bokmål
All contributors to this release
Antonio Marin <gnmer.6qxyg@slmail.me>
Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Brayden Rischke <braydenrischke30@gmail.com>
Danial Behzadi <dani.behzi@ubuntu.com>
Daniel Rusek <mail@asciiwolf.com>
Ekaterine Papava <papava.e@gtu.ge>
Guillaume Bernard <associations@guillaume-bernard.fr>
Jakub Steiner <jimmac@gmail.com>
John Cardullo <john@jcarmedia.org>
Kjartan Maraas <kjartan.maraas@gmail.com>
Marcus Lundblad <ml@dfupdate.se>
Martin <miles@filmsi.net>
Yuri Chornoivan <yurchor@ukr.net>
51.alpha
=========================
Changes since 50.0
- Add offline map download support
- Add custom overrides for German Autobahn and Bundesstrße highway shields
- Show departures and arrivals in the place information for public transit
places (stations and stops) when available from Transitious
- Show delays and track information for public transit itineraries (when available from provider)
- Avoid focus route start entry when selecting a place (avoids show OSK on
touch)
- Use star icon for favorites menu
- Move goto current location button to overlay zoom buttons ground and re-arrange
headerbar buttons (move route button to the left and layers button to the right)
- Add bicycle shops category to POI search interface
Added/updated/fixed translations
- Polish
- Belarusian
- Cornish
- Romanian
- Slovenian
- Occitan
- Norwegian Bokmål
- Persian
- Dutch
- Slovak
- Russian
All contributors to this release
Antonio Marin <gnmer.6qxyg@slmail.me>
Artur S0 <arturios05@bk.ru>
Danial Behzadi <dani.behzi@ubuntu.com>
Flynn Peck <cirilla@tuta.io>
James Westman <james@jwestman.net>
Jose Riha <jose1711@gmail.com>
Kjartan Maraas <kjartan.maraas@gmail.com>
Luiggi R. Cardoso <luiggicardoso@outlook.com>
Marcus Lundblad <ml@dfupdate.se>
Martin <miles@filmsi.net>
Nathan Follens <nfollens@gnome.org>
Quentin PAGÈS <pages_quentin@hotmail.com>
Rein Fernhout <me@levitati.ng>
Timuçin Boldt <git@tboldt.de>
Vasil Pupkin <3abac@3a.by>
Victoria Niedzielska <victorian@gnome.org>
Марко Костић <marko.m.kostic@gmail.com>
50.rc - Feb 28, 2026
=========================
Changes since 50.beta
- Show place type (bus stop, railway station, et.c.) when selecting a place
from a public transit itinerary
- Add support for showing localized result for public transit itineraries
from Transitous/MOTIS (when available in the upstream timetable feeds)
- Updated appdata screenshots
Added/updated/fixed translations
- Korean
- French
- Turkish
- Brazilian Portuguese
- Swedish
- Hungarian
- Cornish
- Finnish
- Chinese (China)
- Galician
- Greek
- Basque
- Slovenian
- Catalan
- Bulgarian
- Hebrew
- Lithuanian
- Spanish
- Romanian
- Ukrainian
- Georgian
- Czech
- Persian
- Russian
- Japanese
- Kazakh
All contributors to this release
Anders Jonsson <anders.jonsson@norsjovallen.se>
Antonio Marin <gnmer.6qxyg@slmail.me>
Artur S0 <arturios05@bk.ru>
Asier Saratsua Garmendia <asiersarasua@ni.eus>
Aurimas Aurimas Černius <aurimas.cernius@mailo.com>
Balázs Úr <balazs@urbalazs.hu>
Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Danial Behzadi <dani.behzi@ubuntu.com>
Daniel Mustieles <daniel.mustieles@gmail.com>
Daniel Rusek <mail@asciiwolf.com>
Efstathios Iosifidis <eiosifidis@gnome.org>
Ekaterine Papava <papava.e@gtu.ge>
Flynn Peck <cirilla@tuta.io>
Fran Diéguez <frandieguez@gnome.org>
Goudarz Jafari <me@goudarzjafari.com>
Irenee THIRION <irenee.thirion@e.email>
Jeeyong Um <conr2d@gmail.com>
Jiri Grönroos <jiri.gronroos@iki.fi>
Juliano de Souza Camargo <julianosc@protonmail.com>
Lucien Ouoba <luiz01luciano04@gmail.com>
luming zh <lumingzh@qq.com>
Makoto Sakaguchi <ycco34vx@gmail.com>
Marcus Lundblad <ml@dfupdate.se>
Martin <miles@filmsi.net>
Sabri Ünal <yakushabb@gmail.com>
twlvnn kraftwerk <kraft_werk@tutanota.com>
Victor Dargallo <victordargallo@disroot.org>
Yaron Shahrabani <sh.yaron@gmail.com>
Yosef Or Boczko <yoseforb@gnome.org>
Yuri Chornoivan <yurchor@ukr.net>
50.beta - Jan 28, 2026
=========================
Changes since 50.alpha
- Allow bookmarking public transit stop location from Transitous itineraries
- Show more content from Wikipedia article extracts in place details in
desktop mode
- Fix UI issues with date and time selection for public transit when 12 hour
time format is used
- Add mnemonics to main menu menu items
- Port send-to dialog to AdwDialog
Added/updated/fixed translations
- Uighur
- Romanian
- Slovenian
- Russian
- Georgian
- Ukrainian
- Slovenian
- Turkish
- Kazakh
All contributors to this release
Abduqadir Abliz <sahranbay@gmail.com>
Antonio Marin <gnmer.6qxyg@slmail.me>
Artur S0 <arturios05@bk.ru>
Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Cyncrovee <cyncrovee@tuta.com>
Ekaterine Papava <papava.e@gtu.ge>
Hari Rana <theevilskeleton@riseup.net>
jalenng <jalen.dev@pm.me>
Jordan Petridis <jpetridis@gnome.org>
Marcus Lundblad <ml@dfupdate.se>
Martin <miles@filmsi.net>
Sabri Ünal <yakushabb@gmail.com>
Yuri Chornoivan <yurchor@ukr.net>
50.alpha - Jan 3, 2026
=========================
Changes since 49.0
- Redesign to use an AdwMultiView to show both place information and the
route planner in a sidebar on desktop, and a bottom sheet on mobile
- Always use Transitous for public transit routing
- Port UI templates to Blueprint
Added/updated/fixed translations
- Indonesian
- Slovenian
- Turkish
- Italian
- Serbian (Latin)
- Serbian
- Greek
- Uighur
- Catalan
- Esperanto
- Korean
All contributors to this release
Abduqadir Abliz <sahranbay@gmail.com>
Andika Triwidada <atriwidada@gnome.org>
Davide Ferracin <davide.ferracin@icloud.com>
Efstathios Iosifidis <eiosifidis@gnome.org>
Jakub Steiner <jimmac@gmail.com>
jalenng <42555186+jalenng@users.noreply.github.com>
James Addison <jay@jp-hosting.net>
James Westman <james@jwestman.net>
Jamie Gravendeel <me@jamie.garden>
Jeeyong Um <conr2d@gmail.com>
Jeff Fortin <nekohayo@gmail.com>
Jordi Mas i Hernandez <jmas@softcatala.org>
Kolja Lampe <razzeee@gmail.com>
Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>
Marcus Lundblad <ml@dfupdate.se>
Martin <miles@filmsi.net>
Maximiliano Sandoval <msandova@gnome.org>
Sabri Ünal <yakushabb@gmail.com>
Милош Поповић <gpopac@gmail.com>
49.0 - Sep 12, 2025
=========================
Changes since 49.rc
- Use GioUnix to check availability of Weather and Clocks in Send To dialog
Added/updated/fixed translations
- Turkish
- Spanish
- Dutch
- Catalan
- Brazilian Portuguese
- Lithuanian
- Ukranian
- Swedish
- Chinese (China)
- Russian
- Georgian
- British English
- Danish
- Finnish
- Basque
- Romanian
- Galician
- Hebrew
- Japanese
- Polish
- Hungarian
- Persian
All contributors to this release
Alan Mortensen <alanmortensen.am@gmail.com>
Anders Jonsson <anders.jonsson@norsjovallen.se>
Antonio Marin <gnmer.6qxyg@slmail.me>
Artur S0 <arturios05@bk.ru>
Asier Saratsua Garmendia <asiersarasua@ni.eus>
Aurimas Aurimas Černius <aurisc4@gmail.com>
Balázs Úr <balazs@urbalazs.hu>
Bruce Cowan <bruce@bcowan.me.uk>
Danial Behzadi <dani.behzi@ubuntu.com>
Daniel Mustieles <daniel.mustieles@gmail.com>
Ekaterine Papava <papava.e@gtu.ge>
Fran Diéguez <frandieguez@gnome.org>
Jiri Grönroos <jiri.gronroos@iki.fi>
Jordi Mas <jmas@softcatala.org>
Juliano de Souza Camargo <julianosc@protonmail.com>
luming zh <lumingzh@qq.com>
Makoto Sakaguchi <ycco34vx@gmail.com>
Marcus Lundblad <ml@dfupdate.se>
Nathan Follens <nfollens@gnome.org>
Piotr Drąg <piotrdrag@gmail.com>
Sabri Ünal <yakushabb@gmail.com>
Yaron Shahrabani <sh.yaron@gmail.com>
Yuri Chornoivan <yurchor@ukr.net>
49.rc - Aug 23, 2025
=========================
Changes since 49.beta
- Fix rendering preview image in Export View dialog after changes in latests
GTK
- Show user avatar in OSM account dialog when set
Added/updated/fixed translations
- Czech
- German
- Slovenian
- Russian
- Galician
All contributors to this release
Artur S0 <arturios05@bk.ru>
Daniel Rusek <mail@asciiwolf.com>
Fran Diéguez <frandieguez@gnome.org>
Marcus Lundblad <ml@dfupdate.se>
Martin <miles@filmsi.net>
Philipp Kiemle <l10n@prly.mozmail.com>
49.beta - Aug 2, 2025
=========================
Changes since 49.alpha
- Show release notes in about dialog
- Add additional icons for public phones and clocks
- Port to AdwShortcutsDialog for showing the keyboard shortcuts help
- Botton-align marker when selecting an icon (so that the bubble is pointing
to the coordinates of the POI)
- Cancel ongoing routing requests when clearing, or changing the search parameters
- Update Transitous to use the MOTIS v3 plan endpoint
- Show highway shields in place details for road labels and markers when
available
- Add POI search option for vegan and vegetarian restaurants
Added/updated/fixed translations
- Romanian
- Thai
- Turkish
- Friulian
All contributors to this release
Aefgh Threenine <aefgh39622@gmail.com>
Antonio Marin <gnmer.6qxyg@slmail.me>
AsciiWolf <mail@asciiwolf.com>
Emin Tufan Çetin <etcetin@gmail.com>
Fabio Tomat <f.t.public@gmail.com>
Liam Kerr <liam.d.kerr@protonmail.com>
Marcus Lundblad <ml@dfupdate.se>
Maximiliano Sandoval <msandova@gnome.org>
49.alpha - Jun 30, 2025
=========================
Changes since 48.0
- Use AdwHeaderBar
- Add gsetting for overriding tile URL
- Fix calculating time zone offset for public transit itineraries from MOTIS
- Change keyboard shortcut for rotating the map to avoid conflicts with
editing shortcuts in GTK entry widgets
- Add more translator comments
- Add option to override measurement system (metric or imperial) from the
system default
- Allow typing in raw coordinates more conveniently in the search bar
- Use descriptive worbs for the routing mode tooltips
- Set main menu as primary menu
- Allow geo: URIs with a query parameter for search
- Show outlines on landuse geographic features
- Add more specialized POI icons
- Use the AdwaitaSans font in the map style
- Allow clicking on house numbers and road labels
- Show highway exit numbers in place details
- Mirror the "Directions" button icon in left-hand-traffic regions
- Show furigana names for places in Japanese locale when available
- Correctly show place type description for some types of offices (e.g.
government offices)
- Show localized rail/metro station symbols in some places
- Use correct address format in Paraguay
- Correctly show place type description for landuse places (e.g. brownfields)
- Adjust OSM POI edit dialog to make in better fit phone screens
Added/updated/fixed translations
- Belarusian
- Slovenian
- Japanese
- Thai
- Chinese (Taiwan)
- Friulian
- Kabyle
- Russian
- Uzbek (Latin)
- Punjabi
- Brazilian Portuguese
- Nepali
- British English
All contributors to this release
Aefgh Threenine <aefgh39622@gmail.com>
Álvaro Burns <ahoradocafezinho@gmail.com>
Andi Chandler <andi@gowling.com>
Artur S0 <arturios05@bk.ru>
A S Alam <amanpreet.alam@gmail.com>
Athmane MOKRAOUI <butterflyoffire@protonmail.com>
Baxrom Raxmatov <magdiyevbahrom@gmail.com>
Cheng-Chia Tseng <pswo10680@gmail.com>
Christopher Davis <chris@brainblasted.dev>
Davide Ferracin <davide.ferracin@protonmail.com>
Fabio Tomat <f.t.public@gmail.com>
Hari Rana <theevilskeleton@riseup.net>
James Westman <james@jwestman.net>
josego <josego85@gmail.com>
Marcus Lundblad <ml@dfupdate.se>
Martin <miles@filmsi.net>
Pawan Chitrakar <chautari@gmail.com>
Takayuki Kusano <ae5t-ksn@asahi-net.or.jp>
Vasil Pupkin <3abac@3a.by>
48.0 - Mar 15, 2025
=========================
Added/updated/fixed translations
- French
- Danish
- Catalan
- Swedish
- Korean
- Belarusian
- Hungarian
- Persian
- Spanish
- Polish
- Norwegian Bokmål
- Chinese (China)
- Lithuanian
- Finnish
All contributors to this release
Alan Mortensen <alanmortensen.am@gmail.com>
Alexandre Franke <afranke@gnome.org>
Anders Jonsson <anders.jonsson@norsjovallen.se>
Aurimas Černius <aurisc4@gmail.com>
Balázs Úr <balazs@urbalazs.hu>
Brage Fuglseth <bragefuglseth@gnome.org>
Danial Behzadi <dani.behzi@ubuntu.com>
Daniel Mustieles <daniel.mustieles@gmail.com>
Jeeyong Um <conr2d@gmail.com>
Jiri Grönroos <jiri.gronroos@iki.fi>
Jordi Mas i Hernandez <jmas@softcatala.org>
Jordi Mas <jmas@softcatala.org>
Luming Zh <lumingzh@qq.com>
Marcus Lundblad <ml@dfupdate.se>
Mathis Joussemet <joussemetmathis@gmail.com>
Piotr Drąg <piotrdrag@gmail.com>
48.rc - Mar 1, 2025
=========================
Changes since 48.beta
- Update OSM edit POI defintions
- Update highway shields from OpenStreetMap-Americana
- Use Transitous for public transit in Finland, as the old OTP1-based Digitransit
API is being deprecated
- Show stairs instructions for walking directions with Transitous
Added/updated/fixed translations
- German
- Bulgarian
- Hebrew
- Ukrainian
- Indonesian
- Basque
- Georgian
- Czech
- Turkish
- Russian
- Brazilian Portuguese
- Slovenian
- Galician
- Portuguese
All contributors to this release
Andika Triwidada <atriwidada@gnome.org>
Artur S0 <arturios05@bk.ru>
Asier Sarasua Garmendia <asiersarasua@ni.eus>
Automeris naranja <automeris@tuta.io>
Daniel Rusek <mail@asciiwolf.com>
Ekaterine Papava <papava.e@gtu.ge>
Fran Dieguez <frandieguez@gnome.org>
Hugo Carvalho <hugokarvalho@hotmail.com>
Marcus Lundblad <ml@dfupdate.se>
Martin <miles@filmsi.net>
Rafael Fontenelle <rafaelff@gnome.org>
Sabri Ünal <yakushabb@gmail.com>
Tim Sabsch <tim@sabsch.com>
twlvnn kraftwerk <kraft_werk@tutanota.com>
Yosef Or Boczko <yoseforb@gnome.org>
Yuri Chornoivan <yurchor@ukr.net>
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>