| Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
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.
|
|
The "main" layout can now be pin layout. 'SWITCH_TEXT' and
'SWITCH_SECOND_BACK' don't mean to use that.
|
|
|
|
The regular text layout was showing instead of the pin entry due to a
misuse of the 'switch' syntax.
|
|
'extra_keys_subtype' can be none on API level < 12 when the "accents"
option is tweaked.
|
|
|
|
'setInputView()' must be called on every 'onStartInputView()', not just
when the view is re-created.
This is broken since bf31872.
|
|
|
|
* Add option for keyboard opacity (transparency). Keyboard background, keys and pressed keys can be adjusted separately.
* Make the borders transparent as well
* Moved setAlphas outside drawKeyFrame to top of onDraw method
|
|
setInputView() was not called when the view was re-created through
refresh_config(). Also, the refresh_config() function was not able to
properly set the current layout.
Now keep the default layout (_localeTextLayout) and the current non-text
layout (if any, _currentSpecialLayout) separately to be able to refresh
them later.
setInputView() is called everytime the view is created instead of by
onStartInputView() specifically.
The setting activity now save the preferences to the protected storage
in onStop() instead of listening for onSharedPreferenceChanged.
|
|
The measurement function was wrong in some situations. Set a width for
columns and properly configure the GridView.
|
|
The callback might not be called if the "default" shared preferences is
different from the shared preferences actually used. This is unexpected
but seems to happen half of the time on Android 12.
Since f1ce6ab, this callback is critical to update the keyboard.
Restarting the application can no longer solve these issues.
|
|
* Updated pl translation
* Added qwerty_pl.xml – QWERTY (Polski) layout
|
|
|
|
|
|
Allow choosing whether to show the high or the low digits first. The
numeric pane and the numpad are affected by the option.
|
|
|
|
Some users reported that 25% of the screen height is too high on their
screen. This doesn't seem to be a good way to define the height but
until it is improved, allow smaller values.
|
|
The cancel event ends the motion, it doesn't apply to a single pointer
like it was previously expected.
|
|
Also, sync all the translations since the added option.
|
|
The small bar on the middle of the dotted circle looked like a small
arrow. Make the bar span the whole circle, not on the middle.
|
|
Add an option for specifying an XML layout description as a string.
The option is a bit rough at the moment:
- No documentation, users have to be aware of the keyboard's code to use
this option.
- No error are shown, the layout will fallback to qwerty on error.
|
|
XmlResourceParser is convenient but cannot be easily instantiated.
|
|
Parse layouts sooner.
|
|
The new script makes sure that strings files don't contain obsolete
strings but also ease the job of contributors by adding missing
translations as comments.
A Github Action ensures that translations stay in sync over time.
|
|
Especially annoying now that modifiers are not locked by a double tap.
|
|
This function has been introduced in API 19 and deprecated in API 28.
There was no version check for API 19 but instead of adding these,
simply remove the feature for API under 28.
|
|
|
|
setSystemGestureExclusionRects is API 29. Broken since d644d2b, which
almost got into the release!
|
|
Themes can define the color of each borders independently. Every borders
must have the same width for now. It's possible to set a different width
when the key is activated, thought this is only used to remove borders.
The 4 themes are updated to take advantage of borders.
|
|
Rendering change only.
|
|
|
|
Remove the code dealing with InputMethodConnection from 'Keyboard2' and
move it into 'KeyEventHandler', where more editing actions can now be
implemented.
Autocapitalisation is also moved, the IReceiver interface is simplified.
|
|
instead of maintaining a separate set of constants and a conversion
function.
|
|
The dpi values "xdpi" and "ydpi" can have wildly different values on
different devices.
The new computation defines a baseline and only take into account the
dpi values as a ratio.
On a 480dpi screen (in both directions), this decrease the value by
about 18%. This new distance felt better during testing.
|
|
|
|
A new option allow to choose a secondary layout, the switching key is
placed on the top edge of the space bar.
The "Programming layout" option was basically doing that but it was
possible to choose from a few layouts only. It is improved and renamed.
The 'LayoutListPreference' allows setting the string for the first entry
but otherwise share the rest of the array.
Add nice icons from materialdesignicons.
|
|
The brightness value is used as the alpha value when drawing the labels.
|
|
Reduce the constrast of "secondary" labels. Modifiers (except
diacritics), event and keyevent keys are considered secondary.
|
|
as well as other system gestures that would interfere with the
keyboard's own swipe gesture.
|