Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinRMC committed Jun 9, 2024
1 parent 64a85bf commit 694dcf3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/main/utils/extensions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export async function installExt(id: string) {
: `https://clients2.google.com/service/update2/crx?response=redirect&acceptformat=crx2,crx3&x=id%3D${id}%26uc&prodversion=32`;
const buf = await get(url, {
headers: {
"User-Agent": "Vencord (https://github.com/Vendicated/Vencord)"
"User-Agent": "VencordPlus (https://github.com/RobinRMC/VencordPlus)"
}
});
await extract(crxToZip(buf), extDir).catch(console.error);
Expand Down
5 changes: 3 additions & 2 deletions src/plusplugins/0BDFDB/0BDFDB.plugin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const settings = definePluginSettings({
loader: {
type: OptionType.BOOLEAN,
default: true,
description: "Show the betterdiscord loading icon",
description: "Show the BetterDiscord loading icon",
},
_: {
type: OptionType.COMPONENT,
Expand All @@ -45,12 +45,13 @@ const settings = definePluginSettings({

export default definePlugin({
name: "BDFDB",
description: "Required Library for DevilBro's Plugins",
description: "Required library for DevilBro's plugins.",
authors: [{
name: "DevilBro",
id: 278543574059057154n
}],

enabledByDefault: true,
required: true,

settings,
Expand Down
20 changes: 10 additions & 10 deletions src/plusplugins/fakeProfile/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const updateBadgesForAllUsers = () => {
</div>
<div style={{ padding: "0.5em", textAlign: "center" }}>
<Forms.FormText>
Disclaimer: This badge is generated by the fakeProfile plugin. Please be aware that it may not represent genuine credentials or affiliations. Thank you for your understanding.
Disclaimer: This badge is generated by fakeProfile. Please be aware that it may not represent genuine credentials or affiliations. Thank you for your understanding.
</Forms.FormText>
</div>
</Modals.ModalContent>
Expand Down Expand Up @@ -173,12 +173,12 @@ function decode(bio: string): Array<number> | null {

const settings = definePluginSettings({
enableProfileEffects: {
description: "Allows you to use profile effects",
description: "Allows you to use Discord's profile effects",
type: OptionType.BOOLEAN,
default: false
},
enableProfileThemes: {
description: "Allows you to use profile themes",
description: "Allows you to use Discord's profile themes",
type: OptionType.BOOLEAN,
default: false
},
Expand All @@ -189,7 +189,7 @@ const settings = definePluginSettings({
restartNeeded: true
},
enableAvatarDecorations: {
description: "Allows you to use discord avatar decorations",
description: "Allows you to use Discord's avatar decorations",
type: OptionType.BOOLEAN,
default: false
},
Expand All @@ -208,7 +208,7 @@ const settings = definePluginSettings({
]
},
voiceBackground: {
description: "Use fakeProfile banners as voice chat backgrounds",
description: "Use fakeProfile's banners as voice chat backgrounds",
type: OptionType.BOOLEAN,
default: true,
restartNeeded: true
Expand Down Expand Up @@ -274,7 +274,7 @@ const openModalOnClick = () => {
</div>
<div style={{ padding: "0.5em", textAlign: "center" }}>
<Forms.FormText>
Disclaimer: This badge is generated by the fakeProfile plugin. Please be aware that it may not represent genuine credentials or affiliations. Thank you for your understanding.
Disclaimer: This badge is generated by fakeProfile. Please be aware that it may not represent genuine credentials or affiliations. Thank you for your understanding.
</Forms.FormText>
</div>
</Modals.ModalContent>
Expand Down Expand Up @@ -344,7 +344,7 @@ const BadgeMain = ({ user, wantMargin = true, wantTopMargin = false }: { user: U

export default definePlugin({
name: "fakeProfile",
description: "Unlock Discord profile effects, themes, avatar decorations, and custom badges without the need for Nitro.",
description: "Unlock Discord's profile effects, themes, avatar decorations, and custom badges without the need for Nitro.",
authors: [{
name: "Sampath",
id: 984015688807100419n,
Expand All @@ -367,7 +367,7 @@ export default definePlugin({
const data = await response.json();
if (data.version !== VERSION) {
Toasts.show({
message: "There is an update available for the fakeProfile plugin.",
message: "There is an update available for fakeProfile.",
id: Toasts.genId(),
type: Toasts.Type.MESSAGE,
options: {
Expand Down Expand Up @@ -501,9 +501,9 @@ export default definePlugin({

<Forms.FormSection>
<Forms.FormTitle tag="h3">Usage</Forms.FormTitle>
<Link href="https://github.com/sampathgujarathi/fakeProfile">CLICK HERE TO GET PROFILE EFFECTS, CUSTOM BADGES, BANNER OR ANIMATED PFP</Link>
<Link href="https://github.com/sampathgujarathi/fakeProfile">Click here to get profile effects, custom badges, banner or animated pfp</Link>
<Forms.FormText>
Enable Profile Themes to use fake profile themes. <br />
Enable profile themes to use fake profile themes. <br />
To set your own colors:
<ul>
<li>• go to your profile settings</li>
Expand Down

0 comments on commit 694dcf3

Please sign in to comment.