Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MessagEase fixes #709

Merged
merged 5 commits into from
Feb 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import com.dessalines.thumbkey.utils.SwipeNWay
import com.dessalines.thumbkey.utils.autoCapitalizeI
import com.dessalines.thumbkey.utils.autoCapitalizeIApostrophe

val KB_EN_MESSAGEEASE_MAIN =
val KB_EN_MESSAGEASE_MAIN =
KeyboardC(
listOf(
listOf(
Expand Down Expand Up @@ -224,8 +224,8 @@ val KB_EN_MESSAGEEASE_MAIN =
),
SwipeDirection.BOTTOM_RIGHT to
KeyC(
display = KeyDisplay.TextDisplay("-"),
action = KeyAction.CommitText("-"),
display = KeyDisplay.TextDisplay(":"),
action = KeyAction.CommitText(":"),
color = ColorVariant.MUTED,
),
SwipeDirection.BOTTOM to
Expand Down Expand Up @@ -269,7 +269,7 @@ val KB_EN_MESSAGEEASE_MAIN =
),
)

val KB_EN_MESSAGEEASE_SHIFTED =
val KB_EN_MESSAGEASE_SHIFTED =
KeyboardC(
listOf(
listOf(
Expand Down Expand Up @@ -480,8 +480,8 @@ val KB_EN_MESSAGEEASE_SHIFTED =
),
SwipeDirection.BOTTOM_RIGHT to
KeyC(
display = KeyDisplay.TextDisplay("-"),
action = KeyAction.CommitText("-"),
display = KeyDisplay.TextDisplay(":"),
action = KeyAction.CommitText(":"),
color = ColorVariant.MUTED,
),
SwipeDirection.BOTTOM to
Expand Down Expand Up @@ -525,14 +525,14 @@ val KB_EN_MESSAGEEASE_SHIFTED =
),
)

val KB_EN_MESSAGEEASE: KeyboardDefinition =
val KB_EN_MESSAGEASE: KeyboardDefinition =
KeyboardDefinition(
title = "english messageease",
title = "English MessagEase",
modes =
KeyboardDefinitionModes(
main = KB_EN_MESSAGEEASE_MAIN,
shifted = KB_EN_MESSAGEEASE_SHIFTED,
numeric = NUMERIC_KEYBOARD,
main = KB_EN_MESSAGEASE_MAIN,
shifted = KB_EN_MESSAGEASE_SHIFTED,
numeric = KB_EN_MESSAGEASE_NUMERIC,
),
settings =
KeyboardDefinitionSettings(
Expand Down
Loading