Beta release 3.9.5

This commit is contained in:
Thomas 2022-12-05 17:34:37 +01:00
parent 2cb08046f5
commit 83638e9a92
4 changed files with 12 additions and 3 deletions

View File

@ -13,8 +13,8 @@ android {
defaultConfig {
minSdk 21
targetSdk 32
versionCode 439
versionName "3.9.4"
versionCode 440
versionName "3.9.5"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
flavorDimensions "default"

View File

@ -1,4 +1,9 @@
[
{
"version": "3.9.5",
"code": "440",
"note": "Fixed:\n- Custom emoji are not always displayed\n- Jumps in timeline when using \"fit preview images\"\n- Dark theme: timeline buttons without toggle"
},
{
"version": "3.9.4",
"code": "439",

View File

@ -125,7 +125,7 @@ public class CustomEmoji extends ReplacementSpan {
if (view != null) {
view.invalidate();
}
if (callback != null) {
if (callback != null && !callbackCalled) {
callbackCalled = true;
callback.emojiFetched();
}

View File

@ -0,0 +1,4 @@
Fixed:
- Custom emoji are not always displayed
- Jumps in timeline when using "fit preview images"
- Dark theme: timeline buttons without toggle