abouttreesummaryrefslogcommitdiff
path: root/res/values/values.xml
AgeCommit message (Collapse)AuthorFilesLines
2024-02-10Fix various linter warningsJules Aguillon1-1/+0
Among others: - Use `apply` instead of `commit` when saving shared preferences. - Avoid inlined Api - Remove unused resources
2023-11-25Use Gradle (#452)deftkHD1-2/+1
2023-07-19Add custom extra keys preferenceJules Aguillon1-0/+1
This is a new section in the extra keys option that allows to enter arbitrary strings which are then added to the keyboard. A new string is needed for the title of the section, Android's icons and strings are used as much as possible to avoid adding more strings. Keys are stored in the preferences as a JSON array of strings.
2023-06-03Refactor: Remove dimens used as option defaultsJules Aguillon1-4/+0
The conversion into px was done twice, leading to wrong values.
2023-01-15Separate option for horizontal margin in landscape modeJules Aguillon1-1/+0
A separate option is needed, the +25dp offset wasn't enough.
2022-12-31Fix dimensions going off after rotationJules Aguillon1-1/+0
Values like 'characterSize' and 'horizontalMargin' can't be fed back into the default value because they are not of the same unit. To avoid this happening again, change the way the default value is defined for every options. The 'key_height' dimension was no longer used.
2022-06-06Fix inconsistent text size in landscape modeJules Aguillon1-2/+0
Dimens weren't refreshed when the orientation changed. Dimens are not the right solution anyway, use scaling factors instead.
2022-03-15Log editor infos while debuggingJules Aguillon1-0/+18
Useful when debugging why the keyboard doesn't work as expected with a specific app.