Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG-nightly.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 3.1.21.1000

- Fixed sidebar tooltip overflowing when stream title has no whitespace

### 3.1.20.1000

- Fixed some lint issues
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### 3.1.18

- Fixed 7TV emotes not showing in Kick chat due to a Kick UI change affecting the username element selector

### 3.1.17

- Fixed "Hide Bits Buttons" setting not working due to Twitch UI changes
### 3.1.20

- Fixed some lint issues
Expand Down
56 changes: 56 additions & 0 deletions rg
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
commit 2354f47c5b7547fd1527481a524ce31430cd74ff (upstream/Fix/ffz-conflict)
Author: moath alayel <57598907+ftk789@users.noreply.github.com>
Date: Thu Apr 2 14:03:18 2026 +0300

Fixed conflict with ffz

diff --git a/CHANGELOG-nightly.md b/CHANGELOG-nightly.md
index 65e04d9..6deb39b 100644
--- a/CHANGELOG-nightly.md
+++ b/CHANGELOG-nightly.md
@@ -1,3 +1,14 @@
+### 3.1.18.1000
+
+- Fixed a conflict issue with 7TV extension and FFZ running at the same time
+
+### 3.1.17.1000
+
+- April fools effects joke 2026
+- Fixed steam latency information not being displayed correctly
+- Added initial Lead Moderator functionallity
+- Fixed other small bugs
+
### 3.1.16.2000

- Updated Firefox extension URL in onboarding
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1749794..b16c1a0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,14 @@
+### 3.1.18
+
+- Fixed a conflict issue with 7TV extension and FFZ extension running at the same time
+
+### 3.1.17
+
+- April fools effects joke 2026
+- Fixed steam latency information not being displayed correctly
+- Added initial Lead Moderator functionallity
+- Fixed other small bugs
+
### 3.1.16

- Fixed emote menu not showing emotes with same name but different casing
diff --git a/src/site/twitch.tv/modules/chat/ChatModule.vue b/src/site/twitch.tv/modules/chat/ChatModule.vue
index 87d9606..0f14225 100644
--- a/src/site/twitch.tv/modules/chat/ChatModule.vue
+++ b/src/site/twitch.tv/modules/chat/ChatModule.vue
@@ -60,6 +60,7 @@ const chatController = useComponentHook<Twitch.ChatControllerComponent>(
predicate: (n) => n.pushMessage && n.props?.messageHandlerAPI,
},
{
+ // new hook method
hooks: {
update(inst) {
shouldMount.set(inst, !!inst.component.props.channelID);
3 changes: 3 additions & 0 deletions src/common/Logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ export class Logger {
}

private print(type: LogType, text: string[], extraCSS: string[], objects?: object[]): void {
if (import.meta.env.MODE === "production" && (type === "info" || type === "debug")) {
return;
}
if (this.pipe) {
this.pipe(type, text, extraCSS, objects);
return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ export const config = [
}

.seventv-hide-bits-buttons {
button[aria-label="Bits and Points Balances"],
button[data-a-target="bits-button"],
button[data-a-target="top-nav-get-bits-button"] {
display: none !important;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,5 +176,6 @@ onUnmounted(() => {
background-color: var(--color-background-placeholder);
background-size: contain;
background-position: center;
word-break: break-word;
}
</style>
Loading