From 753be0a111677c2da50364a921add84fbbb16065 Mon Sep 17 00:00:00 2001 From: thororen1234 <78185467+thororen1234@users.noreply.github.com> Date: Sat, 4 Jan 2025 14:44:37 -0500 Subject: [PATCH] Fixes --- README.md | 3 +- src/equicordplugins/furudoSpeak.dev/native.ts | 1 - src/equicordplugins/hideScreenShare/index.ts | 35 ------------------- 3 files changed, 1 insertion(+), 38 deletions(-) delete mode 100644 src/equicordplugins/hideScreenShare/index.ts diff --git a/README.md b/README.md index 49e056bf..e4c1ed19 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ You can join our [discord server](https://discord.gg/5Xh2W87egW) for commits, ch ### Extra included plugins
-150 additional plugins +151 additional plugins ### All Platforms - AllCallTimers by MaxHerbold & D3SOX @@ -69,7 +69,6 @@ You can join our [discord server](https://discord.gg/5Xh2W87egW) for commits, ch - GrammarFix by S€th - HideChatButtons by iamme - HideMessage by Hanzy -- HideScreenShare by thororen - HideServers by bepvte - HolyNotes by Wolfie - HomeTyping by Samwich diff --git a/src/equicordplugins/furudoSpeak.dev/native.ts b/src/equicordplugins/furudoSpeak.dev/native.ts index 881b741d..bcc01bb2 100644 --- a/src/equicordplugins/furudoSpeak.dev/native.ts +++ b/src/equicordplugins/furudoSpeak.dev/native.ts @@ -77,6 +77,5 @@ export async function transferMessage(message: MessageObject, model: string, api }); const res = await req.json(); const msg = res.choices[0].message.content; - // console.log(msg); return msg; } diff --git a/src/equicordplugins/hideScreenShare/index.ts b/src/equicordplugins/hideScreenShare/index.ts deleted file mode 100644 index 51c63790..00000000 --- a/src/equicordplugins/hideScreenShare/index.ts +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Vencord, a modification for Discord's desktop app - * Copyright (c) 2022 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 { EquicordDevs } from "@utils/constants"; -import definePlugin from "@utils/types"; - -export default definePlugin({ - name: "HideScreenShare", - description: "Hide your screen share by default", - authors: [EquicordDevs.thororen], - patches: [ - { - find: '"self-stream-hide"', - replacement: { - match: /return (\i)?(.*?onConfirm:\(\)=>((\i)\(!\i\)))/, - replace: "let $4 = null; if ($4 !== null) return $3; return $1$2" - } - } - ], -});