diff --git a/README.md b/README.md index fda0e4e..1e78900 100644 --- a/README.md +++ b/README.md @@ -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) - [ ] Custom emojis/stickers - [ ] GIFs using Gomuks' GIF proxies - - [x] Receiving + - [x] Recieving - [x] Plain text - [x] Per message profiles - [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) - [x] Matrix URIs - [x] Matrix.to links + - [ ] Do some fancy fetching to get nice names + - [ ] Make clickable - [x] Custom emojis/stickers - [x] History loading - [x] Backwards @@ -100,7 +102,7 @@ A simple and user-friendly Matrix client made with Flutter and a Gomuks backend. - [ ] Threads - [x] Profile popouts - [ ] Working actions -- [ ] Copy link to [room, space, message] +- [ ] Copy link to [room, space] - [ ] Reporting - [x] Events - [ ] 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) - [ ] Invites - [ ] Settings - - [ ] Matrix: URIs vs Matrix.to links - [ ] Light/Dark mode - [ ] SSD or CSD - [ ] Show media by default diff --git a/lib/widgets/chat_page/composer/mention_overlay.dart b/lib/widgets/chat_page/composer/mention_overlay.dart index 8013d36..a78bdd1 100644 --- a/lib/widgets/chat_page/composer/mention_overlay.dart +++ b/lib/widgets/chat_page/composer/mention_overlay.dart @@ -94,7 +94,7 @@ class MentionOverlay extends ConsumerWidget { ? null : Text(room.metadata!.topic!, maxLines: 1), 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: (room.metadata?.canonicalAlias ?? room.metadata?.id)