chore: Bump version
This commit is contained in:
parent
c66d2edb5e
commit
2f1696bff8
|
|
@ -1,3 +1,6 @@
|
||||||
|
## [0.15.9] - 14th Dec 2022
|
||||||
|
- refactor: Key manager megolm handling to make key generation more efficient
|
||||||
|
|
||||||
## [0.15.8] - 12th Dec 2022
|
## [0.15.8] - 12th Dec 2022
|
||||||
|
|
||||||
- fix: leaved direct chat name (Reza)
|
- fix: leaved direct chat name (Reza)
|
||||||
|
|
|
||||||
|
|
@ -383,14 +383,13 @@ class KeyManager {
|
||||||
.map((e) => e.key))
|
.map((e) => e.key))
|
||||||
: <String>{};
|
: <String>{};
|
||||||
|
|
||||||
// check if a device got removed
|
// check if a device got removed
|
||||||
if (oldDeviceIds.difference(newDeviceIds).isNotEmpty) {
|
if (oldDeviceIds.difference(newDeviceIds).isNotEmpty) {
|
||||||
print("Device deleted, rotating megolm session");
|
|
||||||
wipe = true;
|
wipe = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// check if any new devices need keys
|
// check if any new devices need keys
|
||||||
final newDevices = newDeviceIds.difference(oldDeviceIds);
|
final newDevices = newDeviceIds.difference(oldDeviceIds);
|
||||||
if (newDeviceIds.isNotEmpty) {
|
if (newDeviceIds.isNotEmpty) {
|
||||||
devicesToReceive.addAll(newDeviceKeys.where(
|
devicesToReceive.addAll(newDeviceKeys.where(
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
name: matrix
|
name: matrix
|
||||||
description: Matrix Dart SDK
|
description: Matrix Dart SDK
|
||||||
version: 0.15.8
|
version: 0.15.9
|
||||||
homepage: https://famedly.com
|
homepage: https://famedly.com
|
||||||
repository: https://gitlab.com/famedly/company/frontend/famedlysdk.git
|
repository: https://gitlab.com/famedly/company/frontend/famedlysdk.git
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue