diff --git a/CHANGELOG.md b/CHANGELOG.md index c7946ec..801edbb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 0.17.0 - 2020-08-?? +### Fixes: +- Don't re-render the room list nearly as often, increasing performance + # Version 0.16.0 - 2020-07-24 ### Features - Implement web notifications diff --git a/lib/views/chat_list.dart b/lib/views/chat_list.dart index 93a78ab..e44828d 100644 --- a/lib/views/chat_list.dart +++ b/lib/views/chat_list.dart @@ -337,7 +337,11 @@ class _ChatListState extends State { (r) => r.isFirst), ), body: StreamBuilder( - stream: Matrix.of(context).client.onSync.stream, + stream: Matrix.of(context) + .client + .onSync + .stream + .where((s) => s.hasRoomUpdate), builder: (context, snapshot) { return FutureBuilder( future: waitForFirstSync(context), diff --git a/pubspec.lock b/pubspec.lock index ed38095..f83801f 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -159,8 +159,8 @@ packages: dependency: "direct main" description: path: "." - ref: ad8135990dcdc04ea0a650d08a681ebed27ef728 - resolved-ref: ad8135990dcdc04ea0a650d08a681ebed27ef728 + ref: "3fae58439bdc2100d26fbfb92a62c7fbb7b48903" + resolved-ref: "3fae58439bdc2100d26fbfb92a62c7fbb7b48903" url: "https://gitlab.com/famedly/famedlysdk.git" source: git version: "0.0.1" diff --git a/pubspec.yaml b/pubspec.yaml index 3311446..3d83f86 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -27,7 +27,7 @@ dependencies: famedlysdk: git: url: https://gitlab.com/famedly/famedlysdk.git - ref: ad8135990dcdc04ea0a650d08a681ebed27ef728 + ref: 3fae58439bdc2100d26fbfb92a62c7fbb7b48903 localstorage: ^3.0.1+4 bubble: ^1.1.9+1