From 3cdffe444eebab83cb6400a8788871c8e523891a Mon Sep 17 00:00:00 2001 From: Vendicated Date: Sun, 29 Jan 2023 00:09:17 +0100 Subject: chore: Fix inconsistent file name casing --- src/plugins/BetterNotes.ts | 61 ------------------------------------- src/plugins/TimeBarAllActivities.ts | 35 --------------------- src/plugins/betterNotes.ts | 61 +++++++++++++++++++++++++++++++++++++ src/plugins/timeBarAllActivities.ts | 35 +++++++++++++++++++++ 4 files changed, 96 insertions(+), 96 deletions(-) delete mode 100644 src/plugins/BetterNotes.ts delete mode 100644 src/plugins/TimeBarAllActivities.ts create mode 100644 src/plugins/betterNotes.ts create mode 100644 src/plugins/timeBarAllActivities.ts (limited to 'src/plugins') diff --git a/src/plugins/BetterNotes.ts b/src/plugins/BetterNotes.ts deleted file mode 100644 index 4184259..0000000 --- a/src/plugins/BetterNotes.ts +++ /dev/null @@ -1,61 +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 { Settings } from "@api/settings"; -import { Devs } from "@utils/constants"; -import { makeLazy } from "@utils/misc"; -import definePlugin, { OptionType } from "@utils/types"; - -export default definePlugin({ - name: "BetterNotesBox", - description: "Hide notes or disable spellcheck (Configure in settings!!)", - authors: [Devs.Ven], - - patches: [ - { - find: "hideNote:", - all: true, - predicate: makeLazy(() => Vencord.Settings.plugins.BetterNotesBox.hide), - replacement: { - match: /hideNote:.+?(?=[,}])/g, - replace: "hideNote:true", - } - }, { - find: "Messages.NOTE_PLACEHOLDER", - replacement: { - match: /\.NOTE_PLACEHOLDER,/, - replace: "$&spellCheck:!Vencord.Settings.plugins.BetterNotesBox.noSpellCheck," - } - } - ], - - options: { - hide: { - type: OptionType.BOOLEAN, - description: "Hide notes", - default: false, - restartNeeded: true - }, - noSpellCheck: { - type: OptionType.BOOLEAN, - description: "Disable spellcheck in notes", - disabled: () => Settings.plugins.BetterNotesBox.hide, - default: false - } - } -}); diff --git a/src/plugins/TimeBarAllActivities.ts b/src/plugins/TimeBarAllActivities.ts deleted file mode 100644 index 223f182..0000000 --- a/src/plugins/TimeBarAllActivities.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 { Devs } from "@utils/constants"; -import definePlugin from "@utils/types"; - -export default definePlugin({ - name: "TimeBarAllActivities", - description: "Adds the Spotify time bar to all activities if they have start and end timestamps", - authors: [Devs.obscurity], - patches: [ - { - find: "renderTimeBar=function", - replacement: { - match: /renderTimeBar=function\((.{1,3})\){.{0,50}?var/, - replace: "renderTimeBar=function($1){var" - } - } - ], -}); diff --git a/src/plugins/betterNotes.ts b/src/plugins/betterNotes.ts new file mode 100644 index 0000000..4184259 --- /dev/null +++ b/src/plugins/betterNotes.ts @@ -0,0 +1,61 @@ +/* + * 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 { Settings } from "@api/settings"; +import { Devs } from "@utils/constants"; +import { makeLazy } from "@utils/misc"; +import definePlugin, { OptionType } from "@utils/types"; + +export default definePlugin({ + name: "BetterNotesBox", + description: "Hide notes or disable spellcheck (Configure in settings!!)", + authors: [Devs.Ven], + + patches: [ + { + find: "hideNote:", + all: true, + predicate: makeLazy(() => Vencord.Settings.plugins.BetterNotesBox.hide), + replacement: { + match: /hideNote:.+?(?=[,}])/g, + replace: "hideNote:true", + } + }, { + find: "Messages.NOTE_PLACEHOLDER", + replacement: { + match: /\.NOTE_PLACEHOLDER,/, + replace: "$&spellCheck:!Vencord.Settings.plugins.BetterNotesBox.noSpellCheck," + } + } + ], + + options: { + hide: { + type: OptionType.BOOLEAN, + description: "Hide notes", + default: false, + restartNeeded: true + }, + noSpellCheck: { + type: OptionType.BOOLEAN, + description: "Disable spellcheck in notes", + disabled: () => Settings.plugins.BetterNotesBox.hide, + default: false + } + } +}); diff --git a/src/plugins/timeBarAllActivities.ts b/src/plugins/timeBarAllActivities.ts new file mode 100644 index 0000000..223f182 --- /dev/null +++ b/src/plugins/timeBarAllActivities.ts @@ -0,0 +1,35 @@ +/* + * 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 { Devs } from "@utils/constants"; +import definePlugin from "@utils/types"; + +export default definePlugin({ + name: "TimeBarAllActivities", + description: "Adds the Spotify time bar to all activities if they have start and end timestamps", + authors: [Devs.obscurity], + patches: [ + { + find: "renderTimeBar=function", + replacement: { + match: /renderTimeBar=function\((.{1,3})\){.{0,50}?var/, + replace: "renderTimeBar=function($1){var" + } + } + ], +}); -- cgit