aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/settings.ts
blob: 1281f4edceddd07fd3c1d17b5a8d5be128640a5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import definePlugin from "../utils/types";
import gitHash from "git-hash";

export default definePlugin({
    name: "Settings",
    description: "Adds Settings UI and debug info",
    author: "Vendicated",
    required: true,
    patches: [{
        find: "().versionHash",
        replacement: [
            {
                match: /\w\.createElement\(.{1,2}.Fragment,.{0,30}\{[^}]+\},"Host ".+?\):null/,
                replace: m => {
                    const idx = m.indexOf("Host") - 1;
                    const template = m.slice(0, idx);
                    return `${m}, ${template}"Vencord ", "${gitHash}"), " "), ` +
                        `${template} "Electron ",VencordNative.getVersions().electron)," "), ` +
                        `${template} "Chrome ",VencordNative.getVersions().chrome)," ")`;
                }
            }
        ]
    }, {
        find: "Messages.ACTIVITY_SETTINGS",
        replacement: {
            match: /\{section:(.{1,2})\.ID\.HEADER,\s*label:(.{1,2})\..{1,2}\.Messages\.ACTIVITY_SETTINGS\}/,
            replace: (m, mod) =>
                `{section:${mod}.ID.HEADER,label:"Vencord"},` +
                `{section:"Vencord",label:"Vencord",element:Vencord.Components.Settings},` +
                `{section:${mod}.ID.DIVIDER},${m}`

        }
    }]
});