abouttreesummaryrefslogcommitdiff
path: root/res
AgeCommit message (Collapse)AuthorFilesLines
2022-05-08Specify localized keys in each layoutsJules Aguillon11-65/+65
Each layouts can chose which key are localized instead of specifying it globally for each key. Important keys are no longer removed from layouts if the 'extra_keys' mechanism is not working properly. This can happen if language tags specified in method.xml don't match the user's language. Removed some currency symbols from some layouts. They are all in the Fn layer.
2022-05-07Set the color of the navigation barJules Aguillon1-18/+18
Since SDK 21, applications can set the background color of the navigation bar. This is normally simply an item in a theme but it is more complicated for keyboards.
2022-05-07Add missing LV translations (#136)Edgars1-0/+8
2022-05-01Add support for Hungarian layout (#127)Tibor Billes3-0/+40
2022-04-30Strings PT: App partially renamed to improve globalization (#134)marciozomb131-3/+3
2022-04-24Added neo 2 layout (#125)matthiakl2-0/+51
* Added neo 2 layout * Move accents away from screen edge into second row
2022-04-24Add Double acute diacriticJules Aguillon2-2/+2
Will be used by the Hungarian language.
2022-04-24Add support for LithuanianJules Aguillon4-6/+7
Requires two new diacritics: ogonek and dot_above. The new accents are also added to the Latvian layout as the two language can be close but not to the other localized layouts. A new mechanism is needed to reproducibly add extra keys to layouts without manual placement.
2022-04-23German translation updateBenjamin1-0/+4
2022-04-16Update PT strings (#121)marciozomb131-6/+10
Tiny fixes and improvements.
2022-04-06Fix mismatch layout nameJules Aguillon1-1/+1
The Korean layout id was not consistent and this caused a crash.
2022-04-03Revert "Swap Ctrl and switch_numeric keys"Jules Aguillon2-2/+2
This reverts commit b85b67c2f03d1dd1ed96f8352c06e5e23fcbccfe. The Ctrl key was too hard to use in the new position, especially in combination with arrows or backspace. Leave the switching key in the numeric layout however, where the Ctrl key is not very useful. Put Ctrl on the top-right because bottom-right is where the switching key is in the other layouts.
2022-04-03Add the Programming Layout optionJules Aguillon4-1/+14
Allow specifying a layout for programming and add a key for switching to it easily. The switching key is placed on the top edge of the space bar. The option has no effect by default because the ergonomic isn't ideal, it needs to be enabled explicitly. Users of Latin-script languages certainly prefer to use one layout (for programming or not). This feature might be removed in favor of a better language-switching mechanisms in the future.
2022-04-03Move keys away from the edges of the screenJules Aguillon12-64/+64
These keys are harder to hit as the finger might exit the screen before traveling enough to hit a corner. It might be particularly harder for people that use a phone case. Every layouts are changed, the notable changes are: - The Escape key is in the bottom-right corner of the first key. This position looks weird at first but is a lot easier to type. - The 0 key is on the top-left of the last key on the first row. It is not like the other digits. - The Tab key is on the top-right. This might be hard to re-learn. - Some layouts had more changes to accomodate these new positions. Co-authored-by: Raphael <rapha.a.r@gmail.com>
2022-04-03Swap Ctrl and switch_numeric keysJules Aguillon2-2/+2
The switch_numeric key is generally more important, especially in the numeric pane.
2022-04-03Swap Fn and AltJules Aguillon1-1/+1
Fn is increasingly more important while Alt is generally not.
2022-04-02`Arrows` and `Box` system (#114)Raphael2-8/+9
* Add `Arrows` and `Box` accent system
2022-04-02Add Korean layout (#115)nickid3-0/+40
* Add Korean layout
2022-03-31Add arrowsArenaL51-8/+8
Add simple arrows to the numeric keypad. Using the Fn key with these arrows will output double arrows.
2022-03-31Add interpunct and move Tab in Spanish keyboardArenaL51-2/+2
Added the middle dot (·) to the Spanish keyboard, in order to be able to type Catalan words and names. Catalan is spoken in Eastern Spain, and the middle top is therefore included in standard PC Spanish keyboards. Also changed the Tab key to an upwards-leftwards swipe, as to follow more closely the programmer's layout qwerty.xml
2022-03-23Korean translationsnickid1-0/+47
2022-03-21Translate into Chinese-Simplifiedsix-61-0/+51
2022-03-21Update Spanish translationArenaL52-3/+5
and fix a couple typos
2022-03-21Add dead macron to Spanish layoutArenaL51-2/+2
This is only to make this layout more similar to the default English layout. Macrons are not actually used in any language spoken in Spain, but they appear to be used in some varieties of Nahuatl? Also added C-cedilla to the N-tilde key. Even if both C-cedilla and N-tilde are redundant in this keyboard, both letters are a staple of Spain keyboards, and Spaniards are used to have a dedicated key for C-cedilla in PC keyboards.
2022-03-21Increase vibration maximum from 50 ms to 100 msArenaL51-1/+1
2022-03-19Add F11 and F12Jules Aguillon11-36/+35
These keys are shown only when Fn is activated, "placeholder" keys are placed in the layouts.
2022-03-15Brazilian portuguese layout (#91)igorSilCar3-1/+41
* Providing a comprehensible Brazilian Portuguese keyboard layout removed cedille as it is already provided by an independent key; changed layout to correspond to the locale
2022-03-15Add Swedish layoutJacob Strömgren3-1/+45
2022-03-15Log editor infos while debuggingJules Aguillon1-0/+2
Useful when debugging why the keyboard doesn't work as expected with a specific app.
2022-03-14Identify debug version in app nameJules Aguillon6-6/+2
Using the --product option of aapt. Remove the app name from translations because it is never translated. It is still possible to translate it by specifying 'product="default"'.
2022-03-13Make superscript and subscript modifiers lockableJules Aguillon1-0/+2
2022-03-13Define localized keys as a set instead of flagsJules Aguillon1-9/+9
Using flags for removing keys like € and ß need too many flags and won't scale to more localized keys.
2022-03-09Brazilian portuguese translations (#100)igorSilCar1-0/+2
* Translations for new setting, lockable modifier keys Co-authored-by: Igor da Silva de Carvalho <igu@coiso.meanhouse>
2022-03-05Clicking twice on CTRL or ALT will lock them in 'ON' state (#72)Raphael2-0/+9
* Clicking twice on CTRL or ALT will lock them in 'ON' state * Make Locking behaviour optional, configurable in preferences * Nest the new settings into a different page To avoid spamming the settings page and repetition in the summaries. Cannot be a popup unfortunately because that would require API >= 11. * Add Fn and Meta Co-authored-by: Jules Aguillon <jules@j3s.fr>
2022-03-05Brazilian portuguese translations (#87)igorSilCar1-0/+48
* Added brazilian portuguese translations for app description and settings * making the swiping option more intelligible * fix typo on full_description pt-BR translation Co-authored-by: Igor da Silva de Carvalho <igu@coiso.meanhouse>
2022-02-27Increase contrastsJules Aguillon1-12/+12
For the Dark and Light theme. At the same time, use only "web safe colors" to have nice round numbers and ensure enough contrasts between colors. The background color is kept at the previous value, there's not enough contrast between the background and the keys but that's better than a solid black background.
2022-02-27Compute text size relative to key heightJules Aguillon3-8/+9
Instead of a fixed size that don't work at all for bigger screens. Other tweaks: - Use the value-land dimens to vary 'extra_horizontal_margin' - Move label size to Config, because it can change at runtime (rotation) - Slightly decrease the size of "long" symbols
2022-02-26Fix typo in subtype description for BulgarianJules Aguillon1-1/+1
This causes a crash.
2022-02-26Add a missing full stop to Latvian QWERTY layoutEdgars1-2/+2
`res/xml/qwerty_lv.xml` was updated to add the missing full stop character (`.`) as it got lost when the bottom row was moved to a separate XML `res/xml/bottom_row.xml` as it was placed on the arrows key. Additionally `?` was relocated, giving its place to the full stop.
2022-02-25German translationBenjamin1-4/+4
2022-02-25German translation strings.xml and full_description.txtBenjamin1-0/+48
2022-02-22Update the spanish localeJules Aguillon1-1/+1
To use the new layout.
2022-02-22spanish translation and layoutInvert White3-0/+88
2022-02-19Localize € and £Jules Aguillon6-43/+44
Show these characters only for users that have the corresponding locale installed (a supported eu language for €, en-GB for £). Add these characters to most layouts.
2022-02-19add colon key to numeric keyboardRaphael1-1/+1
2022-02-19add-ordinal-numbers-symbol-systemRaphael1-1/+1
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.