1
0
Fork 0

New beginning (#1)

* removed signing config when building a release
* slightly reorganized project structure
* .editorconfig
* updated README
This commit is contained in:
sspanak 2022-06-14 21:00:22 +03:00
parent 0a81e6845f
commit 336b569faa
14 changed files with 44 additions and 76 deletions

15
.editorconfig Normal file
View file

@ -0,0 +1,15 @@
# Editor configuration, see https://editorconfig.org
root = true
[*.{java,properties,xml}]
charset = utf-8
indent_style = tab
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true
[*.md]
indent_style = space
trim_trailing_whitespace = true
[package.json]

16
.gitignore vendored
View file

@ -19,18 +19,18 @@ build/
# Local configuration file (sdk path, etc) # Local configuration file (sdk path, etc)
local.properties local.properties
# Proguard folder generated by Eclipse
proguard/
# Log Files # Log Files
*.log *.log
# Intellij project files
*.iws
*.iml
.idea/
#Other #Other
assets/dict.properties assets/dict.properties
t9build.properties t9build.properties
*.keystore *.keystore
# IDE project files
*.iws
*.iml
.idea/
proguard/
*.sublime-project
*.sublime-workspace

View file

@ -1,8 +1,9 @@
Traditional T9 keypad IME for Android. # traditional-t9
T9 IME input for Android devices with hardware keypad.
This is a clone of the [original project](https://github.com/Clam-/TraditionalT9) by Clam-.
This is a Input Method Editor for Android that implements predictive text using the hardware keypad on the device. **Useless without a hardware numerical keypad.** ## About the project
traditional-t9 is an Input Method Editor for Android that implements predictive text using the hardware keypad on the device. **Useless without a hardware numerical keypad.**
See Wiki for more information: [Traditional T9 keypad IME for Android](https://github.com/Clam-/TraditionalT9/wiki/Traditional-T9-keypad-IME-for-Android) Original Wiki: [Traditional T9 keypad IME for Android](https://github.com/Clam-/TraditionalT9/wiki/Traditional-T9-keypad-IME-for-Android)
Available on Google Play: [Traditional T9 Keypad IME](https://play.google.com/store/apps/details?id=org.nyanya.android.traditionalt9)

View file

@ -111,20 +111,20 @@ android {
} }
// http://stackoverflow.com/a/19130098 // http://stackoverflow.com/a/19130098
signingConfigs { // signingConfigs {
release { // release {
storeFile file(System.getenv("KEYSTORE")) // storeFile file(System.getenv("KEYSTORE"))
storePassword System.getenv("KEYSTORE_PASS") // storePassword System.getenv("KEYSTORE_PASS")
keyAlias System.getenv("KEYALIAS") // keyAlias System.getenv("KEYALIAS")
keyPassword System.getenv("KEYALIAS_PASS") // keyPassword System.getenv("KEYALIAS_PASS")
} // }
} // }
//
buildTypes { // buildTypes {
release { // release {
signingConfig android.signingConfigs.release // signingConfig android.signingConfigs.release
} // }
} // }
} }
task getDictSizes { task getDictSizes {

0
gradlew vendored Normal file → Executable file
View file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

View file

@ -1,25 +0,0 @@
Title
Traditional T9 Keypad IME
Full description
Traditional T9 Keypad IME это уникальное приложение для андроид, позволяющее вводить текст в Т9, использовав при этом аппаратную цифровую клавиатуру.
Программа имеет горячие клавиши.
Так например с помощью левой кнопки при выборанном режиме ввода Словарь(Т9), можно в словарь добавить слово, а при выбранном по-буквенному режиме ввода вставить нужный символ.
Правая кнопка, при коротком нажатии, позволяет выбирать нужный режим ввода (Словарь(Т9)->текст->только цифры). При длительном нажатии правой кнопки можно перейти в настройки программы.
При помощи кнопки «звездочка», можно менять регистр при коротком нажатии, а также вызывать диалог вставки смайлика при длительном нажатии.
Пробел ставиться с помощью короткого нажатия «решетки», а новая строка с помощью длительного нажимания.
Английский словарь содержит 95694 слова.
Русский словарь 28076 слова.
Имеется возможность:
Добавления своих слов в словарь;
Загрузки своего словаря;
Резервирование и восстановления словаря.
Short description
T9 метод ввода текста используя цифровую аппаратную клавиатуру!

View file

@ -1,23 +0,0 @@
Title
Traditional T9 Keypad IME
Full description
Це метод введення тексту з передбаченням (T9) з використанням апаратної клавіатури.
Це НЕ програмна/екранна клавіатура.
Цю клавіатуру має сенс встановлювати лише на телефон з апаратною клавіатурою.
Введення здійснються ЛИШЕ з цифрової апаратної клавіатури.
Детальна інформація та підтримка на веб-сайті.
Підтримується декілька мов введення (Англійська, Російська, Німецька, Французька, Італійська, Українська)
Short description
Введення тексту з передбаченням (T9) з апаратної клавіатури! (Англійська, Російська, Німецька, Французька, Італійська, Українська)
Що нового в цій версії?
Нова мова введення (Українська)
Інші виправлення та новини.
Історія змін на github.