Compare commits

..

No commits in common. "8dff27c56ffd1f94afe4901a76c9b676251808a0" and "06d6bf0cbc4dd3e855f27a4bf806bef7c5e8bcba" have entirely different histories.

2 changed files with 5 additions and 4 deletions

View file

@ -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] Receiving - [x] Recieving
- [x] Plain text - [x] Plain text
- [x] Per message profiles - [x] Per message profiles
- [x] HTML - [x] HTML
@ -87,6 +87,8 @@ 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
@ -100,7 +102,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, message] - [ ] Copy link to [room, space]
- [ ] Reporting - [ ] Reporting
- [x] Events - [x] Events
- [ ] Rooms - [ ] Rooms
@ -108,7 +110,6 @@ 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

View file

@ -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?.canonicalAlias ?? room.metadata?.id})", id: "[#${room.metadata?.name ?? "Unnamed Room"}](https://matrix.to/#/${room.metadata?.id})",
name: name:
(room.metadata?.canonicalAlias ?? (room.metadata?.canonicalAlias ??
room.metadata?.id) room.metadata?.id)