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

Fix IDv1SN bug + renaming Indonesian layout sort problem #438

Merged
merged 6 commits into from
Sep 26, 2023
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 @@ -14,7 +14,6 @@ import com.dessalines.thumbkey.utils.KeyItemC
import com.dessalines.thumbkey.utils.KeyboardC
import com.dessalines.thumbkey.utils.KeyboardMode
import com.dessalines.thumbkey.utils.SwipeDirection
import com.dessalines.thumbkey.utils.SwipeNWay

// Adds more punctuation options to the main screen to reduce switches to the numeric keyboard
val THUMBKEY_ID_V1_SN = KeyboardC(
Expand All @@ -27,7 +26,6 @@ val THUMBKEY_ID_V1_SN = KeyboardC(
size = FontSizeVariant.LARGE,
color = ColorVariant.PRIMARY,
),
swipeType = SwipeNWay.FOUR_WAY_DIAGONAL,
swipes = mapOf(
SwipeDirection.BOTTOM_RIGHT to KeyC(
display = KeyDisplay.TextDisplay("h"),
Expand Down Expand Up @@ -281,7 +279,6 @@ val THUMBKEY_ID_V1_SN = KeyboardC(
size = FontSizeVariant.LARGE,
color = ColorVariant.PRIMARY,
),
swipeType = SwipeNWay.FOUR_WAY_DIAGONAL,
swipes = mapOf(
SwipeDirection.TOP_RIGHT to KeyC(
display = KeyDisplay.TextDisplay("p"),
Expand Down Expand Up @@ -430,7 +427,6 @@ val THUMBKEY_ID_V1_SN_SHIFTED = KeyboardC(
size = FontSizeVariant.LARGE,
color = ColorVariant.PRIMARY,
),
swipeType = SwipeNWay.FOUR_WAY_DIAGONAL,
swipes = mapOf(
SwipeDirection.BOTTOM_RIGHT to KeyC(
display = KeyDisplay.TextDisplay("H"),
Expand Down Expand Up @@ -685,7 +681,6 @@ val THUMBKEY_ID_V1_SN_SHIFTED = KeyboardC(
size = FontSizeVariant.LARGE,
color = ColorVariant.PRIMARY,
),
swipeType = SwipeNWay.FOUR_WAY_DIAGONAL,
swipes = mapOf(
SwipeDirection.TOP_RIGHT to KeyC(
display = KeyDisplay.TextDisplay("P"),
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/dessalines/thumbkey/utils/Types.kt
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ enum class KeyboardLayout(val title: String, val index: Int) {
ThumbKeyNOv1("Thumb-Key norsk v1", 24),
ThumbKeyDEv2MultiLingual("Thumb-Key deutsch v2 multilingual", 25),
ThumbKeyKAv1("Thumb-Key kartuli ena v1", 26),
ThumbKeyIDv1("Thumb-Key bahasa indonesia with symbols v1", 27),
ThumbKeyIDv1("Thumb-Key Bahasa Indonesia with Symbols v1", 27),
MessageEaseFR("MessageEase français", 28),
MessageEaseRUSymbols("MessageEase русский with Symbols", 29),
T9v1("T9 v1", 30),
Expand Down