2022-10-21 19:17:06 -04:00
|
|
|
/*
|
|
|
|
* Vencord, a modification for Discord's desktop app
|
2022-10-23 17:23:52 -04:00
|
|
|
* Copyright (c) 2022 Vendicated and Megumin
|
2022-10-21 19:17:06 -04:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2022-10-23 17:23:52 -04:00
|
|
|
import gitHash from "~git-hash";
|
2022-10-17 15:18:25 -04:00
|
|
|
|
2022-10-05 18:42:58 -04:00
|
|
|
import { Devs } from "../utils/constants";
|
2022-10-17 15:18:25 -04:00
|
|
|
import definePlugin from "../utils/types";
|
2022-08-29 19:42:47 -04:00
|
|
|
|
|
|
|
export default definePlugin({
|
|
|
|
name: "Settings",
|
|
|
|
description: "Adds Settings UI and debug info",
|
2022-10-17 15:18:25 -04:00
|
|
|
authors: [Devs.Ven, Devs.Megu],
|
2022-08-30 22:07:16 -04:00
|
|
|
required: true,
|
2022-08-29 19:42:47 -04:00
|
|
|
patches: [{
|
2022-09-27 08:34:57 -04:00
|
|
|
find: "().versionHash",
|
2022-08-29 19:42:47 -04:00
|
|
|
replacement: [
|
|
|
|
{
|
2022-09-27 08:34:57 -04:00
|
|
|
match: /\w\.createElement\(.{1,2}.Fragment,.{0,30}\{[^}]+\},"Host ".+?\):null/,
|
2022-08-29 19:42:47 -04:00
|
|
|
replace: m => {
|
|
|
|
const idx = m.indexOf("Host") - 1;
|
|
|
|
const template = m.slice(0, idx);
|
2022-10-23 17:23:52 -04:00
|
|
|
const additionalInfo = IS_WEB
|
|
|
|
? " (Web)"
|
|
|
|
: IS_STANDALONE
|
|
|
|
? " (Standalone)"
|
|
|
|
: "";
|
|
|
|
|
|
|
|
let r = `${m}, ${template}"Vencord ", "${gitHash}${additionalInfo}"), " ")`;
|
2022-10-03 18:52:42 -04:00
|
|
|
if (!IS_WEB) {
|
|
|
|
r += `,${template} "Electron ",VencordNative.getVersions().electron)," "),`;
|
|
|
|
r += `${template} "Chrome ",VencordNative.getVersions().chrome)," ")`;
|
|
|
|
}
|
|
|
|
return r;
|
2022-08-29 19:42:47 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}, {
|
|
|
|
find: "Messages.ACTIVITY_SETTINGS",
|
|
|
|
replacement: {
|
2022-09-27 08:34:57 -04:00
|
|
|
match: /\{section:(.{1,2})\.ID\.HEADER,\s*label:(.{1,2})\..{1,2}\.Messages\.ACTIVITY_SETTINGS\}/,
|
2022-10-16 11:15:15 -04:00
|
|
|
replace: (m, mod) => {
|
|
|
|
const updater = !IS_WEB ? '{section:"VencordUpdater",label:"Updater",element:Vencord.Components.Updater},' : "";
|
|
|
|
return (
|
|
|
|
`{section:${mod}.ID.HEADER,label:"Vencord"},` +
|
|
|
|
'{section:"VencordSetting",label:"Vencord",element:Vencord.Components.Settings},' +
|
2022-10-17 15:18:25 -04:00
|
|
|
'{section:"VencordPlugins",label:"Plugins",element:Vencord.Components.PluginSettings},' +
|
2022-10-16 11:15:15 -04:00
|
|
|
updater +
|
|
|
|
`{section:${mod}.ID.DIVIDER},${m}`
|
|
|
|
);
|
|
|
|
}
|
2022-08-29 19:42:47 -04:00
|
|
|
}
|
|
|
|
}]
|
2022-09-16 16:59:34 -04:00
|
|
|
});
|