Merge branch 'krille/version' into 'main'
Krille/version See merge request famedly/company/frontend/famedlysdk!1147
This commit is contained in:
commit
0983196173
|
|
@ -1,3 +1,12 @@
|
|||
## [0.14.2] - 18th Oct 2022
|
||||
- Improve ice connection speed. (Duan Weiwei)
|
||||
- chore: fix exception test after api_lite update (Nicolas Werner)
|
||||
- feat: Add getter for own unverified devices (Christian Pauly)
|
||||
- feat: Support evaluating pushrules (Nicolas Werner)
|
||||
- feat: implement expire_ts in group calls and provide methods to terminate stale calls (td)
|
||||
- fix: files get needlessly lowercased (Nicolas Werner)
|
||||
- refactor: Use DateTime method instead of comparing milliseconds (Christian Pauly)
|
||||
|
||||
## [0.14.1] - 20th Sep 2022
|
||||
- chore: Fire events by default during hangup. (cloudwebrtc)
|
||||
- chore: Properly close usermedia/screen stream for 1v1/group calls. (cloudwebrtc)
|
||||
|
|
|
|||
|
|
@ -34,7 +34,6 @@ import 'package:matrix/src/models/timeline_chunk.dart';
|
|||
import 'package:matrix/src/utils/cached_stream_controller.dart';
|
||||
import 'package:matrix/src/utils/compute_callback.dart';
|
||||
import 'package:matrix/src/utils/multilock.dart';
|
||||
import 'package:matrix/src/utils/pushrule_evaluator.dart';
|
||||
import 'package:matrix/src/utils/run_benchmarked.dart';
|
||||
import 'package:matrix/src/utils/run_in_root.dart';
|
||||
import 'package:matrix/src/utils/sync_update_item_count.dart';
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
name: matrix
|
||||
description: Matrix Dart SDK
|
||||
version: 0.14.1
|
||||
version: 0.14.2
|
||||
homepage: https://famedly.com
|
||||
repository: https://gitlab.com/famedly/company/frontend/famedlysdk.git
|
||||
|
||||
|
|
|
|||
|
|
@ -17,16 +17,12 @@
|
|||
*/
|
||||
|
||||
import 'dart:convert';
|
||||
import 'dart:typed_data';
|
||||
|
||||
import 'package:olm/olm.dart' as olm;
|
||||
import 'package:test/test.dart';
|
||||
|
||||
import 'package:matrix/encryption.dart';
|
||||
import 'package:matrix/matrix.dart';
|
||||
import 'package:matrix/src/models/timeline_chunk.dart';
|
||||
import 'fake_client.dart';
|
||||
import 'fake_matrix_api.dart';
|
||||
|
||||
void main() {
|
||||
/// All Tests related to the Event
|
||||
|
|
|
|||
Loading…
Reference in New Issue