mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-16 18:07:02 -04:00
Better authors field (#18)
This commit is contained in:
parent
3e64054283
commit
ef353f1d66
22 changed files with 71 additions and 26 deletions
|
@ -1,9 +1,10 @@
|
|||
import definePlugin from "../utils/types";
|
||||
import { Devs } from '../utils/constants';
|
||||
|
||||
export default definePlugin({
|
||||
name: "STFU",
|
||||
description: "Disables the 'HOLD UP' banner in the console",
|
||||
author: "Vendicated",
|
||||
authors: [Devs.Ven],
|
||||
patches: [{
|
||||
find: "setDevtoolsCallbacks",
|
||||
replacement: {
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
import { Devs } from "../utils/constants";
|
||||
import definePlugin from "../utils/types";
|
||||
|
||||
export default definePlugin({
|
||||
name: "MessageEventsAPI",
|
||||
description: "Api required by anything using message events.",
|
||||
author: "ArjixWasTaken",
|
||||
authors: [Devs.Arjix],
|
||||
patches: [
|
||||
{
|
||||
find: "sendMessage:function",
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
import { Devs } from "../utils/constants";
|
||||
import definePlugin from "../utils/types";
|
||||
|
||||
export default definePlugin({
|
||||
name: "ApiNotices",
|
||||
description: "Fixes notices being automatically dismissed",
|
||||
author: "Vendicated",
|
||||
authors: [Devs.Ven],
|
||||
required: true,
|
||||
patches: [
|
||||
{
|
||||
|
|
|
@ -3,7 +3,10 @@ import definePlugin from "../utils/types";
|
|||
export default definePlugin({
|
||||
name: "BANger",
|
||||
description: "Replaces the GIF in the ban dialogue with a custom one.",
|
||||
author: "Xinto",
|
||||
authors: [{
|
||||
name: "Xinto",
|
||||
id: 423915768191647755n
|
||||
}],
|
||||
patches: [
|
||||
{
|
||||
find: "BanConfirm",
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
import { Devs } from "../utils/constants";
|
||||
import definePlugin from "../utils/types";
|
||||
|
||||
export default definePlugin({
|
||||
name: "BetterGifAltText",
|
||||
author: "Vendicated",
|
||||
authors: [Devs.Ven],
|
||||
description:
|
||||
"Change GIF alt text from simply being 'GIF' to containing the gif tags / filename",
|
||||
patches: [
|
||||
|
@ -30,7 +31,7 @@ export default definePlugin({
|
|||
let url: string = props.original || props.src;
|
||||
try {
|
||||
url = decodeURI(url);
|
||||
} catch {}
|
||||
} catch { }
|
||||
|
||||
let name = url
|
||||
.slice(url.lastIndexOf("/") + 1)
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
import { Devs } from "../utils/constants";
|
||||
import definePlugin from "../utils/types";
|
||||
import { Toasts } from '../webpack/common';
|
||||
|
||||
export default definePlugin({
|
||||
name: "ClickableRoleDot",
|
||||
author: "Vendicated",
|
||||
authors: [Devs.Ven],
|
||||
description:
|
||||
"Makes RoleDots (Accessibility Feature) copy colour to clipboard on click",
|
||||
patches: [
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
import { Devs } from "../utils/constants";
|
||||
import definePlugin from '../utils/types';
|
||||
|
||||
export default definePlugin({
|
||||
name: "Experiments",
|
||||
author: "Vendicated, Megumin",
|
||||
authors: [Devs.Ven, Devs.Megu],
|
||||
description: "Enable Experiments",
|
||||
patches: [{
|
||||
find: "Object.defineProperties(this,{isDeveloper",
|
||||
|
|
|
@ -3,7 +3,10 @@ import definePlugin from "../utils/types";
|
|||
export default definePlugin({
|
||||
name: "Folder SVG Icon",
|
||||
description: "Doesn't show the small guild icons in folders",
|
||||
author: "botato",
|
||||
authors: [{
|
||||
name: "botato",
|
||||
id: 440990343899643943n
|
||||
}],
|
||||
patches: [{
|
||||
find: "().expandedFolderIconWrapper",
|
||||
replacement: [{
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
import { Devs } from "../utils/constants";
|
||||
import definePlugin from "../utils/types";
|
||||
|
||||
export default definePlugin({
|
||||
name: "Ify",
|
||||
description: "Disabes Spotify auto-pausing and premium checks",
|
||||
author: "Cynosphere",
|
||||
authors: [Devs.Cyn],
|
||||
patches: [
|
||||
{
|
||||
find: '.displayName="SpotifyStore"',
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import { addClickListener, removeClickListener } from '../api/MessageEvents';
|
||||
import { Devs } from "../utils/constants";
|
||||
import definePlugin from "../utils/types";
|
||||
import { find, findByProps } from "../webpack";
|
||||
import { UserStore } from "../webpack/common";
|
||||
|
@ -10,7 +11,7 @@ const keyup = (e: KeyboardEvent) => e.key === "Backspace" && (isDeletePressed =
|
|||
export default definePlugin({
|
||||
name: "MessageQuickActions",
|
||||
description: "Quick Delete, Quick edit",
|
||||
author: "Vendicated",
|
||||
authors: [Devs.Ven],
|
||||
dependencies: ["MessageEventsAPI"],
|
||||
|
||||
start() {
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
import { addPreSendListener, addPreEditListener, SendListener, removePreSendListener, removePreEditListener } from '../api/MessageEvents';
|
||||
import { findByProps } from "../webpack";
|
||||
import definePlugin from "../utils/types";
|
||||
import { Devs } from '../utils/constants';
|
||||
|
||||
export default definePlugin({
|
||||
name: "Nitro Bypass",
|
||||
author: "ArjixWasTaken",
|
||||
authors: [Devs.Arjix],
|
||||
description: "Allows you to stream in nitro quality and send fake emojis.",
|
||||
dependencies: ["MessageEventsAPI"],
|
||||
patches: [
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
import definePlugin from "../utils/types";
|
||||
import { Devs } from '../utils/constants';
|
||||
|
||||
export default definePlugin({
|
||||
name: "NoTrack",
|
||||
description: "Disable Discord's tracking and crash reporting",
|
||||
author: "Cynosphere",
|
||||
authors: [Devs.Cyn],
|
||||
required: true,
|
||||
patches: [
|
||||
{
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
import definePlugin from "../utils/types";
|
||||
import gitHash from "git-hash";
|
||||
import { Devs } from '../utils/constants';
|
||||
|
||||
export default definePlugin({
|
||||
name: "Settings",
|
||||
description: "Adds Settings UI and debug info",
|
||||
author: "Vendicated",
|
||||
authors: [Devs.Ven],
|
||||
required: true,
|
||||
patches: [{
|
||||
find: "().versionHash",
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
import definePlugin from '../utils/types';
|
||||
import { Devs } from '../utils/constants';
|
||||
|
||||
export default definePlugin({
|
||||
name: "SilentTyping",
|
||||
author: "Vendicated",
|
||||
authors: [Devs.Ven],
|
||||
description: "Hide that you are typing",
|
||||
patches: [{
|
||||
find: "startTyping:",
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
import definePlugin from "../utils/types";
|
||||
import { addPreSendListener, addPreEditListener, MessageObject, removePreSendListener, removePreEditListener } from '../api/MessageEvents';
|
||||
import { Devs } from '../utils/constants';
|
||||
|
||||
export default definePlugin({
|
||||
name: "Unindent",
|
||||
description: "Trims leading indentation from codeblocks",
|
||||
author: "Vendicated",
|
||||
authors: [Devs.Ven],
|
||||
patches: [
|
||||
{
|
||||
find: "inQuote:",
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
import { Devs } from "../utils/constants";
|
||||
import IpcEvents from "../utils/IpcEvents";
|
||||
import definePlugin from '../utils/types';
|
||||
|
||||
const OPEN_URL = "Vencord.Plugins.plugins.ViewIcons.openImage(";
|
||||
export default definePlugin({
|
||||
name: "ViewIcons",
|
||||
author: "Vendicated",
|
||||
authors: [Devs.Ven],
|
||||
description: "Makes Avatars/Banners in user profiles clickable, and adds Guild Context Menu Entries to View Banner/Icon.",
|
||||
|
||||
openImage(url: string) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue