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