From 75216ad833d75d9ca19ec6b1025b571af543cf44 Mon Sep 17 00:00:00 2001 From: thororen1234 <78185467+thororen1234@users.noreply.github.com> Date: Fri, 21 Mar 2025 12:44:17 -0400 Subject: [PATCH] Drop MoreThemes --- README.md | 3 +-- src/equicordplugins/moreThemes/index.tsx | 32 ------------------------ 2 files changed, 1 insertion(+), 34 deletions(-) delete mode 100644 src/equicordplugins/moreThemes/index.tsx diff --git a/README.md b/README.md index 707b27e7..7c8a3cf2 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
-165 additional plugins +164 additional plugins ### All Platforms - AllCallTimers by MaxHerbold & D3SOX @@ -104,7 +104,6 @@ You can join our [discord server](https://discord.gg/5Xh2W87egW) for commits, ch - MessageTranslate by Samwich - ModalFade by Kyuuhachi - MoreStickers by Leko & Arjix -- MoreThemes by Kyuuhachi - NeverPausePreviews by vappstar - NewPluginsManager by Sqaaakoi - NoAppsAllowed by kvba diff --git a/src/equicordplugins/moreThemes/index.tsx b/src/equicordplugins/moreThemes/index.tsx deleted file mode 100644 index 2e04dc8d..00000000 --- a/src/equicordplugins/moreThemes/index.tsx +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Vencord, a Discord client mod - * Copyright (c) 2025 Vendicated and contributors - * SPDX-License-Identifier: GPL-3.0-or-later - */ - -import { Devs } from "@utils/constants"; -import definePlugin from "@utils/types"; - -export default definePlugin({ - name: "MoreThemes", - description: "Enables Darker and Midnight themes", - authors: [Devs.Kyuuhachi], - - patches: [ - { // matches twice: the settings menu and the settings context menu - find: '("appearance_settings")', - replacement: { - match: /\("appearance_settings"\)/, - replace: "$&||true" - }, - all: true, - }, - { // make it actually save the setting instead of falling back to dark - find: ')("ThemeStore"))return', - replacement: { - match: /(?<=\)\("ThemeStore"\))(?=\)return)/, - replace: "&&false" - }, - } - ], -});