abouttreesummaryrefslogcommitdiff
path: root/res
AgeCommit message (Collapse)AuthorFilesLines
2022-02-13Define the height of the keyboard relative to the screen sizeJules Aguillon5-4/+5
Depending on the pixel density isn't ideal for a keyboard, which would render differently depending on the "scaling" accessibility option. Landscape mode needs a special values. At the same time, increase the horizontal margin when landscape.
2022-02-13Add Russian layout (#66)Vladimir Chernov3-0/+46
* Add Russian layout Co-authored-by: Jules Aguillon <jules@j3s.fr>
2022-02-13Add ю to the bulgarian layoutJules Aguillon1-1/+1
Thanks Zdravko for pointing out.
2022-02-13Fix forced inverted colors on Xiaomi phonesJules Aguillon1-0/+2
MIUI inverts the colors of the app it thinks doesn't implement dark themes correctly. Also, it inverts the colors in the dumbest possible way: it doesn't invert all the colors the same way. It thinks that presumably because I don't use the Material base themes.
2022-02-07Improve QWERTZJules Aguillon1-8/+8
- Add the umlauts back. - Remove the accents. QWERTZ changes from "programming layout" to "localized layout". - Move the '?' away from the edge of the screen.
2022-02-07Define the bottom row separatelyJules Aguillon8-43/+9
Avoid divergences when the bottom row is modified.
2022-02-07Dvorak layout (#16)AlexandraAlter2-0/+46
2022-02-06Allow egde keys instead of corner keys (swipe vertically/horizontally)Max Schillinger5-5/+5
Add a new boolean parameter "edgekeys" for defining keys that have the additional (swipe) keys on the edges (top, right, left, bottom) instead of at the corners (top left, top right, bottom left, bottom right).
2022-02-06Add the Meta key to every layoutsJules Aguillon4-4/+4
To follow soon: Define the bottom row separately from layouts.
2022-02-06Add the Meta keyJules Aguillon1-1/+1
Currently using the diamond symbol like the history meta key: https://en.wikipedia.org/wiki/Meta_key However, this key is actually interpreted as the Super/Windows key but Android calls it "meta" internally.
2022-02-05Add supoort to show accents for Portuguese languageRaphael1-0/+1
2022-01-31Turn the key spacing options to intsJules Aguillon1-2/+2
Float values were not rendered properly and the granularity isn't needed.
2022-01-30Add options for the spacing between the keysJules Aguillon3-0/+6
Two options: vertical and horizontal.
2022-01-30Select theme depending on system settingsJules Aguillon5-1/+6
Automatically choose between the Dark and Light themes.
2022-01-30Avoid color inversion in dark themeJules Aguillon1-0/+4
2022-01-30Missing Action key in the QWERTZ layoutJules Aguillon1-1/+1
This caused an even bigger problem: The Enter key would disappear instead of being swapped with the Action key.
2022-01-29Add support for the Bulgarian language and layoutJules Aguillon3-0/+47
Thanks Zdravko Iskrenov for the contribution.
2022-01-29Add Latvian translationEdgars1-0/+45
2022-01-29Add Latvian specific QWERTY layoutEdgars3-2/+48
A customised Latvian specific QWERTY layout (QWERTY (Latvian)) was added to access all Latvian diacritic characters with a swipe. Additionally caron, cedille and macron accents were enabled for this layout.
2022-01-23Translate to FrenchJules Aguillon1-0/+45
2022-01-23Improve some stringsJules Aguillon1-4/+4
2022-01-23Make action key labels translatableJules Aguillon1-0/+6
2022-01-20Add keys for LatvianEdgars2-5/+6
New accents - caron and macron - were defined and QWERTY layout was updated to add accents for Latvian specific characters.
2022-01-15German keyboard added (#20)Moini3-1/+47
* Add German metadata translation * Add German keyboard Co-authored-by: Jules Aguillon <jules@j3s.fr>
2022-01-09Add the Action keyJules Aguillon3-3/+3
It is placed on the top-right of the enter key on every layouts. It sends a special event (performEditorAction) instead of writing a newline. The "actionId" is passed through the EditorInfo object in an obfuscated way so it's not clear whether it's using the right one.
2022-01-09Fix a few stringsMoini1-3/+3
2022-01-09Add the German languageJules Aguillon3-2/+3
Add the 'ß' character on the bottom-left corner of the 's' key, which is hidden for other languages. Co-authored-by: Moini <moini@noreply.invalid>
2022-01-09Allow to hide more keys than just accentsJules Aguillon1-4/+4
Add the "FLAGS_LANGS" set of flags, which will be used to hide individual keys that are not accents.
2021-12-30Improve the "precision" optionJules Aguillon3-3/+22
Now named "swiping distance". Changed to a dropdown.
2021-12-30Turn the "precision" option to dp instead of pxJules Aguillon1-1/+1
2021-12-30Simplify string definitionsJules Aguillon4-31/+20
Inline constants in settings.xml, strings.xml is only for strings that can be translated.
2021-12-30Add the Black themeJules Aguillon3-0/+17
Friendly to Amoled screens. The background of keys is the same as the background of the whole keyboard: pure black. Colors are also slightly stronger.
2021-12-30Move the border radius from Config to ThemeJules Aguillon2-1/+4
Also, draw activated keys with a round border too.
2021-12-30Add themesJules Aguillon6-3/+29
Add a "Theme" option to choose between a dark and light theme. The light theme uses the colors of the dark theme with the luminance inversed. The reloading after a configuration change is changed slightly: - Special handling is needed when the Theme is changed (recreate the views) - The default implementation of 'onConfigurationChanged' is used Which triggers more refresh (but don't recreate the views) - 'onCreateInputView' is no longer needed
2021-12-28Use the themes abstractionJules Aguillon6-21/+48
Themes replace 'colors.xml' and soon will replace 'dimens.xml'.
2021-12-19Auto-format Java and XML filesJules Aguillon13-363/+213
Use xmllint. Re-indent Java files using spaces.
2021-12-11Add SwedishJules Aguillon3-2/+9
First add the 'ring' accent. The swedish language uses the qwerty layout and three accents (aigu, trema, ring)
2021-12-05Increase the maximum value of the key height optionJules Aguillon1-1/+1
2021-05-09Add support for Spanish and ItalianJules Aguillon2-5/+18
Both using the qwerty layout. Removes the tilde from French.
2021-05-09Add the accents preferenceJules Aguillon4-9/+30
This replaces the "disable accent keys" checkbox. The default should work for anyone: Accents will be hidden unless the user has the french language installed. The value "show every accents" is useful for versions of android that don't have subtypes.
2021-05-08Move the "Ins" key under FnJules Aguillon2-2/+2
2021-05-08Move french accents againJules Aguillon2-12/+12
Users didn't like the new placement.
2021-05-08Improve the numeric keyboardJules Aguillon1-10/+10
2021-05-01Better placement of accents on QWERTYJules Aguillon2-14/+14
Also change internal names for accents.
2021-04-29Highlight activated keysJules Aguillon1-0/+1
2021-04-29Slightly reduce the size of the bottom rowJules Aguillon3-3/+3
2021-04-29Move system keys to the alt keyJules Aguillon2-8/+8
2021-04-29Improve the azerty layoutJules Aguillon1-18/+18
- More intuitive placement of (), [], {} and <>. - Move accent keys into the top-left corner, on a key they may be used with. - Some minor changes.
2021-04-29Add the "layout" option againJules Aguillon4-6/+24
Some versions of android don't allow to configure several languages.
2021-04-25Tweak dimensionsJules Aguillon1-7/+8
Increase a bit labels size and reduce empty space between keys.