Better icon
|
@ -1,4 +1,9 @@
|
||||||
# Version 0.10.0 - 2020-03-??
|
# Version 0.10.1 - 2020-03-29
|
||||||
|
### Fixes:
|
||||||
|
- Fix a lazy loading bug
|
||||||
|
- Improve app icon
|
||||||
|
|
||||||
|
# Version 0.10.0 - 2020-03-29
|
||||||
### New features
|
### New features
|
||||||
- Voice messages
|
- Voice messages
|
||||||
- New message bubble design
|
- New message bubble design
|
||||||
|
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 2 KiB After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 4 KiB After Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 6 KiB After Width: | Height: | Size: 6.2 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 8.2 KiB |
BIN
assets/logo.png
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 114 KiB After Width: | Height: | Size: 68 KiB |
Before Width: | Height: | Size: 804 B After Width: | Height: | Size: 794 B |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 5 KiB After Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 5 KiB After Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 7.5 KiB After Width: | Height: | Size: 7.5 KiB |
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
Before Width: | Height: | Size: 6 KiB After Width: | Height: | Size: 6.1 KiB |
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 6.9 KiB |
|
@ -72,7 +72,7 @@ class _EncryptionButtonState extends State<EncryptionButton> {
|
||||||
.stream
|
.stream
|
||||||
.listen((s) => setState(() => null));
|
.listen((s) => setState(() => null));
|
||||||
return FutureBuilder<List<DeviceKeys>>(
|
return FutureBuilder<List<DeviceKeys>>(
|
||||||
future: widget.room.getUserDeviceKeys(),
|
future: widget.room.encrypted ? widget.room.getUserDeviceKeys() : null,
|
||||||
builder: (BuildContext context, snapshot) {
|
builder: (BuildContext context, snapshot) {
|
||||||
Color color;
|
Color color;
|
||||||
if (widget.room.encrypted && snapshot.hasData) {
|
if (widget.room.encrypted && snapshot.hasData) {
|
||||||
|
|
|
@ -85,7 +85,7 @@ class _ChatState extends State<_Chat> {
|
||||||
if (timeline.events.last.type != EventTypes.RoomCreate) {
|
if (timeline.events.last.type != EventTypes.RoomCreate) {
|
||||||
setState(() => this._loadingHistory = true);
|
setState(() => this._loadingHistory = true);
|
||||||
await timeline.requestHistory(historyCount: _loadHistoryCount);
|
await timeline.requestHistory(historyCount: _loadHistoryCount);
|
||||||
setState(() => this._loadingHistory = false);
|
if (mounted) setState(() => this._loadingHistory = false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -68,7 +68,7 @@ dev_dependencies:
|
||||||
|
|
||||||
flutter_icons:
|
flutter_icons:
|
||||||
android: "launcher_icon"
|
android: "launcher_icon"
|
||||||
ios: true
|
ios: false
|
||||||
image_path: "assets/logo.png"
|
image_path: "assets/logo.png"
|
||||||
|
|
||||||
# For information on the generic Dart part of this file, see the
|
# For information on the generic Dart part of this file, see the
|
||||||
|
|