Skip to content

Commit

Permalink
20220128
Browse files Browse the repository at this point in the history
  • Loading branch information
FredHappyface committed Jan 27, 2022
1 parent 2e5df7e commit 00b2bbf
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ patch-level version changes can be found in [commit messages](../../commits/mast
## Next_Ver - 2022/xx/xx
-->

## 20220127 - 2022/01/27
## 20220128 - 2022/01/28

- Highlight the selected tab. https://github.com/FredHappyface/Android.EweSticker/issues/29
- Add support for video formats https://github.com/FredHappyface/Android.EweSticker/issues/34
Expand Down
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
applicationId = "com.fredhappyface.ewesticker"
minSdk = 26
targetSdk = 31
versionCode = 20220127
versionName = "2022.01.27"
versionCode = 20220128
versionName = "2022.01.28"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
setProperty("archivesBaseName", "$applicationId-$versionName")
}
Expand All @@ -39,7 +39,7 @@ dependencies {
implementation("androidx.core:core-ktx:1.7.0")
implementation("androidx.appcompat:appcompat:1.4.1")
implementation("com.google.android.material:material:1.5.0")
implementation("androidx.preference:preference-ktx:1.1.1")
implementation("androidx.preference:preference-ktx:1.2.0")
implementation("io.coil-kt:coil:1.4.0")
implementation("io.coil-kt:coil-gif:1.4.0")
implementation("io.coil-kt:coil-video:1.4.0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -432,6 +432,7 @@ class ImageKeyboard : InputMethodService() {
}
if (sortedPackNames.isNotEmpty()) {
when (this.activePack) {
"__recentSticker__" -> switchPackLayout(this.activePack)
in sortedPackNames -> switchPackLayout(this.activePack)
else -> switchPackLayout(sortedPackNames[0])
}
Expand Down
File renamed without changes.

0 comments on commit 00b2bbf

Please sign in to comment.