Skip to content

Commit a0278cc

Browse files
committed
Version 1.17.2 release
1 parent 55b4006 commit a0278cc

File tree

7 files changed

+13
-16
lines changed

7 files changed

+13
-16
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ You can import `mongol-library` into your project from jCenter by adding the fol
4242

4343
```java
4444
dependencies {
45-
implementation 'net.studymongolian:mongol-library:1.17.1'
45+
implementation 'net.studymongolian:mongol-library:1.17.2'
4646
}
4747
```
4848

@@ -676,7 +676,7 @@ The keyboards are embedded in the keyboard container, which acts as a controller
676676

677677
#### Version changes
678678

679-
679+
* `1.17.2`: Minor keyboard adjustments (removed a few of the vertical presentation forms)
680680
* `1.17.1`: Added newline key to nav keyboard; added vertical presentation forms to Mongolian keyboards
681681
* `1.17.0`: Added MongolTextView line spacing
682682
* `1.16.6`: Fix for system keyboard horizontal candidates view layout

README.zh-Hans.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
```java
4343
dependencies {
44-
implementation 'net.studymongolian:mongol-library:1.17.1'
44+
implementation 'net.studymongolian:mongol-library:1.17.2'
4545
}
4646
```
4747

demo-app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ android {
66
applicationId "net.studymongolian.mongollibrarydemo"
77
minSdkVersion rootProject.ext.minSdkVersion
88
targetSdkVersion rootProject.ext.targetSdkVersion
9-
versionCode 38
10-
versionName "1.17.1"
9+
versionCode 39
10+
versionName "1.17.2"
1111
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1212
}
1313
buildTypes {

demo-app/release/demo-app-release.apk

8 Bytes
Binary file not shown.

demo-app/release/output.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":37,"versionName":"1.17.0","enabled":true,"outputFile":"demo-app-release.apk","fullName":"release","baseName":"release"},"path":"demo-app-release.apk","properties":{}}]
1+
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":39,"versionName":"1.17.2","enabled":true,"outputFile":"demo-app-release.apk","fullName":"release","baseName":"release"},"path":"demo-app-release.apk","properties":{}}]

mongol-library/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ext {
1313
siteUrl = 'https://github.com/suragch/mongol-library'
1414
gitUrl = 'https://github.com/suragch/mongol-library.git'
1515

16-
libraryVersion = '1.17.1'
16+
libraryVersion = '1.17.2'
1717

1818
developerId = 'suragch'
1919
developerName = 'Suragch'
@@ -29,8 +29,8 @@ android {
2929
defaultConfig {
3030
minSdkVersion rootProject.ext.minSdkVersion
3131
targetSdkVersion rootProject.ext.targetSdkVersion
32-
versionCode 54
33-
versionName "1.17.1"
32+
versionCode 55
33+
versionName "1.17.2"
3434

3535
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
3636

mongol-library/src/main/java/net/studymongolian/mongollibrary/KeyboardAeiou.java

+4-7
Original file line numberDiff line numberDiff line change
@@ -296,8 +296,8 @@ private void setPunctuationKeyValues() {
296296
mKeyMA.setSubText("⑤");
297297

298298
mKeyLA.setText(MongolCode.Uni.VERTICAL_EM_DASH);
299-
mKeyLA.setSwipeUpText(MongolCode.Uni.MONGOLIAN_BIRGA);
300-
mKeyLA.setSubText(MongolCode.Uni.MONGOLIAN_BIRGA);
299+
mKeyLA.setSwipeUpText("~");
300+
mKeyLA.setSubText("~");
301301

302302
// Row 3
303303

@@ -467,7 +467,6 @@ private List<PopupKeyCandidate> getCandidatesForA() {
467467

468468
if (mIsShowingPunctuation) {
469469
candidates.add(new PopupKeyCandidate(MongolCode.Uni.VERTICAL_LEFT_SQUARE_BRACKET));
470-
candidates.add(new PopupKeyCandidate(MongolCode.Uni.VERTICAL_LEFT_WHITE_CORNER_BRACKET));
471470
return candidates;
472471
}
473472

@@ -516,7 +515,6 @@ private List<PopupKeyCandidate> getCandidatesForE() {
516515

517516
if (mIsShowingPunctuation) {
518517
candidates.add(new PopupKeyCandidate(MongolCode.Uni.VERTICAL_RIGHT_SQUARE_BRACKET));
519-
candidates.add(new PopupKeyCandidate(MongolCode.Uni.VERTICAL_RIGHT_WHITE_CORNER_BRACKET));
520518
return candidates;
521519
}
522520

@@ -874,6 +872,7 @@ private List<PopupKeyCandidate> getCandidatesForLA() {
874872
List<PopupKeyCandidate> candidates = new ArrayList<>();
875873
if (mIsShowingPunctuation) {
876874
candidates.add(new PopupKeyCandidate(MongolCode.Uni.MONGOLIAN_BIRGA));
875+
candidates.add(new PopupKeyCandidate("~"));
877876
return candidates;
878877
}
879878
candidates.add(new PopupKeyCandidate(MongolCode.Uni.LHA));
@@ -1037,9 +1036,7 @@ private List<PopupKeyCandidate> getCandidatesForYA() {
10371036
private List<PopupKeyCandidate> getCandidatesForRA() {
10381037
List<PopupKeyCandidate> candidates = new ArrayList<>();
10391038
if (mIsShowingPunctuation) {
1040-
candidates.add(new PopupKeyCandidate(MongolCode.Uni.VERTICAL_COMMA));
1041-
candidates.add(new PopupKeyCandidate(MongolCode.Uni.VERTICAL_IDEOGRAPHIC_FULL_STOP));
1042-
candidates.add(new PopupKeyCandidate(MongolCode.Uni.VERTICAL_IDEOGRAPHIC_COMMA));
1039+
candidates.add(new PopupKeyCandidate(MongolCode.Uni.MONGOLIAN_COLON));
10431040
candidates.add(new PopupKeyCandidate(MongolCode.Uni.VERTICAL_SEMICOLON));
10441041
candidates.add(new PopupKeyCandidate(MongolCode.Uni.DOUBLE_QUESTION_MARK));
10451042
candidates.add(new PopupKeyCandidate(MongolCode.Uni.EXCLAMATION_QUESTION_MARK));

0 commit comments

Comments
 (0)