From 9eeeafccc482de948350e01f4811641d5b0ccaaf Mon Sep 17 00:00:00 2001 From: pimothyxd <29018740+pimothyxd@users.noreply.github.com> Date: Thu, 25 Dec 2025 00:31:54 +0100 Subject: [PATCH 1/2] refactor(twitch/chat): hide display names for mentioned international names --- src/app/chat/MessageTokenMention.vue | 1 + src/app/chat/UserTag.vue | 15 ++++++++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/src/app/chat/MessageTokenMention.vue b/src/app/chat/MessageTokenMention.vue index 63ee0734..0d1c981e 100644 --- a/src/app/chat/MessageTokenMention.vue +++ b/src/app/chat/MessageTokenMention.vue @@ -12,6 +12,7 @@ is-mention :hide-at="!hasAt" hide-badges + hide-intl /> diff --git a/src/app/chat/UserTag.vue b/src/app/chat/UserTag.vue index 64dd74b3..e53b1162 100644 --- a/src/app/chat/UserTag.vue +++ b/src/app/chat/UserTag.vue @@ -47,7 +47,9 @@ @ {{ user.displayName }} - ({{ user.username }}) + + ({{ user.username }}) @@ -87,6 +89,7 @@ const props = withDefaults( isMention?: boolean; hideAt?: boolean; hideBadges?: boolean; + hideIntl?: boolean; clickable?: boolean; badges?: Record; }>(), @@ -208,6 +211,16 @@ const stop = watch( .seventv-chat-user-username { font-weight: 700; + + .seventv-chat-user-username-login { + font-weight: initial; + } + + > span:not([data-seventv-painted-text]) { + .seventv-chat-user-username-login { + opacity: 0.6; + } + } } } From fba7a75a269c2b28cc0a835f2f7e8f3397e197e1 Mon Sep 17 00:00:00 2001 From: pimothyxd <29018740+pimothyxd@users.noreply.github.com> Date: Thu, 25 Dec 2025 00:32:02 +0100 Subject: [PATCH 2/2] chore: update changelog --- CHANGELOG-nightly.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG-nightly.md b/CHANGELOG-nightly.md index 5e304946..486126de 100644 --- a/CHANGELOG-nightly.md +++ b/CHANGELOG-nightly.md @@ -1,3 +1,7 @@ +### 3.1.15.2000 + +- Fixed an issue causing international names to display for mentions + ### 3.1.15.1000 - Added required Firefox built-in consent metadata to the manifest