David Martinez
7e41a4ccb4
[styles] Regenerated
...
Signed-off-by: David Martinez <47610359+dvdmrtnz@users.noreply.github.com>
2025-01-21 13:11:04 -03:00
David Martinez
a6a35b16e9
[styles] Add search result icons for tourism POIs
...
Signed-off-by: David Martinez <47610359+dvdmrtnz@users.noreply.github.com>
2025-01-21 13:11:04 -03:00
David Martinez
5ce1a89b05
[styles] Add search result icons for water POIs
...
Signed-off-by: David Martinez <47610359+dvdmrtnz@users.noreply.github.com>
2025-01-21 13:11:04 -03:00
Osyotr
49fe86b529
[qt] Add windows resources to build
...
Signed-off-by: Osyotr <Osyotr@users.noreply.github.com>
fixup
res fixup
2025-01-21 13:05:39 -03:00
Alexey Krasilnikov
edc19ac605
Replace Listeners usages with ObservableList from Chromium
...
Signed-off-by: Alexey Krasilnikov <alexey@krasilnikov.me>
2025-01-21 13:00:44 -03:00
bc3e637ab6
[strings] Regenerated
...
Signed-off-by: Ognjen Blagojevic <ognjen.d.blagojevic+om@gmail.com>
2025-01-21 18:59:53 +03:00
cf43c6ba2a
[strings] Serbian translations, minor corrections
...
Signed-off-by: Ognjen Blagojevic <ognjen.d.blagojevic+om@gmail.com>
2025-01-21 18:59:53 +03:00
7d48d1fdaf
Add scrollbar to category list
...
Signed-off-by: map-per <map-per@gmx.de>
2025-01-21 12:59:19 -03:00
renderexpert
c6661f145b
Add support for injection external rendering code to the Drape
...
Signed-off-by: renderexpert <expert@renderconsulting.co.uk>
2025-01-21 12:47:09 -03:00
renderexpert
d70611fbfe
Refactor Vulkan context factory
...
Signed-off-by: renderexpert <expert@renderconsulting.co.uk>
2025-01-21 12:47:09 -03:00
renderexpert
49310dbe10
Extend vulkan wrapper
...
Signed-off-by: renderexpert <expert@renderconsulting.co.uk>
2025-01-21 12:47:09 -03:00
f644198302
Release notes
...
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2025-01-18 16:57:40 +03:00
FinixFighter
340ed4468b
Update sound.txt
...
Improved it translation. "su" is better than "sulla" when indicating on which road to turn.
Example:
"Svolta su Via Bastioni" instead of "Svolta sulla via Bastioni".
Signed-off-by: FinixFighter <19877271+FinixFighter@users.noreply.github.com>
2025-01-17 16:35:07 +03:00
79b4826859
[ios] [icloud] skip file recreaion during the update
event from the icloud
...
When the user deletes the file locally with the enabled icloud happens this:
1. the file is moved to the local .Trash dir
2. the LocalDirectoryMonitor send event to delete the file from the iCloud
3. the SynchronizationFileWriter trash the remote file using the system API `try fileManager.trashItem`
4. the file is moved to the devices trash
5. the icloud sends the update to the metadataQery's `queryDidUpdate` with the updated state. This update is tricky - it calls the method twice: on the first call the deleted file appears in the updated list (`userInfo[NSMetadataQueryUpdateChangedItemsKey]`) and on the second call the deleted file appears in the deleted list (`userInfo[NSMetadataQueryUpdateRemovedItemsKey]`). There is no way to disable this behaviour.
At that point the bug can happens: the 1st `update` (that contains the file in the deleted list) call can triggers the file recreation because the synchroisztion starts to process the event and make an attempt to recreate the file but it is already deleted.
The fix is: skip missed file during the `Update` event. The case when the missed file is in the updated in undefined and should be skipped by checking the file existence.
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
2025-01-16 22:58:28 +04:00
Alexey Krasilnikov
eef41a9964
Remove standard Android Studio template leftovers
...
Signed-off-by: Alexey Krasilnikov <alexey@krasilnikov.me>
2025-01-16 11:46:42 -03:00
Andrew Shkrob
3ec607313b
[android] Refactor cpp-java ui thread forwarding
...
Signed-off-by: Andrew Shkrob <andrew.shkrob.social@yandex.by>
2025-01-16 11:44:53 -03:00
Alexey Krasilnikov
aaad6ecb44
Allow to modify list of listeners in LocationHelper from callbacks
...
It's a legit case when a listener is removed from the list as a result of call to that listener. That causes the list of listeners to be modified during an iteration, which is not supported by standart collections.
The most efficient option to support that is to use ObserverList from Chromium project and this is done here.
Another options are a) to use CopyOnWriteArrayList b) to use Listeners class from the codebase. Both of them are less efficient and do more allocations.
Resolves #546
Signed-off-by: Alexey Krasilnikov <alexey@krasilnikov.me>
2025-01-16 11:44:36 -03:00
a1c6d532b5
[ios] refactor styles to make them type-safe using enums instead of string lit
...
1. for now the structure is SheetStyle.Global/PlacePage/Font/TestColor...
2. the styles are used by assessing the property
before:
lineView.setStyleAndApply("Divider")
headerTitleLabel.setStyleAndApply("semibold18:blackPrimaryText")
after:
lineView.setStyleAndApply(.global(.divider))
headerTitleLabel.setFontStyle(.semibold18, color: .blackPrimary)
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
2025-01-16 16:02:29 +04:00
06bd35d931
[Packaging] add environment info to desktop screenshots, fix typo
...
Signed-off-by: Harry Bond <me@hbond.xyz>
2025-01-16 12:45:30 +03:00
Alexey Krasilnikov
8d6b3a3d2f
[android] Fix crash if coordinates are copied after bottom bar is closed.
...
Resolves #9979
Signed-off-by: Alexey Krasilnikov <alexey@krasilnikov.me>
2025-01-11 14:33:49 -03:00
Alexey Krasilnikov
b27c06a9d0
[android] Fix the title after editing the name of a boomark.
...
Resolves #10005
Signed-off-by: Alexey Krasilnikov <alexey@krasilnikov.me>
2025-01-11 14:33:34 -03:00
Dzmitry Strekha
e08001a769
[Android] Add insets handling in ProfileFragment
...
Signed-off-by: Dzmitry Strekha <mr.choo96@gmail.com>
2025-01-11 13:49:29 -03:00
Andrew Shkrob
ce2720826e
[strings] regenerated
...
Signed-off-by: Andrew Shkrob <andrew.shkrob.social@yandex.by>
2025-01-11 09:07:28 +00:00
Andrew Shkrob
59c68f7b41
[android-auto] Better permissions request
...
Signed-off-by: Andrew Shkrob <andrew.shkrob.social@yandex.by>
2025-01-11 09:07:28 +00:00
de3acf645c
Add 44+ Technologies to list of sponsors 🎉
...
Signed-off-by: Harry Bond <me@hbond.xyz>
2025-01-09 09:31:56 +00:00
Metehan Özyürek
d1356001a1
[stirngs] Fix Turkish translation
...
Signed-off-by: Metehan Özyürek <80093621+MetehanOzyurek@users.noreply.github.com>
2025-01-09 09:17:11 +00:00
Andrei Shkrob
56f2552578
Revert "[android-auto] Put back location type for AA service"
...
This reverts commit 8174ca7e6e
.
Signed-off-by: Andrew Shkrob <andrew.shkrob.social@yandex.by>
2025-01-09 09:15:26 +00:00
Ferenc Géczi
bf53d33025
[docs] Fix broken links in TEAMS.md
...
Signed-off-by: Ferenc Géczi <ferenc.gm@gmail.com>
2025-01-08 19:36:40 +03:00
c03c727006
[Styles] Regenerated
...
Signed-off-by: Harry Bond <me@hbond.xyz>
2025-01-08 19:35:25 +03:00
ccf5f1c1f9
[Styles] render natural stuff earlier in vehicle style
...
now matches rendering levels in default style
Signed-off-by: Harry Bond <me@hbond.xyz>
2025-01-08 19:35:25 +03:00
Kai
4e62232fdf
Update strings.txt
...
Added missing 'e' in one place
Signed-off-by: Kai <K232@users.noreply.github.com>
2025-01-08 14:23:28 +00:00
c738109066
Add mwm_diff_tool to generator instructions
...
Signed-off-by: map-per <map-per@gmx.de>
2025-01-08 14:23:17 +00:00
77ef2ac0b4
[docs] Add TEAMS and update CODEOWNERS
...
Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
2025-01-08 09:24:49 +00:00
973a5250dd
[strings] Serbian descriptions and release notes
...
Signed-off-by: Ognjen Blagojevic <ognjen.d.blagojevic+om@gmail.com>
2025-01-06 15:46:59 +03:00
e2f5005ce8
Allow more than one number for level
...
Signed-off-by: map-per <map-per@gmx.de>
2025-01-05 14:41:37 +03:00
199094a466
[strings] Regenerated
...
Signed-off-by: map-per <map-per@gmx.de>
2025-01-05 11:09:55 +03:00
fecfa6f604
Updated DE category translations
...
Signed-off-by: map-per <map-per@gmx.de>
2025-01-05 11:09:55 +03:00
3e6eb90be6
Remove unused mwm_names_en.txt
...
Signed-off-by: Harry Bond <me@hbond.xyz>
2025-01-04 13:53:07 +03:00
444bc2e4e6
[Strings] Regenerated
...
Signed-off-by: Harry Bond <me@hbond.xyz>
2025-01-03 21:41:11 +03:00
b0c7e9609f
[Strings] "Scotland - North/South" to "North/Southern Scotland"
...
Signed-off-by: Harry Bond <me@hbond.xyz>
2025-01-03 21:41:11 +03:00
Interactiondesigner
f314521039
Update strings.txt
...
Corrected a typo in German translation (line 18805)
Signed-off-by: Interactiondesigner <mr.funky@gmx.de>
2025-01-03 21:36:29 +03:00
Andrew Shkrob
4a1897caca
[android-auto] Add bookmarks sorting
...
Signed-off-by: Andrew Shkrob <andrew.shkrob.social@yandex.by>
2025-01-03 11:05:55 +00:00
Andrew Shkrob
8174ca7e6e
[android-auto] Put back location type for AA service
...
Signed-off-by: Andrew Shkrob <andrew.shkrob.social@yandex.by>
2025-01-03 11:05:03 +00:00
Andrew Shkrob
7de8fdd3bb
[android-auto] Fix maps downloading in planning mode
...
Signed-off-by: Andrew Shkrob <andrew.shkrob.social@yandex.by>
2025-01-03 10:47:52 +00:00
Andrew Shkrob
0c28dcbabd
[android-auto] Check for world maps after init
...
Signed-off-by: Andrew Shkrob <andrew.shkrob.social@yandex.by>
2025-01-03 10:40:46 +00:00
74aed8995e
[strings] Regenerate for Unknown Place to Map Point change
...
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2025-01-03 11:30:34 +03:00
d46e9aa647
[classif] Map tower:type=communication masts into comm towers
...
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2025-01-02 15:42:31 +03:00
3c8ef18ba8
[search] Make peaks, saddles and towers more searchable
...
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2025-01-02 15:42:31 +03:00
5868350356
[strings] Serbian translations for cuisines added (by ZeljkoBG)
...
Signed-off-by: Ognjen Blagojevic <ognjen.d.blagojevic+om@gmail.com>
2024-12-30 16:10:56 +03:00
bdf51e704e
[strings] Serbian description added
...
Signed-off-by: Ognjen Blagojevic <ognjen.d.blagojevic+om@gmail.com>
2024-12-30 13:50:31 +03:00