build: Update matrix sdk and dependencies

pull/1532/head
Krille 2 months ago
parent 7aa960306e
commit c30e6c4aa2
No known key found for this signature in database
GPG Key ID: E067ECD60F1A0652

@ -1,2 +1,2 @@
FLUTTER_VERSION=3.27.0
FLUTTER_VERSION=3.27.1
JAVA_VERSION=17

@ -70,7 +70,9 @@ extension InitWithRestoreExtension on Client {
try {
await init(
onMigration: onMigration,
onInitStateChanged: (state) {
if (state == InitState.migratingDatabase) onMigration?.call();
},
waitForFirstSync: false,
waitUntilLoadCompletedLoaded: false,
);
@ -122,7 +124,9 @@ extension InitWithRestoreExtension on Client {
newUserID: sessionBackup.userId,
waitForFirstSync: false,
waitUntilLoadCompletedLoaded: false,
onMigration: onMigration,
onInitStateChanged: (state) {
if (state == InitState.migratingDatabase) onMigration?.call();
},
);
ClientManager.sendInitNotification(
l10n.initAppError,

@ -195,4 +195,10 @@ class VoipPlugin with WidgetsBindingObserver implements WebRTCDelegate {
@override
// TODO: implement keyProvider
EncryptionKeyProvider? get keyProvider => throw UnimplementedError();
@override
Future<void> registerListeners(CallSession session) {
// TODO: implement registerListeners
throw UnimplementedError();
}
}

@ -1159,10 +1159,10 @@ packages:
dependency: "direct main"
description:
name: matrix
sha256: "94a66e563b89fabbeb67f24428f05f4547c6ee98878ec20f647530cbfb6f04db"
sha256: de99186797fddbf309dae0d9b9b4d35b49ca10d7bb362727f7cd916ce71a77d7
url: "https://pub.dev"
source: hosted
version: "0.35.0"
version: "0.36.0"
meta:
dependency: transitive
description:

@ -62,7 +62,7 @@ dependencies:
just_audio: ^0.9.39
latlong2: ^0.9.1
linkify: ^5.0.0
matrix: ^0.35.0
matrix: ^0.36.0
mime: ^1.0.6
native_imaging: ^0.1.1
opus_caf_converter_dart: ^1.0.1

Loading…
Cancel
Save