Add blurhash support
This commit is contained in:
parent
a1c7349b3b
commit
5ba3680111
2 changed files with 3 additions and 0 deletions
|
|
@ -58,6 +58,7 @@ A simple and user-friendly Matrix client made with Flutter and the Matrix Dart S
|
||||||
- [ ] Jump to original message
|
- [ ] Jump to original message
|
||||||
- [x] Edits
|
- [x] Edits
|
||||||
- [x] Attachments
|
- [x] Attachments
|
||||||
|
- [x] Blurhashing
|
||||||
- [ ] Downloading attachments
|
- [ ] Downloading attachments
|
||||||
- [ ] Opening attachments in their own view
|
- [ ] Opening attachments in their own view
|
||||||
- [x] Mentions
|
- [x] Mentions
|
||||||
|
|
@ -87,6 +88,7 @@ A simple and user-friendly Matrix client made with Flutter and the Matrix Dart S
|
||||||
- [ ] Spam filtering
|
- [ ] Spam filtering
|
||||||
- [ ] Settings
|
- [ ] Settings
|
||||||
- [ ] Light/Dark mode
|
- [ ] Light/Dark mode
|
||||||
|
- [ ] Show media by default
|
||||||
- [ ] Dynamic Theming
|
- [ ] Dynamic Theming
|
||||||
- [ ] Devices
|
- [ ] Devices
|
||||||
- [ ] Viewing devices
|
- [ ] Viewing devices
|
||||||
|
|
|
||||||
|
|
@ -80,6 +80,7 @@ extension EventToMessage on Event {
|
||||||
source: (await getAttachmentUri()).toString(),
|
source: (await getAttachmentUri()).toString(),
|
||||||
replyToMessageId: replyId,
|
replyToMessageId: replyId,
|
||||||
deliveredAt: originServerTs,
|
deliveredAt: originServerTs,
|
||||||
|
blurhash: (event.content["info"] as Map?)?["xyz.amorgan.blurhash"],
|
||||||
),
|
),
|
||||||
MessageTypes.Audio => Message.audio(
|
MessageTypes.Audio => Message.audio(
|
||||||
metadata: metadata,
|
metadata: metadata,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue