chore: update for 'Vencord Desktop' -> 'Vesktop' rebrand

This commit is contained in:
V 2023-08-16 01:55:56 +02:00
parent ffdf63563b
commit ede507e80c
No known key found for this signature in database
GPG key ID: A1DC0CFB5615D905
9 changed files with 19 additions and 26 deletions

View file

@ -127,13 +127,6 @@ export default definePlugin({
element: require("@components/VencordSettings/PatchHelperTab").default,
className: "vc-patch-helper"
},
// TODO: make this use customSections
IS_VENCORD_DESKTOP && {
section: "VencordDesktop",
label: "Desktop Settings",
element: VencordDesktop.Components.Settings,
className: "vc-desktop-settings"
},
...this.customSections.map(func => func(ID)),
{
section: ID.DIVIDER
@ -175,7 +168,7 @@ export default definePlugin({
get additionalInfo() {
if (IS_DEV) return " (Dev)";
if (IS_WEB) return " (Web)";
if (IS_VENCORD_DESKTOP) return ` (VencordDesktop v${VencordDesktopNative.app.getVersion()})`;
if (IS_VESKTOP) return ` (Vesktop v${VesktopNative.app.getVersion()})`;
if (IS_STANDALONE) return " (Standalone)";
return "";
},