Commit graph

40625 commits

Author SHA1 Message Date
Ferenc Géczi
60c8b641f3 qt: Add route marking buttons to place pages
Signed-off-by: Ferenc Géczi <ferenc.gm@gmail.com>
2024-04-17 16:39:28 +02:00
8637965a3a [github] implement test running for the ios-check debug job
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
2024-04-17 16:27:48 +02:00
Ferenc Géczi
be36262085 [qt] Add container for PPD buttons and center them
Signed-off-by: Ferenc Géczi <ferenc.gm@gmail.com>
2024-04-17 11:46:10 +02:00
Alexander Borsuk
1be2e1bc11 [string] Regenerated tr
Signed-off-by: Alexander Borsuk <me@alex.bio>
2024-04-16 21:51:55 -03:00
Alexander Borsuk
707815446d [strings] Changed ambiguous km/s to km/sa in Turkish
Signed-off-by: Alexander Borsuk <me@alex.bio>
2024-04-16 21:51:55 -03:00
325d34390e [editor] allow editing some values for railway-station
fixes #6793
Signed-off-by: Harry Bond <me@hbond.xyz>
2024-04-16 21:50:16 -03:00
Alexander Borsuk
d16417dcbf [strings] Regenerated $
Signed-off-by: Alexander Borsuk <me@alex.bio>
2024-04-16 21:07:50 +02:00
Alexander Borsuk
82b144f44e Use $ sign for fee=yes that is visible in dark theme
Signed-off-by: Alexander Borsuk <me@alex.bio>
2024-04-16 21:07:50 +02:00
Kiryl
4566643f46
[ios] [bookmarks] Remove observer pattern during the category files exporting (#7933) 2024-04-16 20:41:41 +02:00
d62aad957c [ios] fix: user interface auto theme changing issue
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
2024-04-16 20:09:49 +02:00
Alexander Borsuk
538719955b [ios][mac] Fix assert/check on shutdown of iOS app on Mac
- Removed thread checker for delayed thread pool. It does not really matter which thread destroys the pool.
On Mac, thread pools are created on the main thread, but static destructors are called from another system thread.
And checker failed for the statically created DrapeRoutine's thread pool.

- Avoid unnecessary MWMThemeManager invalidate on destruction when nothing has changed
- Add missing include

Signed-off-by: Alexander Borsuk <me@alex.bio>
2024-04-16 17:01:31 +02:00
7595fc8f28 [strings] Capitalized translations
Signed-off-by: map-per <map-per@gmx.de>
2024-04-16 11:59:20 -03:00
a6255f9c2f [strings] Used shelter strings for untranslated lean_to shelters
Signed-off-by: map-per <map-per@gmx.de>
2024-04-16 11:59:20 -03:00
6856fe5855 [strings] Regenerated
Signed-off-by: map-per <map-per@gmx.de>
2024-04-16 11:59:20 -03:00
89d383ce4a [styles] Regenerated
Signed-off-by: map-per <map-per@gmx.de>
2024-04-16 11:59:20 -03:00
0c2930e32c [styles] Added basic_hut and lean_to categories
Signed-off-by: map-per <map-per@gmx.de>
2024-04-16 11:59:20 -03:00
Ferenc Géczi
b0c4d9c199 [docs] Add Alpine install instructions
Signed-off-by: Ferenc Géczi <ferenc.gm@gmail.com>
2024-04-15 22:42:11 +02:00
Alexander Borsuk
c16c6cc8c3 [mac] Fixes warning ld: warning: ignoring duplicate libraries for CMake 3.29+
Signed-off-by: Alexander Borsuk <me@alex.bio>
2024-04-15 22:27:42 +02:00
da0babe32e [xcode] disable tests parallelizing
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
2024-04-15 09:05:29 +02:00
Alexander Borsuk
6d2fd06a8b [github] Use Xcode 15.3 for iOS and MacOX builds
Signed-off-by: Alexander Borsuk <me@alex.bio>
2024-04-14 22:47:15 +02:00
3c9c54eda6 [editor] Fixed bug overwriting existing features
Signed-off-by: map-per <map-per@gmx.de>
2024-04-14 08:43:28 +02:00
Alexander Borsuk
14fe959636 Experimental ?wiki and ?description search
The idea is to test it in the release mode on real devices

Signed-off-by: Alexander Borsuk <me@alex.bio>
2024-04-14 08:40:17 +02:00
Alexander Borsuk
998c248dbc [android] Updated libs
Signed-off-by: Alexander Borsuk <me@alex.bio>
2024-04-14 08:39:18 +02:00
Alexander Borsuk
ea640f756f [android] Update AGP to 8.3.2
Signed-off-by: Alexander Borsuk <me@alex.bio>
2024-04-14 08:39:18 +02:00
Osyotr
419faf647b Fix preprocessor warning in base64.cpp
Signed-off-by: Osyotr <Osyotr@users.noreply.github.com>
2024-04-13 16:30:55 -03:00
Osyotr
a8f631a4fd Remove accidental anonymous namespace in header file
Signed-off-by: Osyotr <Osyotr@users.noreply.github.com>
2024-04-13 16:29:54 -03:00
Ferenc Géczi
8115cb7878 Fix missing cstdint on GCC 13
Without this change the code can not be compiled with the latest GCC 13
because an error reported on `openlocationcode.cc:139:3`.

```
error: 'int64_t' was not declared in this scope
note: 'int64_t' is defined in header '<cstdint>'; did you forget to '#include <cstdint>'?
```

The porting guide of GCC 13 explains,
that `cstdint` might need to be explicitly included:
https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes

Signed-off-by: Ferenc Géczi <ferenc.gm@gmail.com>
2024-04-13 17:38:57 +02:00
Alexander Borsuk
7a273a9539 [drape] Avoid unnecessary shaders rebuild when no modifications
Signed-off-by: Alexander Borsuk <me@alex.bio>
2024-04-12 22:12:03 +02:00
Osyotr
7f9d781da0 Use CMake to copy opening-count.lst
Signed-off-by: Osyotr <Osyotr@users.noreply.github.com>
2024-04-12 21:50:58 +02:00
Matheus Gomes
1b8ca0c814 [strings] Regenerated pt
Signed-off-by: Matheus Gomes <86851490+matheusgomesms@users.noreply.github.com>
2024-04-12 20:58:13 +02:00
Matheus Gomes
3015fdc235 Update strings.txt
Signed-off-by: Matheus Gomes <86851490+matheusgomesms@users.noreply.github.com>
2024-04-12 20:58:13 +02:00
Kiryl
adb5c6fc81
[ios] add unit test target (#7740)
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
2024-04-12 13:21:56 +02:00
Alexander Borsuk
4d967e24f5 [android] Import .gpx and .gpx.xml files from Google Files app
Signed-off-by: Alexander Borsuk <me@alex.bio>
2024-04-12 11:54:52 +02:00
f531ae6b2e [styles] Regenerate for PT shelter
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2024-04-11 23:23:24 -03:00
4949d0071c [strings] Regenerate for PT shelter
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2024-04-11 23:23:24 -03:00
ce3d045036 [classif] Add amenity-shelter-public_transport
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2024-04-11 23:23:24 -03:00
Valery Lozko
514423a829 [ios] fix: Text trimming on the Menu screen on small screen #7605
Signed-off-by: Valery Lozko <valerylozko@gmail.com>
2024-04-11 22:18:42 +02:00
Alexander Borsuk
9c7fc19a4a [tools] Updated translate.py script
- Correct/filter out pt-PT and zh translations
- Use ar in DeepL
- Remove es-MX as it is not supported by Google

Signed-off-by: Alexander Borsuk <me@alex.bio>
2024-04-11 21:26:23 +02:00
Alexander Borsuk
5fc48d73f0 [strings] Regenerated
Signed-off-by: Alexander Borsuk <me@alex.bio>
2024-04-10 18:33:33 +02:00
Boris Verkhovskiy
79801a1f7f Shorten English recent_track_help_text
Signed-off-by: Boris Verkhovskiy <boris.verk@gmail.com>
2024-04-10 18:32:50 +02:00
Alexander Borsuk
aad1e5894e [strings] Rёgёnёratёd
Signed-off-by: Alexander Borsuk <me@alex.bio>
2024-04-10 18:17:08 +02:00
Boris Verkhovskiy
95c4c1e517 Yotify
Signed-off-by: Boris Verkhovskiy <boris.verk@gmail.com>
2024-04-10 18:15:54 +02:00
4541194c84 [generator] Cleanup surrogate attraction=specified following #7716
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2024-04-09 22:03:52 -03:00
Alexander Borsuk
187c386288
[drape] Moved Glyph out of GlyphManager (#7860)
* [drape] Moved Glyph out of GlyphManager

Also did small refactoring in a GlyphManager

Signed-off-by: Alexander Borsuk <me@alex.bio>
2024-04-09 23:21:09 +02:00
59672f52e6 [strings] Regenerate
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2024-04-09 21:58:10 +02:00
Anton
e8dd17c37e [strings] Amend German translations
Signed-off-by: Anton <antonwenemoser@gmail.com>
2024-04-09 21:58:10 +02:00
Viktor Govako
d2f16d58d8 [search] Do not emit private swimming pools.
Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
2024-04-09 09:03:24 -03:00
Viktor Govako
29061a90c9 [drape] Minor fixes.
Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
2024-04-09 09:03:24 -03:00
13a7ef47a6 [classif] Support drinking_water:refill=yes
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2024-04-09 14:50:40 +03:00
Alexander Borsuk
4eb98b85c3 [drape] A separate header for font constants
Signed-off-by: Alexander Borsuk <me@alex.bio>
2024-04-09 07:13:12 +02:00