Skip to content

Commit

Permalink
Optimize ₽
Browse files Browse the repository at this point in the history
  • Loading branch information
rkkr committed Feb 4, 2023
1 parent 2763a0e commit 31c3a49
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 127 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "rkr.simplekeyboard.inputmethod"
minSdkVersion 19
targetSdkVersion 33
versionCode 97
versionName "5.12"
versionCode 98
versionName "5.13"
}
buildTypes {
release {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@

package rkr.simplekeyboard.inputmethod.keyboard.internal;

import android.os.Build;

import java.util.HashMap;
import java.util.Locale;

Expand Down Expand Up @@ -3059,7 +3061,7 @@ public static String[] getTextsTable(final Locale locale) {
/* morekeys_s */ null,
/* single_quotes */ "!text/single_9qm_lqm",
// U+20BD ₽ RUBLE SIGN
/* keyspec_currency ~ */ "\u20BD",
/* keyspec_currency ~ */ Build.VERSION.SDK_INT > Build.VERSION_CODES.LOLLIPOP ? "\u20BD" : "\u20B1",
null, null, null, null, null, null, null, null, null, null,
/* ~ morekeys_k */
// U+0451: "ё" CYRILLIC SMALL LETTER IO
Expand Down
120 changes: 0 additions & 120 deletions app/src/main/res/xml-v22/rowkeys_east_slavic2.xml

This file was deleted.

4 changes: 2 additions & 2 deletions app/src/main/res/xml/rowkeys_east_slavic2.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
<!-- U+0432: "в" CYRILLIC SMALL LETTER VE -->
<Key
latin:keySpec="&#x0432;"
latin:keyHintLabel="$"
latin:additionalMoreKeys="$" />
latin:keyHintLabel="!text/keyspec_currency"
latin:additionalMoreKeys="!text/keyspec_currency" />
<!-- U+0430: "а" CYRILLIC SMALL LETTER A -->
<Key
latin:keySpec="&#x0430;"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.1'
classpath 'com.android.tools.build:gradle:7.4.1'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip

0 comments on commit 31c3a49

Please sign in to comment.