abouttreesummaryrefslogcommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2023-08-07Add ordinals to ptbr extrakeysRapha1-1/+1
2023-08-07Don't elide label of non-string keysJules Aguillon1-1/+5
Several non-string keys can have a large label that shouldn't be elided, for example ctrl, meta, send. Also, change the cutoff to 3 characters as labels are easily colliding.
2023-08-06check_layout: Warn about duplicate keysJules Aguillon2-8/+18
2023-08-06LayoutsPreference: Show layout display namesJules Aguillon1-4/+7
The internal name of layouts was rendered.
2023-08-06Describe editing keysJules Aguillon17-0/+186
The new strings are used in the "Add keys to the keyboard" option.
2023-08-06Add glyphs for editing keysJules Aguillon11-13/+41
All from Material Design Icons.
2023-08-06Elide custom keys labelsJules Aguillon2-2/+3
Make the font smaller for custom keys with a length above 1. Draw up to 4 characters on keys.
2023-08-06Don't replace user selected dead keysJules Aguillon2-5/+8
Don't replace dead-keys selected in the "Add keys to the keyboard" option by an alternative.
2023-08-06Remove the Accents optionJules Aguillon20-93/+4
This option makes less sense since per-script extra keys. It's also getting in the way of an eventual "dead-key or accented-letters" option.
2023-08-06Replace dead-keys when there's one alternativeJules Aguillon2-25/+58
The dead-key is replaced by its alternative if there's only one specified. Extra keys from every subtypes must be merged together to be able to make this check.
2023-08-06method.xml: Specify extra keys alternativesJules Aguillon1-15/+15
2023-08-06Extra keys alternativesJules Aguillon3-32/+75
For each extra key, a list of alternative can be specified. An extra key won't be added to the keyboard if all its alternatives are already present on it. This is useful to avoid having the dead key for an accent and the accented letters at the same time.
2023-08-06Update translations pt-br (#420)Rapha1-18/+18
2023-08-06Updated pl (Polish) translation (#419)Chasm Solacer1-9/+9
2023-08-05Add esc and tab to the Persian layoutJules Aguillon2-4/+3
2023-08-05Add Persian to method.xmlJules Aguillon1-0/+1
2023-08-05Modify arabic and persian numbers info function keysJules Aguillon4-8/+28
And add function keys placeholders in the layouts.
2023-08-05Tweak check_layout.pyJules Aguillon2-39/+33
- Warn about missing esc, tab, f11_placeholder and f12_placeholder. - Don't check non-layout files and special layouts.
2023-08-05docs: mention Calculator++ (#418)Stephen Karl Larroque1-0/+3
* docs: mention Calculator++ Signed-off-by: Stephen L. <LRQ3000@gmail.com>
2023-08-05sync_translations.py: Report number of missing stringsJules Aguillon1-16/+26
2023-08-05Update French translationsJules Aguillon1-9/+9
2023-08-05Translatable key descriptionsJules Aguillon18-23/+67
Key descriptions are shown in the "extra keys" option and can now be translated.
2023-08-04LauncherActivity: Visible, clickable and untranslatable linkJules Aguillon17-17/+18
The link to Github was not clickable and couldn't easily be made so in its current form. Render the link in its own paragraph and do not hide the URL.
2023-08-04Correct Farsi stringsJules Aguillon1-1/+1
2023-08-02Settings: Increase vibration valuesJules Aguillon1-3/+3
2023-08-02font: Move glyphs into the PUAJules Aguillon3-41/+42
Glyphs in the Private Use Area at uE000 will no longer conflict with fallback fonts in the "extra keys" option.
2023-08-02Settings: Move "extra keys" higher on the pageJules Aguillon1-3/+3
And "Accents" lower.
2023-08-02check_layout.py: Warn about editing and function keysJules Aguillon1-0/+9
2023-07-31Update check_layout.outputJules Aguillon1-8/+10
2023-07-30ListGroupPreference: Allow to modify itemsJules Aguillon1-7/+25
2023-07-30Allow more than 2 layoutsJules Aguillon28-85/+172
The two layout selection options are replaced by a ListGroupPreference that allow to enter an arbitrary amount of layouts. The "switch_second" and "switch_second_back" keys are replaced by "switch_forward" and "switch_backward", which allow to cycle through the selected layouts in two directions. Layouts are changed to place these two key on the space bar. The backward key is not shown if there's only two layouts.
2023-07-30ListGroupPreference: Allow hide the "remove" buttonJules Aguillon1-9/+21
2023-07-30ListGroupPreference: Overrideable "add" buttonJules Aguillon1-2/+17
2023-07-29Refactor: Split out ListGroupPreferenceJules Aguillon8-149/+226
Split out the implementation of a string-list preference from CustomExtraKeysPreference. Allows to share the implementation with future preferences.
2023-07-29Add dagger, double dagger, section mark, and pilcrow as extra keys on ↵Ben Slusky20-30/+33
QWERTY-like layouts (#410) * Add section mark as an extra key in QWERTY-like layouts that don't have it already * Add dagger (also double dagger) as an extra key in QWERTY-like layouts
2023-07-29Add '=' to pin entry layoutJules Aguillon1-1/+1
Might be useful in spreadsheets.
2023-07-29Add option to disable pin entry layoutJules Aguillon19-9/+51
The pin entry layout might be inferior for some usecases and people might be more used to the numeric layout.
2023-07-23Correct Kurdish layout name (#407)KuRa KuRd2-2/+2
Correct layout name to Kurdish because Kurdish and Arabic are totally two different language.
2023-07-20Updated Spanish translation (#404)adu3-51/+57
2023-07-19Refactor: Centralize logging in a static classJules Aguillon3-18/+40
This new class will help write more logs. The LogPrinter is no longer created everytime the keyboard is opened. An error log is added if failing to load the custom extra keys.
2023-07-19Add custom extra keys preferenceJules Aguillon24-2/+211
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-07-19Refactor: Make KeyValue.makeStringKey publicJules Aguillon1-9/+10
2023-07-19Refactor: Use a PreferenceCategory for extra keysJules Aguillon19-10/+19
This removes the need for a layout definition and adds a title before the prefs. It's a prerequise for the custom keys preference.
2023-07-17Improve the Persian layout (#397)Reza Hosseinzadeh1-21/+20
Change some characters' position
2023-07-09Refactor: Don't define extra keys in xmlJules Aguillon5-147/+143
The current approach is hard to maintain, for example the last key "autofill" was not displayed. This implements a PreferenceGroup that contains the check boxes for every extra keys without involving listing the preferences in settings.xml. A custom layout is used to remove the 'title' text view. The list of extra keys is moved into the new class. 'ExtraKeyCheckBoxPreference' becomes a nested class.
2023-07-09Add symbol ₴ to Fn+h and to UkrainianJules Aguillon2-1/+2
2023-07-05Remove use of `Arrays.copyOf`Jules Aguillon1-1/+2
The function has been added in API 9.
2023-07-02Updated/Added Czech translation + 2 common Fn keys (#387)Validbit2-40/+42
2023-07-01Fix descriptionsJules Aguillon3-2/+3
Short description can't exceed 80 characters. Removed trailing space.
2023-07-01Release 1.23.0 (35)Jules Aguillon2-1/+10