mirror of
https://github.com/Equicord/Equicord.git
synced 2025-01-18 21:33:35 -05:00
Fix Broken Devs
This commit is contained in:
parent
bc0543c8dd
commit
e38a70a25e
8 changed files with 12 additions and 33 deletions
|
@ -146,9 +146,7 @@ function getBadgesToApply() {
|
|||
export default definePlugin({
|
||||
name: "FriendshipRanks",
|
||||
description: "Adds badges showcasing how long you have been friends with a user for",
|
||||
authors: [
|
||||
Devs.Samwich
|
||||
],
|
||||
authors: [Devs.Samwich],
|
||||
start() {
|
||||
getBadgesToApply().forEach(thing => Vencord.Api.Badges.addBadge(thing));
|
||||
|
||||
|
|
|
@ -22,6 +22,7 @@ import { NavContextMenuPatchCallback } from "@api/ContextMenu";
|
|||
import { DataStore } from "@api/index";
|
||||
import { addButton, removeButton } from "@api/MessagePopover";
|
||||
import ErrorBoundary from "@components/ErrorBoundary";
|
||||
import { EquicordDevs } from "@utils/constants";
|
||||
import { classes } from "@utils/misc";
|
||||
import { openModal } from "@utils/modal";
|
||||
import definePlugin from "@utils/types";
|
||||
|
@ -70,7 +71,7 @@ function ToolBarHeader() {
|
|||
export default definePlugin({
|
||||
name: "HolyNotes",
|
||||
description: "Holy Notes allows you to save messages",
|
||||
authors: [{ id: 347096063569559553n, name: "wolfieeeeeeee" }],
|
||||
authors: [EquicordDevs.Wolfie],
|
||||
dependencies: ["MessagePopoverAPI", "ChatInputButtonAPI"],
|
||||
|
||||
patches: [
|
||||
|
|
|
@ -8,6 +8,7 @@ import { DataStore } from "@api/index";
|
|||
import { addPreSendListener, removePreSendListener } from "@api/MessageEvents";
|
||||
import { ExpandableHeader } from "@components/ExpandableHeader";
|
||||
import { Heart } from "@components/Heart";
|
||||
import { EquicordDevs } from "@utils/constants";
|
||||
import { openUserProfile } from "@utils/discord";
|
||||
import * as Modal from "@utils/modal";
|
||||
import definePlugin from "@utils/types";
|
||||
|
@ -362,12 +363,7 @@ export default definePlugin({
|
|||
name: constants.pluginLabel,
|
||||
description:
|
||||
"Locally saves everyone you've been communicating with (including servers), in case of lose",
|
||||
authors: [
|
||||
{
|
||||
name: "zoodogood",
|
||||
id: 921403577539387454n,
|
||||
},
|
||||
],
|
||||
authors: [EquicordDevs.zoodogood],
|
||||
dependencies: ["MessageEventsAPI"],
|
||||
|
||||
patches: [],
|
||||
|
|
|
@ -4,12 +4,13 @@
|
|||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
|
||||
import { EquicordDevs } from "@utils/constants";
|
||||
import definePlugin from "@utils/types";
|
||||
|
||||
export default definePlugin({
|
||||
name: "noAppsAllowed",
|
||||
description: "returns the bot's tag :skulk:",
|
||||
authors: [{ name: "kvba", id: 105170831130234880n }],
|
||||
authors: [EquicordDevs.kvba],
|
||||
|
||||
patches: [
|
||||
{
|
||||
|
|
|
@ -19,12 +19,7 @@ import { getListeners } from "./utils";
|
|||
|
||||
export default definePlugin({
|
||||
name: "SoundBoardLogger",
|
||||
authors: [
|
||||
Devs.Moxxie,
|
||||
EquicordDevs.Fres,
|
||||
Devs.echo,
|
||||
EquicordDevs.thororen
|
||||
],
|
||||
authors: [Devs.Moxxie, EquicordDevs.Fres, Devs.echo, EquicordDevs.thororen],
|
||||
settings,
|
||||
patches: [
|
||||
{
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
|
||||
import { EquicordDevs } from "@utils/constants";
|
||||
import definePlugin from "@utils/types";
|
||||
import { SettingsRouter } from "@webpack/common";
|
||||
|
||||
|
@ -12,12 +13,7 @@ import { settings } from "./settings";
|
|||
export default definePlugin({
|
||||
name: "ThemeLibrary",
|
||||
description: "A library of themes for Vencord.",
|
||||
authors: [
|
||||
{
|
||||
name: "Fafa",
|
||||
id: 428188716641812481n,
|
||||
},
|
||||
],
|
||||
authors: [EquicordDevs.Fafa],
|
||||
settings,
|
||||
toolboxActions: {
|
||||
"Open Theme Library": () => {
|
||||
|
|
|
@ -81,9 +81,7 @@ const AvatarStyles = findByPropsLazy("moreUsers", "emptyUser", "avatarContainer"
|
|||
export default definePlugin({
|
||||
name: "WhosWatching",
|
||||
description: "Hover over the screenshare icon to view what users are watching your stream",
|
||||
authors: [
|
||||
EquicordDevs.Fres
|
||||
],
|
||||
authors: [EquicordDevs.Fres],
|
||||
settings: settings,
|
||||
patches: [
|
||||
{
|
||||
|
|
|
@ -42,13 +42,7 @@ const settings = definePluginSettings({
|
|||
export default definePlugin({
|
||||
name: "Experiments",
|
||||
description: "Enable Access to Experiments & other dev-only features in Discord!",
|
||||
authors: [
|
||||
Devs.Megu,
|
||||
Devs.Ven,
|
||||
Devs.Nickyux,
|
||||
Devs.BanTheNons,
|
||||
Devs.Nuckyz
|
||||
],
|
||||
authors: [Devs.Megu, Devs.Ven, Devs.Nickyux, Devs.BanTheNons, Devs.Nuckyz],
|
||||
|
||||
settings,
|
||||
|
||||
|
|
Loading…
Reference in a new issue