1. add separate `LocalizableTypes.strings` file for the types
2. patch the `GetLocalizedTypeName` cpp function to fetch the value from the proper table
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
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>
1. remove the iCLoud's .Trash dir scanning because on ios this feature is blocked. This is why the `isRemoved` property was removed from the `MitadataItem`
2. runtime monitors sends only the added/updated/deleted items lists on didUpdate and the whole content on didFinishGathering
3. because of 1, when icloud is running - it is source of truth.
During the initial phase (1st enabling of enabling after disabling) all the data from the cloud and local dir will be preserved.
4. simplified the state manager's logic
5. improved logs
6. fixed test
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
The date formatter initialization is resource-intensive and all unnecessary instantiation are replaced with the call to one default static formatter.
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
- increase grabber size
- move the share button to the PP's and Layers header trailing-top corner
- add a new color for the close/share icons on the pp
- crate a new button class with rounded image
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
Mail composer can:
- build the regular email
- build the bugreport email with the log file attachment
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
Apple HIG suggest empty launch screen or with UI (no splash screens).
Following discussion #3215, UI elements are no good on LaunchScreen.
Just adding support of a system dark mode as a follow up to #7292.
Also removed LaunchImage assets (they were for iOS 7 and lower).
Closes: #3049
Signed-off-by: Evgeny Fayvuzhinsky <e.u.f@icloud.com>
Pre-requisite to fix shaping in #516
The old font does not embed proper shaping info and doesn't work even with Harfbuzz
Signed-off-by: Alexander Borsuk <me@alex.bio>
- Added a font_tool to experiment and test runs algorithm
- Updated existing test to show/compare different lang strings rendered in different ways
Harfbuzz shaping requires splitting each string into segments (runs). Each run should have the same:
- font
- direction
- script
- language
The base idea of getting runs is based on the Chromium source code, with some changes and improvements.
There are many TODOs that can be handled later.
Signed-off-by: Alexander Borsuk <me@alex.bio>
Automatic signing works out of the box without any manual intervention.
iCloud entitlement works in this mode. CarPlay wasn't tested.
Signed-off-by: Roman Tsisyk <roman@tsisyk.com>