Compare commits
2 commits
06d6bf0cbc
...
8dff27c56f
| Author | SHA1 | Date | |
|---|---|---|---|
|
8dff27c56f |
|||
|
c857b89899 |
2 changed files with 4 additions and 5 deletions
|
|
@ -63,7 +63,7 @@ A simple and user-friendly Matrix client made with Flutter and a Gomuks backend.
|
||||||
- [ ] Inline emoji picker (Putting this here since it'll be implemented the same way as mentions)
|
- [ ] Inline emoji picker (Putting this here since it'll be implemented the same way as mentions)
|
||||||
- [ ] Custom emojis/stickers
|
- [ ] Custom emojis/stickers
|
||||||
- [ ] GIFs using Gomuks' GIF proxies
|
- [ ] GIFs using Gomuks' GIF proxies
|
||||||
- [x] Recieving
|
- [x] Receiving
|
||||||
- [x] Plain text
|
- [x] Plain text
|
||||||
- [x] Per message profiles
|
- [x] Per message profiles
|
||||||
- [x] HTML
|
- [x] HTML
|
||||||
|
|
@ -87,8 +87,6 @@ A simple and user-friendly Matrix client made with Flutter and a Gomuks backend.
|
||||||
- [ ] Plain text (not sure if I want to add this or not, I probably won't unless there's interest)
|
- [ ] Plain text (not sure if I want to add this or not, I probably won't unless there's interest)
|
||||||
- [x] Matrix URIs
|
- [x] Matrix URIs
|
||||||
- [x] Matrix.to links
|
- [x] Matrix.to links
|
||||||
- [ ] Do some fancy fetching to get nice names
|
|
||||||
- [ ] Make clickable
|
|
||||||
- [x] Custom emojis/stickers
|
- [x] Custom emojis/stickers
|
||||||
- [x] History loading
|
- [x] History loading
|
||||||
- [x] Backwards
|
- [x] Backwards
|
||||||
|
|
@ -102,7 +100,7 @@ A simple and user-friendly Matrix client made with Flutter and a Gomuks backend.
|
||||||
- [ ] Threads
|
- [ ] Threads
|
||||||
- [x] Profile popouts
|
- [x] Profile popouts
|
||||||
- [ ] Working actions
|
- [ ] Working actions
|
||||||
- [ ] Copy link to [room, space]
|
- [ ] Copy link to [room, space, message]
|
||||||
- [ ] Reporting
|
- [ ] Reporting
|
||||||
- [x] Events
|
- [x] Events
|
||||||
- [ ] Rooms
|
- [ ] Rooms
|
||||||
|
|
@ -110,6 +108,7 @@ A simple and user-friendly Matrix client made with Flutter and a Gomuks backend.
|
||||||
- [ ] Group calls using [MSC4195](https://github.com/matrix-org/matrix-spec-proposals/pull/4195)
|
- [ ] Group calls using [MSC4195](https://github.com/matrix-org/matrix-spec-proposals/pull/4195)
|
||||||
- [ ] Invites
|
- [ ] Invites
|
||||||
- [ ] Settings
|
- [ ] Settings
|
||||||
|
- [ ] Matrix: URIs vs Matrix.to links
|
||||||
- [ ] Light/Dark mode
|
- [ ] Light/Dark mode
|
||||||
- [ ] SSD or CSD
|
- [ ] SSD or CSD
|
||||||
- [ ] Show media by default
|
- [ ] Show media by default
|
||||||
|
|
|
||||||
|
|
@ -94,7 +94,7 @@ class MentionOverlay extends ConsumerWidget {
|
||||||
? null
|
? null
|
||||||
: Text(room.metadata!.topic!, maxLines: 1),
|
: Text(room.metadata!.topic!, maxLines: 1),
|
||||||
onTap: () => addTag(
|
onTap: () => addTag(
|
||||||
id: "[#${room.metadata?.name ?? "Unnamed Room"}](https://matrix.to/#/${room.metadata?.id})",
|
id: "[#${room.metadata?.name ?? "Unnamed Room"}](https://matrix.to/#/${room.metadata?.canonicalAlias ?? room.metadata?.id})",
|
||||||
name:
|
name:
|
||||||
(room.metadata?.canonicalAlias ??
|
(room.metadata?.canonicalAlias ??
|
||||||
room.metadata?.id)
|
room.metadata?.id)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue