From 73f68fe0b776e1e5738930478ac60bc1e01a1ae6 Mon Sep 17 00:00:00 2001 From: Nuckyz <61953774+Nuckyz@users.noreply.github.com> Date: Sun, 4 May 2025 22:03:42 -0300 Subject: [PATCH 1/2] MutualGroupDMs: Fix overlap in V2 User Profile Modal --- src/plugins/mutualGroupDMs/index.tsx | 2 +- src/plugins/mutualGroupDMs/style.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/mutualGroupDMs/index.tsx b/src/plugins/mutualGroupDMs/index.tsx index 94811ea7..d88e1ee0 100644 --- a/src/plugins/mutualGroupDMs/index.tsx +++ b/src/plugins/mutualGroupDMs/index.tsx @@ -127,7 +127,7 @@ export default definePlugin({ // Make the tab bar item text smaller so our tab can fit. { match: /(\.tabBarItem.+?variant:)"heading-lg\/medium"/, - replace: '$1"heading-md/medium"' + replace: '$1"heading-sm/medium"' } ] }, diff --git a/src/plugins/mutualGroupDMs/style.css b/src/plugins/mutualGroupDMs/style.css index 698e21de..f0ad3c60 100644 --- a/src/plugins/mutualGroupDMs/style.css +++ b/src/plugins/mutualGroupDMs/style.css @@ -3,5 +3,5 @@ } .vc-mutual-gdms-modal-v2-tab-bar { - gap: 6px; + gap: 12px; } From 9a3c66abfda58cf868f5741f9954782dd74d98d5 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Mon, 5 May 2025 03:42:38 +0200 Subject: [PATCH 2/2] Remove NSFWGateBypass This plugin was always meant as a tool for adults who don't want to give Discord their birthday/ID. But obviously there's nothing stopping minors from using this which is troublesome legally and possibly could lead to me being legally liable for distributing it. Bypassing it is also becoming progressively harder with the changes Discord is making to abide with UK and Australia law. As such, I no longer feel comfortable providing this plugin. If you rely on this plugin (as an adult), find a suitable third party replacement from elsewhere. --- src/plugins/nsfwGateBypass/index.ts | 41 ----------------------------- 1 file changed, 41 deletions(-) delete mode 100644 src/plugins/nsfwGateBypass/index.ts diff --git a/src/plugins/nsfwGateBypass/index.ts b/src/plugins/nsfwGateBypass/index.ts deleted file mode 100644 index 6d0cb702..00000000 --- a/src/plugins/nsfwGateBypass/index.ts +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Vencord, a modification for Discord's desktop app - * Copyright (c) 2025 Vendicated and contributors - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . -*/ - -import { Devs } from "@utils/constants"; -import definePlugin from "@utils/types"; - -export default definePlugin({ - name: "NSFWGateBypass", - description: "Allows you to access NSFW channels without setting/verifying your age", - authors: [Devs.Commandtechno], - patches: [ - { - find: ".nsfwAllowed=null", - replacement: [ - { - match: /(?<=\.nsfwAllowed=)null!=.+?(?=[,;])/, - replace: "true", - }, - { - match: /(?<=\.ageVerificationStatus=)null!=.+?(?=[,;])/, - replace: "3", // VERIFIED_ADULT - } - ], - } - ], -});