Compare commits

...

7 Commits

Author SHA1 Message Date
Alex Hart
51055fd2dc Bump version to 5.38.8 2022-05-25 10:45:50 -03:00
Alex Hart
dea0b24947 Revert "Updated language translations."
This reverts commit fe7f6fae8c.
2022-05-25 10:44:27 -03:00
Alex Hart
951d30c538 Bump version to 5.38.7 2022-05-25 10:33:27 -03:00
Alex Hart
fe7f6fae8c Updated language translations. 2022-05-25 10:31:28 -03:00
Alex Hart
926e3541e6 Fix touchdelegate RTL issue. 2022-05-25 10:21:42 -03:00
Cody Henthorne
5ec6f0a71f Bump version to 5.38.6 2022-05-23 22:01:23 -04:00
Cody Henthorne
40c1dd23da Fix font version check timeout. 2022-05-23 21:58:24 -04:00
3 changed files with 14 additions and 7 deletions

View File

@@ -64,14 +64,14 @@ ktlint {
}
def canonicalVersionCode = 1055
def canonicalVersionName = "5.38.5"
def canonicalVersionName = "5.38.8"
def postFixSize = 100
def abiPostFix = ['universal' : 0,
'armeabi-v7a' : 1,
'arm64-v8a' : 2,
'x86' : 3,
'x86_64' : 4]
def abiPostFix = ['universal' : 15,
'armeabi-v7a' : 16,
'arm64-v8a' : 17,
'x86' : 18,
'x86_64' : 19]
def keystores = [ 'debug' : loadKeystoreProperties('keystore.debug.properties') ]

View File

@@ -167,7 +167,13 @@ public final class ConversationListItem extends ConstraintLayout
super.onLayout(changed, left, top, right, bottom);
contactPhotoImage.getHitRect(newConversationAvatarTouchDelegateBounds);
newConversationAvatarTouchDelegateBounds.left = left;
if (getLayoutDirection() == LAYOUT_DIRECTION_LTR) {
newConversationAvatarTouchDelegateBounds.left = left;
} else {
newConversationAvatarTouchDelegateBounds.right = right;
}
newConversationAvatarTouchDelegateBounds.top = top;
newConversationAvatarTouchDelegateBounds.bottom = bottom;

View File

@@ -51,6 +51,7 @@ data class FontVersion(val id: Long, val path: String) {
writeVersionToDisk(context, fromNetwork) ?: NONE
} else {
Log.i(TAG, "Network version is the same as our local version.")
SignalStore.storyValues().lastFontVersionCheck = System.currentTimeMillis()
fromDisk
}
} else {