A mirror for futokb (https://gitlab.futo.org/keyboard)
Go to file
2024-04-10 19:44:59 -05:00
common Improve avoiding autocorrect w/ URLs/emails 2024-02-01 22:58:08 +02:00
dictionaries Update LatinIME to comply with Android's inclusive language guidance 2020-08-12 13:07:02 +02:00
gradle/wrapper Update dependencies 2024-01-11 22:26:38 +02:00
java Add emoji key to bottom row and option to disable it 2024-04-10 19:44:59 -05:00
libs@6112cd68d1 Initial voice input implementation 2023-08-27 19:08:44 +03:00
native Fix some race conditions and properly free language model 2024-04-09 23:06:31 -05:00
tests Add emoji key to bottom row and option to disable it 2024-04-10 19:44:59 -05:00
tools Initial working build of fork 2023-07-06 21:57:49 +03:00
voiceinput-shared Add resource importing (dict/voice/transformer) 2024-04-01 14:31:11 -05:00
.gitignore Add q8 model 2023-10-16 17:31:43 +03:00
.gitlab-ci.yml Update CI 2024-03-22 16:45:49 -05:00
.gitmodules Initial voice input implementation 2023-08-27 19:08:44 +03:00
Android.bp Initial working build of fork 2023-07-06 21:57:49 +03:00
build.gradle Add back http crash report for now 2024-04-02 16:56:53 -05:00
CleanSpec.mk
FTL_LICENSE.md Add license 2023-08-15 19:44:22 +03:00
gradle.properties Initial working build of fork 2023-07-06 21:57:49 +03:00
gradlew Initial working build of fork 2023-07-06 21:57:49 +03:00
gradlew.bat Initial working build of fork 2023-07-06 21:57:49 +03:00
NOTICE Add license 2023-08-15 19:44:22 +03:00
OWNERS Update OWNERS file 2022-02-10 01:34:32 +00:00
proguard-rules.pro Fix voice input crash with proguard 2024-01-10 02:24:07 +02:00
README.md Initial voice input implementation 2023-08-27 19:08:44 +03:00
sendZulipMessage.sh Add webhook to CI and update image version 2023-08-31 23:53:30 +03:00
settings.gradle Initial voice input implementation 2023-08-27 19:08:44 +03:00
setUpPropertiesCI.sh Add crash reporting file to CI 2023-08-31 22:48:35 +03:00

FUTO Keyboard

The goal is to make a good keyboard that doesn't spy on users. This repository is a fork of LatinIME (the Android Open-Source Keyboard). Changes are licensed under this license for now.

Eventual goals:

  • Improve upon various aspects of the keyboard, such as theming
  • Integrated voice input
  • Transformer language model instead of n-gram
  • On-device finetuning of a language model(?)

Building

When cloning the repository, you must perform a recursive clone to fetch all dependencies:

git clone --recursive git@gitlab.futo.org:alex/latinime.git

You can also initialize this way if you forgot to specify the recursive clone:

git submodule update --init --recursive

You can then open the project in Android Studio and build it that way.