mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-21 17:05:39 +03:00
Merge tag 'v1.1.5' into sc
Change-Id: I263852c42cfa21935890bee435f063d7fa43edfa
This commit is contained in:
commit
28c5f036c8
9 changed files with 75 additions and 41 deletions
|
@ -1,3 +1,10 @@
|
|||
Changes in Element 1.1.5 (2021-XX-XX)
|
||||
===================================================
|
||||
|
||||
Bugfix 🐛:
|
||||
- Fix crash during Realm migration
|
||||
- Fix crash when playing video (#3179)
|
||||
|
||||
Changes in Element 1.1.4 (2021-04-09)
|
||||
===================================================
|
||||
|
||||
|
|
2
fastlane/metadata/android/en-US/changelogs/40101050.txt
Normal file
2
fastlane/metadata/android/en-US/changelogs/40101050.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Main changes in this version: hot fixes for 1.1.4
|
||||
Full changelog: https://github.com/vector-im/element-android/releases/tag/v1.1.5
|
|
@ -6,10 +6,13 @@ apply plugin: 'realm-android'
|
|||
|
||||
buildscript {
|
||||
repositories {
|
||||
mavenCentral()
|
||||
// mavenCentral()
|
||||
//noinspection GrDeprecatedAPIUsage
|
||||
jcenter()
|
||||
}
|
||||
dependencies {
|
||||
classpath "io.realm:realm-gradle-plugin:10.4.0"
|
||||
// Stick to this version until https://github.com/realm/realm-java/issues/7402 is fixed
|
||||
classpath "io.realm:realm-gradle-plugin:10.3.1"
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ kapt {
|
|||
// Note: 2 digits max for each value
|
||||
ext.versionMajor = 1
|
||||
ext.versionMinor = 1
|
||||
ext.versionPatch = 4
|
||||
ext.versionPatch = 5
|
||||
|
||||
ext.scVersion = 30
|
||||
|
||||
|
|
|
@ -28,8 +28,10 @@ import com.bumptech.glide.signature.ObjectKey
|
|||
import im.vector.app.core.extensions.vectorComponent
|
||||
import im.vector.app.core.files.LocalFilesHelper
|
||||
import im.vector.app.features.media.ImageContentRenderer
|
||||
import kotlinx.coroutines.Dispatchers
|
||||
import kotlinx.coroutines.GlobalScope
|
||||
import kotlinx.coroutines.launch
|
||||
import kotlinx.coroutines.withContext
|
||||
import okhttp3.OkHttpClient
|
||||
import timber.log.Timber
|
||||
import java.io.IOException
|
||||
|
@ -121,10 +123,12 @@ class VectorGlideDataFetcher(context: Context,
|
|||
url = data.url,
|
||||
elementToDecrypt = data.elementToDecrypt)
|
||||
}
|
||||
result.fold(
|
||||
{ callback.onDataReady(it.inputStream()) },
|
||||
{ callback.onLoadFailed(it as? Exception ?: IOException(it.localizedMessage)) }
|
||||
)
|
||||
withContext(Dispatchers.Main) {
|
||||
result.fold(
|
||||
{ callback.onDataReady(it.inputStream()) },
|
||||
{ callback.onLoadFailed(it as? Exception ?: IOException(it.localizedMessage)) }
|
||||
)
|
||||
}
|
||||
}
|
||||
// val url = contentUrlResolver.resolveFullSize(data.url)
|
||||
// ?: return
|
||||
|
|
|
@ -31,8 +31,10 @@ import im.vector.lib.attachmentviewer.AttachmentInfo
|
|||
import im.vector.lib.attachmentviewer.AttachmentSourceProvider
|
||||
import im.vector.lib.attachmentviewer.ImageLoaderTarget
|
||||
import im.vector.lib.attachmentviewer.VideoLoaderTarget
|
||||
import kotlinx.coroutines.Dispatchers
|
||||
import kotlinx.coroutines.GlobalScope
|
||||
import kotlinx.coroutines.launch
|
||||
import kotlinx.coroutines.withContext
|
||||
import org.matrix.android.sdk.api.session.events.model.isVideoMessage
|
||||
import org.matrix.android.sdk.api.session.file.FileService
|
||||
import org.matrix.android.sdk.api.session.room.timeline.TimelineEvent
|
||||
|
@ -162,10 +164,12 @@ abstract class BaseAttachmentProvider<Type>(
|
|||
elementToDecrypt = data.elementToDecrypt
|
||||
)
|
||||
}
|
||||
result.fold(
|
||||
{ target.onVideoFileReady(info.uid, it) },
|
||||
{ target.onVideoFileLoadFailed(info.uid) }
|
||||
)
|
||||
withContext(Dispatchers.Main) {
|
||||
result.fold(
|
||||
{ target.onVideoFileReady(info.uid, it) },
|
||||
{ target.onVideoFileLoadFailed(info.uid) }
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -19,8 +19,10 @@ package im.vector.app.features.media
|
|||
import im.vector.app.core.date.VectorDateFormatter
|
||||
import im.vector.app.core.resources.StringProvider
|
||||
import im.vector.lib.attachmentviewer.AttachmentInfo
|
||||
import kotlinx.coroutines.Dispatchers
|
||||
import kotlinx.coroutines.GlobalScope
|
||||
import kotlinx.coroutines.launch
|
||||
import kotlinx.coroutines.withContext
|
||||
import org.matrix.android.sdk.api.session.file.FileService
|
||||
import org.matrix.android.sdk.api.session.room.Room
|
||||
import org.matrix.android.sdk.api.session.room.timeline.TimelineEvent
|
||||
|
@ -87,7 +89,9 @@ class DataAttachmentRoomProvider(
|
|||
elementToDecrypt = item.elementToDecrypt
|
||||
)
|
||||
}
|
||||
callback(result.getOrNull())
|
||||
withContext(Dispatchers.Main) {
|
||||
callback(result.getOrNull())
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -19,8 +19,10 @@ package im.vector.app.features.media
|
|||
import im.vector.app.core.date.VectorDateFormatter
|
||||
import im.vector.app.core.resources.StringProvider
|
||||
import im.vector.lib.attachmentviewer.AttachmentInfo
|
||||
import kotlinx.coroutines.Dispatchers
|
||||
import kotlinx.coroutines.GlobalScope
|
||||
import kotlinx.coroutines.launch
|
||||
import kotlinx.coroutines.withContext
|
||||
import org.matrix.android.sdk.api.session.events.model.toModel
|
||||
import org.matrix.android.sdk.api.session.file.FileService
|
||||
import org.matrix.android.sdk.api.session.room.model.message.MessageContent
|
||||
|
@ -134,7 +136,9 @@ class RoomEventsAttachmentProvider(
|
|||
url = messageContent.getFileUrl(),
|
||||
elementToDecrypt = messageContent.encryptedFileInfo?.toElementToDecrypt())
|
||||
}
|
||||
callback(result.getOrNull())
|
||||
withContext(Dispatchers.Main) {
|
||||
callback(result.getOrNull())
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -25,8 +25,10 @@ import im.vector.app.R
|
|||
import im.vector.app.core.di.ActiveSessionHolder
|
||||
import im.vector.app.core.error.ErrorFormatter
|
||||
import im.vector.app.core.files.LocalFilesHelper
|
||||
import kotlinx.coroutines.Dispatchers
|
||||
import kotlinx.coroutines.GlobalScope
|
||||
import kotlinx.coroutines.launch
|
||||
import kotlinx.coroutines.withContext
|
||||
import kotlinx.parcelize.Parcelize
|
||||
import org.matrix.android.sdk.internal.crypto.attachments.ElementToDecrypt
|
||||
import timber.log.Timber
|
||||
|
@ -83,21 +85,23 @@ class VideoContentRenderer @Inject constructor(private val localFilesHelper: Loc
|
|||
url = data.url,
|
||||
elementToDecrypt = data.elementToDecrypt)
|
||||
}
|
||||
result.fold(
|
||||
{ data ->
|
||||
thumbnailView.isVisible = false
|
||||
loadingView.isVisible = false
|
||||
videoView.isVisible = true
|
||||
withContext(Dispatchers.Main) {
|
||||
result.fold(
|
||||
{ data ->
|
||||
thumbnailView.isVisible = false
|
||||
loadingView.isVisible = false
|
||||
videoView.isVisible = true
|
||||
|
||||
videoView.setVideoPath(data.path)
|
||||
videoView.start()
|
||||
},
|
||||
{
|
||||
loadingView.isVisible = false
|
||||
errorView.isVisible = true
|
||||
errorView.text = errorFormatter.toHumanReadable(it)
|
||||
}
|
||||
)
|
||||
videoView.setVideoPath(data.path)
|
||||
videoView.start()
|
||||
},
|
||||
{
|
||||
loadingView.isVisible = false
|
||||
errorView.isVisible = true
|
||||
errorView.text = errorFormatter.toHumanReadable(it)
|
||||
}
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
@ -124,21 +128,23 @@ class VideoContentRenderer @Inject constructor(private val localFilesHelper: Loc
|
|||
url = data.url,
|
||||
elementToDecrypt = null)
|
||||
}
|
||||
result.fold(
|
||||
{ data ->
|
||||
thumbnailView.isVisible = false
|
||||
loadingView.isVisible = false
|
||||
videoView.isVisible = true
|
||||
withContext(Dispatchers.Main) {
|
||||
result.fold(
|
||||
{ data ->
|
||||
thumbnailView.isVisible = false
|
||||
loadingView.isVisible = false
|
||||
videoView.isVisible = true
|
||||
|
||||
videoView.setVideoPath(data.path)
|
||||
videoView.start()
|
||||
},
|
||||
{
|
||||
loadingView.isVisible = false
|
||||
errorView.isVisible = true
|
||||
errorView.text = errorFormatter.toHumanReadable(it)
|
||||
}
|
||||
)
|
||||
videoView.setVideoPath(data.path)
|
||||
videoView.start()
|
||||
},
|
||||
{
|
||||
loadingView.isVisible = false
|
||||
errorView.isVisible = true
|
||||
errorView.text = errorFormatter.toHumanReadable(it)
|
||||
}
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue