From c6bc14a1d7500737f7e52d5c192eba529f89b52d Mon Sep 17 00:00:00 2001 From: smartfridge <37928912+smartfrigde@users.noreply.github.com> Date: Wed, 16 Jun 2021 19:07:12 +0200 Subject: [PATCH] BandageBD Naming --> LightcordBD --- BetterDiscordApp/src/loadingIcon.js | 2 +- BetterDiscordApp/src/modules/core.js | 4 ++-- BetterDiscordApp/src/modules/utils.js | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/BetterDiscordApp/src/loadingIcon.js b/BetterDiscordApp/src/loadingIcon.js index 06e4865..b985c2e 100644 --- a/BetterDiscordApp/src/loadingIcon.js +++ b/BetterDiscordApp/src/loadingIcon.js @@ -1,6 +1,6 @@ export default () => { const v2Loader = document.createElement("div"); v2Loader.className = "bd-loaderv2"; - v2Loader.title = "BandagedBD is loading..."; + v2Loader.title = "LightcordBD is loading..."; document.body.appendChild(v2Loader); }; \ No newline at end of file diff --git a/BetterDiscordApp/src/modules/core.js b/BetterDiscordApp/src/modules/core.js index 8353e97..e1711e7 100644 --- a/BetterDiscordApp/src/modules/core.js +++ b/BetterDiscordApp/src/modules/core.js @@ -54,12 +54,12 @@ Core.prototype.init = async function() { } if (window.ED) { - Utils.alert("Not Supported", "BandagedBD does not work with EnhancedDiscord. Please uninstall one of them."); + Utils.alert("Not Supported", "LightcordBD does not work with EnhancedDiscord. Please uninstall one of them."); return; } if (window.WebSocket && window.WebSocket.name && window.WebSocket.name.includes("Patched")) { - Utils.alert("Not Supported", "BandagedBD does not work with Powercord. Please uninstall one of them."); + Utils.alert("Not Supported", "LightcordBD does not work with Powercord. Please uninstall one of them."); return; } diff --git a/BetterDiscordApp/src/modules/utils.js b/BetterDiscordApp/src/modules/utils.js index 89b581c..72838a2 100644 --- a/BetterDiscordApp/src/modules/utils.js +++ b/BetterDiscordApp/src/modules/utils.js @@ -54,15 +54,15 @@ export default class Utils { } static log(moduleName, message) { - console.log(`%c[BandagedBD]%c [${moduleName}]%c ${message}`, "color: #3a71c1; font-weight: 700;", "color: #3a71c1;", ""); + console.log(`%c[LightcordBD]%c [${moduleName}]%c ${message}`, "color: #3a71c1; font-weight: 700;", "color: #3a71c1;", ""); } static warn(moduleName, message) { - console.warn(`%c[BandagedBD]%c [${moduleName}]%c ${message}`, "color: #E8A400; font-weight: 700;", "color: #E8A400;", ""); + console.warn(`%c[LightcordBD]%c [${moduleName}]%c ${message}`, "color: #E8A400; font-weight: 700;", "color: #E8A400;", ""); } static err(moduleName, message, error) { - console.log(`%c[BandagedBD]%c [${moduleName}]%c ${message}`, "color: red; font-weight: 700;", "color: red;", ""); + console.log(`%c[LightcordBD]%c [${moduleName}]%c ${message}`, "color: red; font-weight: 700;", "color: red;", ""); if (error) { console.groupCollapsed("%cError: " + error.message, "color: red;"); console.error(error.stack);