Merge branch 'krille/nullsafestable' into 'main'
fix: Add missing calcDisplayname global rules to client constructor See merge request famedly/company/frontend/famedlysdk!920
This commit is contained in:
commit
faed64cfde
|
|
@ -1,3 +1,7 @@
|
||||||
|
## [0.7.0] - 03nd Dec 2021
|
||||||
|
- feat: Support for webRTC
|
||||||
|
- fix: Add missing calcDisplayname global rules to client constructor
|
||||||
|
|
||||||
## [0.7.0-nullsafety.10] - 26nd Nov 2021
|
## [0.7.0-nullsafety.10] - 26nd Nov 2021
|
||||||
- feat: Migrate olm sessions on database migration
|
- feat: Migrate olm sessions on database migration
|
||||||
- chore: Enable E2EE recovery by default
|
- chore: Enable E2EE recovery by default
|
||||||
|
|
|
||||||
|
|
@ -91,9 +91,9 @@ class Client extends MatrixApi {
|
||||||
|
|
||||||
bool requestHistoryOnLimitedTimeline;
|
bool requestHistoryOnLimitedTimeline;
|
||||||
|
|
||||||
bool formatLocalpart = true;
|
final bool formatLocalpart;
|
||||||
|
|
||||||
bool mxidLocalPartFallback = true;
|
final bool mxidLocalPartFallback;
|
||||||
|
|
||||||
// For CommandsClientExtension
|
// For CommandsClientExtension
|
||||||
final Map<String, FutureOr<String?> Function(CommandArgs)> commands = {};
|
final Map<String, FutureOr<String?> Function(CommandArgs)> commands = {};
|
||||||
|
|
@ -165,6 +165,8 @@ class Client extends MatrixApi {
|
||||||
this.sendMessageTimeoutSeconds = 60,
|
this.sendMessageTimeoutSeconds = 60,
|
||||||
this.requestHistoryOnLimitedTimeline = false,
|
this.requestHistoryOnLimitedTimeline = false,
|
||||||
Set<String>? supportedLoginTypes,
|
Set<String>? supportedLoginTypes,
|
||||||
|
this.mxidLocalPartFallback = true,
|
||||||
|
this.formatLocalpart = true,
|
||||||
this.compute,
|
this.compute,
|
||||||
Filter? syncFilter,
|
Filter? syncFilter,
|
||||||
@deprecated bool? debug,
|
@deprecated bool? debug,
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
name: matrix
|
name: matrix
|
||||||
description: Matrix Dart SDK
|
description: Matrix Dart SDK
|
||||||
version: 0.7.0-nullsafety.10
|
version: 0.7.0
|
||||||
homepage: https://famedly.com
|
homepage: https://famedly.com
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue