abouttreesummaryrefslogcommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2022-02-13Use the improved font for shift, globe, enter and spaceJules Aguillon1-5/+11
These glyph were available in the custom font but not used yet.
2022-02-13Add ю to the bulgarian layoutJules Aguillon1-1/+1
Thanks Zdravko for pointing out.
2022-02-13Scale the bottom row depending on the host layoutJules Aguillon1-10/+31
1ff8526 added a bug for layouts that weren't 10 units wide.
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-13Invert return key in TTF (#67)Roy-Orbison1-0/+0
Was a "level-up" symbol, now looks like a return key in identical style.
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-07build: Use d8 instead of dxJules Aguillon2-2/+2
dx have been removed in android build tools >30.0.3 in favor of d8. Lift the version constraint on the build tools.
2022-02-07Define the bottom row separatelyJules Aguillon10-118/+88
Avoid divergences when the bottom row is modified.
2022-02-07Dvorak layout (#16)AlexandraAlter3-0/+47
2022-02-06Replace unusual return symbolMax Schillinger1-1/+1
2022-02-06Allow egde keys instead of corner keys (swipe vertically/horizontally)Max Schillinger8-26/+73
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 Aguillon3-2/+6
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-05Use apksigner from the build tools for release builds tooJules Aguillon2-8/+4
2022-02-05Makefile: Pass full path when calling apksignerMax Schillinger1-1/+1
2022-02-05Add supoort to show accents for Portuguese languageRaphael1-0/+1
2022-01-31Release 1.12.0 (16)Jules Aguillon3-1/+26
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 Aguillon4-6/+16
Two options: vertical and horizontal.
2022-01-30Select theme depending on system settingsJules Aguillon7-18/+47
Automatically choose between the Dark and Light themes.
2022-01-30Avoid color inversion in dark themeJules Aguillon1-0/+4
2022-01-30Contributing guidelines for layouts and translationsJules Aguillon1-0/+26
2022-01-30Improve Action key detectionJules Aguillon2-11/+4
There were two problems: - The Action key was swapped when it shouldn't be. The flag 'IME_FLAG_NO_ENTER_ACTION' wasn't interpreted correctly for inputs that specified both an action and this flag. - The value 'IME_ACTION_UNSPECIFIED' should remove the Action key.
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-29Fn+Tab to send the tab characterJules Aguillon2-0/+2
2022-01-29Add support for the Bulgarian language and layoutJules Aguillon4-0/+48
Thanks Zdravko Iskrenov for the contribution.
2022-01-29Fix modifier not working on non-ASCIIJules Aguillon1-1/+2
Characters defined in layouts that aren't defined in KeyValue weren't recognized as character keys. Not working with modifiers.
2022-01-29Add Latvian translationEdgars3-0/+64
2022-01-29Add Latvian specific QWERTY layoutEdgars4-2/+49
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-23Globe key: Open keyboard switching dialogJules Aguillon1-1/+3
instead of immediately switching to the next input method.
2022-01-23Translate to FrenchJules Aguillon1-0/+45
2022-01-23Improve some stringsJules Aguillon1-4/+4
2022-01-23Make action key labels translatableJules Aguillon2-6/+14
2022-01-22Update feature graphic according to Google's guidelinesJules Aguillon1-0/+0
2022-01-22Use symbols for configuration and emoji keysEdgars1-2/+2
`srcs/juloo.keyboard2/KeyValue.java` was updated to replace `Conf` with `⛭` (`\u2699`) and `:)` with `☻` (`\u263B`).
2022-01-22Update README.mdPoussinou1-0/+3
2022-01-20Add keys for LatvianEdgars5-14/+32
New accents - caron and macron - were defined and QWERTY layout was updated to add accents for Latvian specific characters.
2022-01-20Release 1.11.1 (15)Jules Aguillon3-1/+17
2022-01-20Fix crash when switching appJules Aguillon1-0/+10
2022-01-20Makefile: Sign the debug apk with scheme v2Jules Aguillon1-3/+2
2022-01-20Update doc for Android 11Jules Aguillon4-11/+8
2022-01-17Fix broken link (because of case sensitivity)Raphael1-1/+1
2022-01-16Release 1.11.0 (14)Jules Aguillon3-1/+17
2022-01-16Update and improve the descriptionJules Aguillon7-24/+50
Explain better what the app is and mention some of the features. Unfortunately, the German translation needs to be dropped because I can't maintain it.
2022-01-15German keyboard added (#20)Moini12-3/+65
* Add German metadata translation * Add German keyboard Co-authored-by: Jules Aguillon <jules@j3s.fr>
2022-01-15Fix miscalculation of the space between the keysJules Aguillon2-8/+10
'keyVerticalInterval' was mistakenly used to compute the height of the keyboard and the vertical position of keys. While the code handling pointers did not use this value, the hit box of the bottom row was shifted by several pixels. Make sure 'keyVerticalInterval' is only used for rendering and not for placing the keys.
2022-01-15Contributing: Mention enabling the virtual keyboardJules Aguillon1-6/+5
2022-01-15CONTRIBUTING: Document debug installation failureJules Aguillon1-0/+22
2022-01-15Add a CONTRIBUTING guideJules Aguillon2-0/+46
2022-01-10Update screenshotsJules Aguillon9-0/+0