Compare commits

...

2 Commits

Author SHA1 Message Date
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
2 changed files with 7 additions and 6 deletions

View File

@@ -64,14 +64,14 @@ ktlint {
}
def canonicalVersionCode = 1055
def canonicalVersionName = "5.38.5"
def canonicalVersionName = "5.38.6"
def postFixSize = 100
def abiPostFix = ['universal' : 0,
'armeabi-v7a' : 1,
'arm64-v8a' : 2,
'x86' : 3,
'x86_64' : 4]
def abiPostFix = ['universal' : 5,
'armeabi-v7a' : 6,
'arm64-v8a' : 7,
'x86' : 8,
'x86_64' : 9]
def keystores = [ 'debug' : loadKeystoreProperties('keystore.debug.properties') ]

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 {