| Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
The previous algorithm did not cut the circle into 16 equal parts.
The division by 2pi yielded numbers smaller than 16, which no longer
made sense after the cast to int.
|
|
* add arabic keyboard
* use unicode values for special characters
* add alternate layout
* use arabic numbers
|
|
* New Hindi layout
* Update default layout for Marathi, Nepali
* Consistent naming for Devanagari layouts
|
|
|
|
It uses the russian layout with placed extra keys.
|
|
The Corner class is removed. The "localized" flag for all the corners is
held in a bitfield.
|
|
|
|
'Keyboard.Key' now contains an array of size 9, giving each keyvalue an
index. The algorithm for finding the nearest key during a swipe now
needs 16 segments, which are now calculated as an angle.
The algorithm does one more interation instead of 2 more, slightly
reducing the sensitivity of corner values. The 'getAtDirection' function
is moved into the Pointers class to clearly separate the two systems.
The 'edgekey' attribute is now obsolete but is kept for compatibility.
The flag is removed internally, key index are simply translated.
Similarly, the 'slider' attribute now act on keys at index 5 and 6
instead of 2 and 3.
|
|
Auto-capitalisation triggers when the backspace key is used. Make sure
to not remove a locked shift pointer.
|
|
This removes keys like '.' and '-' from their usual place, which is
pretty annoying.
The feature is retained for the number row.
|
|
|
|
|
|
The 'keysHeight' field needs to be updated. As this class is not
intended to be mutable, copy the list of rows and call the constructor.
Also remove an unecessary component of the keyboard height calculation.
|
|
Missing German translation completed
|
|
Outdated since 0f62b30
|
|
* Add alternative black theme
|
|
|
|
A new option changes the "change_method" into the new
"change_method_prev". It switch to the previously used input method.
A long press on "change_method_prev" sends "change_method".
A new section is added in the settings and existing options are moved.
|
|
|
|
|
|
Added missing accent (horn, hook, dot below)
Added layout
Added accent font svg (by modified existing accent)
|
|
The special handling of arrow keys have been removed in 854eff2. Key
repeat was not starting when the key0 was empty.
|
|
|
|
* Add theme 'ePaper'
|
|
|
|
|
|
An option is added to enable an extra number row at the top of the
keyboard. Digits are removed from the keyboard while the number row is
visible.
|
|
|
|
Refactor, follow up of 90b7944. Add a modification step to the "special"
layouts: numpad, greekmath, pin entry.
Remove the apply_key0 function, which is not expressive enough.
Add an enum instead of yet an other "switch_" function.
|
|
Refactor. Allows to remove the 'extra_keys' and 'num_pad' flags and to
implement more complicated transformations to the layouts.
|
|
Since fecc4dd, placeholder keys can't be compared by reference.
Add a placeholder kind and defined placeholder values.
|
|
The left and right arrows are less often needed and the key can be
shorter.
|
|
Refactoring. Predefined keys are represented by a big switch statement
rather than added into a hashmap.
|
|
A sliding pointer going up must not cause a key event to be sent. This
caused an extra cursor movement and cleared the latched modifiers.
|
|
Send key events for the left or right arrow as the finger slides on the
space bar.
Can be used to select text by holding shift. Works under Termux.
Events are sent linearly as the finger travels. The distance between
each events is defined from the swiping distance divided by 4.
'slider="true"' can be set on a key that have 'edgekeys="true"'.
'key2' and 'key3' represent the right and left keys.
|
|
It allowed to modulate the repeat speed of some keys (arrow, backspace,
delete) by move the finger farther or closer to the key.
In practice, this wasn't pratical and doesn't seem popular. It is
removed in favor of a better mechanism for moving the cursor.
|
|
|
|
|
|
Stay on the secondary layout after a config refresh or onStartInputView.
The information is kept until the keyboard is restarted.
Additionally, move tweaking the secondary layout to the Config class now
that physical equality is not needed.
|
|
|
|
A large margin in portrait mode is desirable but generally not in
landscape mode.
|
|
A separate option is needed, the +25dp offset wasn't enough.
|
|
* Add ru-RU market description
* Add russian settings translate
|
|
Co-authored-by: Jozef Kundlak <ingjozefkundlak@gmail.com>
|
|
|
|
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.
|
|
"swipe gesture" is not clearly defined and can be confused with the
one from the Swype keyboard. Also remove the useless part that is
repeated below.
|
|
The most requested keys are undo and redo. Unfortunatly redo doesn't
work reliably.
The other context menu actions like share, assist and autofill are added
even thought they are rarely useful or implemented.
|