From 23c9e2ce2212a03641cb524c931309c3ab113da4 Mon Sep 17 00:00:00 2001
From: sadan4 <117494111+sadan4@users.noreply.github.com>
Date: Sun, 24 Nov 2024 19:30:27 -0500
Subject: [PATCH 38/73] ShowHiddenThings: Allow opening mod view on yourself
(#3045)
---
src/plugins/showHiddenThings/index.ts | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/src/plugins/showHiddenThings/index.ts b/src/plugins/showHiddenThings/index.ts
index 9f6fd2a90..30edb2470 100644
--- a/src/plugins/showHiddenThings/index.ts
+++ b/src/plugins/showHiddenThings/index.ts
@@ -75,6 +75,15 @@ export default definePlugin({
replace: "$1$2arguments[0].member.highestRoleId]",
}
},
+ // allows you to open mod view on yourself
+ {
+ find: ".MEMBER_SAFETY,{modViewPanel:",
+ predicate: () => settings.store.showModView,
+ replacement: {
+ match: /\i(?=\?null)/,
+ replace: "false"
+ }
+ },
{
find: "prod_discoverable_guilds",
predicate: () => settings.store.disableDiscoveryFilters,
From e7a54b05872c24d63f64b258e73f807c1010d431 Mon Sep 17 00:00:00 2001
From: Mia Rodriguez <62818119+xNasuni@users.noreply.github.com>
Date: Sun, 24 Nov 2024 19:35:12 -0500
Subject: [PATCH 39/73] SilentTyping: Improve button visual look (#3026)
---
src/plugins/silentTyping/index.tsx | 14 +++++++++++---
1 file changed, 11 insertions(+), 3 deletions(-)
diff --git a/src/plugins/silentTyping/index.tsx b/src/plugins/silentTyping/index.tsx
index ad28999aa..d06ae8373 100644
--- a/src/plugins/silentTyping/index.tsx
+++ b/src/plugins/silentTyping/index.tsx
@@ -54,9 +54,17 @@ const SilentTypingToggle: ChatBarButton = ({ isMainChat }) => {
tooltip={isEnabled ? "Disable Silent Typing" : "Enable Silent Typing"}
onClick={toggle}
>
-