/* BetterDiscordApp Core JavaScript * Version: 1.78 * Author: Jiiks | http://jiiks.net * Date: 27/08/2015 - 16:36 * Last Update: 01/05/2016 * https://github.com/Jiiks/BetterDiscordApp */ /*Localstorage fix*/ (function() { let __fs = window.require("fs"); let __process = window.require("process"); let __platform = __process.platform; let __dataPath = (__platform === 'win32' ? __process.env.APPDATA : __platform === 'darwin' ? __process.env.HOME + '/Library/Preferences' : process.env.HOME + '/.config') + '/BetterDiscord/'; let __data = {}; if(__fs.existsSync(`${__dataPath}localStorage.json`)) { try { __data = JSON.parse(__fs.readFileSync(`${__dataPath}localStorage.json`)) }catch(err) { console.log(err); } } else if(__fs.existsSync("localStorage.json")) { try { __data = JSON.parse(__fs.readFileSync("localStorage.json")); }catch(err) { console.log(err); } } var __ls = __data; __ls.setItem = function(i, v) { __ls[i] = v; this.save(); }; __ls.getItem = function(i) { return __ls[i] || null; }; __ls.save = function() { __fs.writeFileSync(`${__dataPath}/localStorage.json`, JSON.stringify(this), null, 4); }; var __proxy = new Proxy(__ls, { set: function(target, name, val, receiver) { __ls[name] = val; __ls.save(); }, get: function(target, name, receiver) { return __ls[name] || null; } }); window.localStorage = __proxy; })(); (() => { let v2Loader = document.createElement('div'); v2Loader.className = "bd-loaderv2"; v2Loader.title = "BetterDiscord is loading..."; document.body.appendChild(v2Loader); })(); window.bdStorage = {}; window.bdStorage.get = function(i) { return betterDiscordIPC.sendSync('synchronous-message', { 'arg': 'storage', 'cmd': 'get', 'var': i }); }; window.bdStorage.set = function(i, v) { betterDiscordIPC.sendSync('synchronous-message', { 'arg': 'storage', 'cmd': 'set', 'var': i, 'data': v }); }; window.bdPluginStorage = {}; window.bdPluginStorage.get = function(pn, i) { return betterDiscordIPC.sendSync('synchronous-message', { 'arg': 'pluginstorage', 'cmd': 'get', 'pn': pn, 'var': i }); }; window.bdPluginStorage.set = function(pn, i, v) { betterDiscordIPC.sendSync('synchronous-message', { 'arg': 'pluginstorage', 'cmd': 'set', 'pn': pn, 'var': i, 'data': v }); }; betterDiscordIPC.on('asynchronous-reply', (event, arg) => { console.log(event); console.log(arg); }); var settingsPanel, emoteModule, utils, quickEmoteMenu, voiceMode, pluginModule, themeModule, customCssEditor, dMode; var jsVersion = 1.792; var supportedVersion = "0.2.81"; var mainObserver; var twitchEmoteUrlStart = "https://static-cdn.jtvnw.net/emoticons/v1/"; var twitchEmoteUrlEnd = "/1.0"; var ffzEmoteUrlStart = "https://cdn.frankerfacez.com/emoticon/"; var ffzEmoteUrlEnd = "/1"; var bttvEmoteUrlStart = "https://cdn.betterttv.net/emote/"; var bttvEmoteUrlEnd = "/1x"; var mainCore; var settings = { "Save logs locally": { "id": "bda-gs-0", "info": "Saves chat logs locally", "implemented": false, "hidden": false, "cat": "core"}, "Public Servers": { "id": "bda-gs-1", "info": "Display public servers button", "implemented": false, "hidden": false, "cat": "core"}, "Minimal Mode": { "id": "bda-gs-2", "info": "Hide elements and reduce the size of elements.", "implemented": true, "hidden": false, "cat": "core"}, "Voice Mode": { "id": "bda-gs-4", "info": "Only show voice chat", "implemented": true, "hidden": false, "cat": "core"}, "Hide Channels": { "id": "bda-gs-3", "info": "Hide channels in minimal mode", "implemented": true, "hidden": false, "cat": "core"}, "Dark Mode": { "id": "bda-gs-5", "info": "Make certain elements dark by default(wip)", "implemented": true, "hidden": false, "cat": "core"}, "Override Default Emotes": { "id": "bda-es-5", "info": "Override default emotes", "implemented": false, "hidden": false, "cat": "core"}, "Voice Disconnect": { "id": "bda-dc-0", "info": "Disconnect from voice server when closing Discord", "implemented": true, "hidden": false, "cat": "core"}, "Custom css live update": { "id": "bda-css-0", "info": "", "implemented": true, "hidden": true, "cat": "core"}, "Custom css auto udpate": { "id": "bda-css-1", "info": "", "implemented": true, "hidden": true, "cat": "core"}, "24 Hour Timestamps": { "id": "bda-gs-6", "info": "Replace 12hr timestamps with proper ones", "implemented": true, "hidden": false, "cat": "core"}, "Coloured Text": { "id": "bda-gs-7", "info": "Make text colour the same as role colour", "implemented": true, "hidden": false, "cat": "core"}, "BetterDiscord Blue": { "id": "bda-gs-b", "info": "Replace Discord blue with BD Blue", "implemented": true, "hidden": false, "cat": "core"}, "Developer Mode": { "id": "bda-gs-8", "info": "Developer Mode", "implemented": true, "hidden": false, "cat": "core"}, "Twitch Emotes": { "id": "bda-es-7", "info": "Show Twitch emotes", "implemented": true, "hidden": false, "cat": "emote"}, "FrankerFaceZ Emotes": { "id": "bda-es-1", "info": "Show FrankerFaceZ Emotes", "implemented": true, "hidden": false, "cat": "emote"}, "BetterTTV Emotes": { "id": "bda-es-2", "info": "Show BetterTTV Emotes", "implemented": true, "hidden": false, "cat": "emote"}, "Emote Menu": { "id": "bda-es-0", "info": "Show Twitch/Favourite emotes in emote menu", "implemented": true, "hidden": false, "cat": "emote"}, "Emoji Menu": { "id": "bda-es-9", "info": "Show Discord emoji menu", "implemented": true, "hidden": false, "cat": "emote"}, "Emote Autocomplete": { "id": "bda-es-3", "info": "Autocomplete emote commands", "implemented": false, "hidden": false, "cat": "emote"}, "Emote Auto Capitalization": { "id": "bda-es-4", "info": "Autocapitalize emote commands", "implemented": true, "hidden": false, "cat": "emote"}, "Show Names": { "id": "bda-es-6", "info": "Show emote names on hover", "implemented": true, "hidden": false, "cat": "emote"}, "Show emote modifiers": { "id": "bda-es-8", "info": "Enable emote mods", "implemented": true, "hidden": false, "cat": "emote"}, }; var links = { "Jiiks.net": { "text": "Jiiks.net", "href": "thtp://jiiks.net", "target": "_blank" }, "twitter": { "text": "Twitter", "href": "http://twitter.com/jiiksi", "target": "_blank" }, "github": { "text": "Github", "href": "http://github.com/jiiks", "target": "_blank" } }; var defaultCookie = { "version": jsVersion, "bda-gs-0": false, "bda-gs-1": false, "bda-gs-2": false, "bda-gs-3": false, "bda-gs-4": false, "bda-gs-5": true, "bda-gs-6": false, "bda-gs-7": false, "bda-gs-8": false, "bda-es-0": true, "bda-es-1": true, "bda-es-2": true, "bda-es-3": false, "bda-es-4": false, "bda-es-5": true, "bda-es-6": true, "bda-es-7": true, "bda-gs-b": true, "bda-es-8": true, "bda-jd": true, "bda-dc-0": false, "bda-css-0": false, "bda-css-1": false, "bda-es-9": true }; var bdchangelog = { "changes": { "0a": { "title": "1.78 : Temp support for new settingspanel", "text": "Added temp support for Discord's new settingspanel until v2.", "img": "" }, "0b": { "title": "1.78 : Public Servers", "text": "New look and flow for public servers", "img": "" }, "0c": { "title": "1.78 : New loading icon", "text": "New loading icon will now display in bottom right when BD is loading.", "img": "" }, "0d": { "title": "1.78 : New CustomCSS editor look", "text": "Updated CustomCSS editor with dark theme", "img": "" }, "0e": { "title": "1.78 : BetterDiscord Blue", "text": "Replace Discord blue with BetterDiscord blue!", "img": "" } }, "fixes": { "0a": { "title": "1.792 : Fixed settingspanel injection", "text": "Still has some minor bugs", "img": "" }, "0b": { "title": "1.791 : Restored Buttons", "text": "Restored Open Theme Folder and Open Plugin Folder buttons", "img": "" }, "0c": { "title": "1.79 : Settings Saving", "text": "Fixed settings not saving with new settings panel", "img": "" } } }; var settingsCookie = {}; function Core() {} Core.prototype.init = function () { var self = this; var lVersion = (typeof(version) === "undefined") ? bdVersion : version; if (lVersion < supportedVersion) { this.alert("Not Supported", "BetterDiscord v" + lVersion + "(your version)" + " is not supported by the latest js(" + jsVersion + ").

Please download the latest version from BetterDiscord.net"); return; } utils = new Utils(); utils.getHash(); emoteModule = new EmoteModule(); quickEmoteMenu = new QuickEmoteMenu(); voiceMode = new VoiceMode(); dMode = new devMode(); emoteModule.init(); this.initSettings(); this.initObserver(); //Incase were too fast function gwDefer() { console.log(new Date().getTime() + " Defer"); if (document.querySelectorAll('.guilds .guild').length > 0) { console.log(new Date().getTime() + " Defer Loaded"); // customCssEditor = new CustomCssEditor(); pluginModule = new PluginModule(); pluginModule.loadPlugins(); if (typeof (themesupport2) !== "undefined") { themeModule = new ThemeModule(); themeModule.loadThemes(); } settingsPanel = new SettingsPanel(); settingsPanel.init(); quickEmoteMenu.init(false); window.addEventListener("beforeunload", function(){ if(settingsCookie["bda-dc-0"]){ document.querySelector('.btn.btn-disconnect').click(); } }); emoteModule.autoCapitalize(); /*Display new features in BetterDiscord*/ if (settingsCookie["version"] < jsVersion) { //var cl = self.constructChangelog(); settingsCookie["version"] = jsVersion; self.saveSettings(); } $("head").append(""); $("head").append(''); document.getElementsByClassName("bd-loaderv2")[0].remove(); } else { setTimeout(gwDefer, 100); } } $(document).ready(function () { setTimeout(gwDefer, 1000); }); }; Core.prototype.initSettings = function () { if ($.cookie("better-discord") == undefined) { settingsCookie = defaultCookie; this.saveSettings(); } else { this.loadSettings(); for (var setting in defaultCookie) { if (settingsCookie[setting] == undefined) { settingsCookie[setting] = defaultCookie[setting]; this.saveSettings(); } } } }; Core.prototype.saveSettings = function () { $.cookie("better-discord", JSON.stringify(settingsCookie), { expires: 365, path: '/' }); }; Core.prototype.loadSettings = function () { settingsCookie = JSON.parse($.cookie("better-discord")); }; Core.prototype.initObserver = function () { let self = this; mainObserver = new MutationObserver(function (mutations) { mutations.forEach(function (mutation) { if(settingsPanel !== undefined) settingsPanel.inject(mutation); if (typeof pluginModule !== "undefined") pluginModule.rawObserver(mutation); // onSwitch() // leaving Activity Feed/Friends menu if (mutation.removedNodes.length && mutation.removedNodes[0] instanceof Element) { let node = mutation.removedNodes[0]; if (node.classList.contains("activityFeed-HeiGwL") || node.id === "friends") { pluginModule.channelSwitch(); } } // if there was nothing added, skip if (!mutation.addedNodes.length || !(mutation.addedNodes[0] instanceof Element)) return; let node = mutation.addedNodes[0]; // Emoji Picker if (node.classList.contains('popout')) { if (node.getElementsByClassName('emoji-picker')) quickEmoteMenu.obsCallback(node); } // onSwitch() // Not a channel, but still a switch (Activity Feed/Friends menu) if ( node.classList.contains("activityFeed-HeiGwL") || node.id === "friends") { pluginModule.channelSwitch(); } // onSwitch() // New Channel if (node.classList.contains("messages-wrapper")) { self.inject24Hour(node); self.injectColoredText(node); pluginModule.channelSwitch(); } // onMessage // New Message Group if (node.classList.contains("message-group") && !node.querySelector(".message-sending")) { self.inject24Hour(node); self.injectColoredText(node); if (node.parentElement.children && node == node.parentElement.children[node.parentElement.children.length - 1]) { pluginModule.newMessage(); } } // onMessage // Single Message if (node.classList.contains("message") && !node.classList.contains("message-sending")) { self.injectColoredText(node.parentElement.parentElement); pluginModule.newMessage(); } emoteModule.obsCallback(mutation); }); }); //noinspection JSCheckFunctionSignatures mainObserver.observe(document, { childList: true, subtree: true }); }; Core.prototype.inject24Hour = function(node) { if (!settingsCookie["bda-gs-6"]) return; node.querySelectorAll('.timestamp').forEach(elem => { if (elem.getAttribute("data-24")) return; elem.setAttribute("data-24", true); let text = elem.innerText || elem.textContent; let matches = /(.*)?at\s+(\d{1,2}):(\d{1,2})\s+(.*)/.exec(text); if(matches == null) return; if(matches.length < 5) return; var h = parseInt(matches[2]); if(matches[4] == "AM") { if(h == 12) h -= 12; }else if(matches[4] == "PM") { if(h < 12) h += 12; } matches[2] = ('0' + h).slice(-2); elem.innerText = matches[1] + " at " + matches[2] + ":" + matches[3]; }); }; Core.prototype.injectColoredText = function(node) { if (!settingsCookie["bda-gs-7"]) return; node.querySelectorAll('.user-name').forEach(elem => { let color = elem.style.color; if (color === "rgb(255, 255, 255)") return; elem.closest(".message-group").querySelectorAll('.markup').forEach(elem => { if (elem.getAttribute("data-color")) return; elem.setAttribute("data-color", true); elem.style.setProperty("color", color); }); }); }; // Core.prototype.constructChangelog = function () { // var changeLog = '' + // ''; // return changeLog; // }; // Core.prototype.alert = function (title, text) { // var id = ''; // for( var i=0; i < 5; i++ ) // id += "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".charAt(Math.floor(Math.random() * "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".length)); // var bdAlert = '\ // \ // '; // $("body").append(bdAlert); // utils.addBackdrop(id); // }; /* BetterDiscordApp EmoteModule JavaScript * Version: 1.5 * Author: Jiiks | http://jiiks.net * Date: 26/08/2015 - 15:29 * Last Update: 14/10/2015 - 09:48 * https://github.com/Jiiks/BetterDiscordApp * Note: Due to conflicts autocapitalize only supports global emotes */ /* * =Changelog= * -v1.5 * --Twitchemotes.com api */ var emotesFfz = {}; var emotesBTTV = {}; var emotesTwitch = { "emote": { "id": 0 } }; //for ide var subEmotesTwitch = {}; function EmoteModule() {} EmoteModule.prototype.init = function () {}; EmoteModule.prototype.getBlacklist = function () { $.getJSON("https://rauenzi.github.io/BetterDiscordApp/data/emotefilter.json", function (data) { bemotes = data.blacklist; }); }; EmoteModule.prototype.obsCallback = function (mutation) { var self = this; for (var i = 0; i < mutation.addedNodes.length; ++i) { var next = mutation.addedNodes.item(i); if (next) { var nodes = self.getNodes(next); for (var node in nodes) { if (nodes.hasOwnProperty(node)) { var elem = nodes[node].parentElement; if (elem && elem.classList.contains('edited')) { self.injectEmote(elem); } else { self.injectEmote(nodes[node]); } } } } } }; EmoteModule.prototype.getNodes = function (node) { var next; var nodes = []; var treeWalker = document.createTreeWalker(node, NodeFilter.SHOW_TEXT, null, false); while (next = treeWalker.nextNode()) { nodes.push(next); } return nodes; }; var bemotes = []; var spoilered = []; EmoteModule.prototype.injectEmote = function(node) { var self = this; if (!node.parentElement) return; var parent = node.parentElement; if(!parent.classList.contains("markup") && !parent.classList.contains("message-content")) return; parent = $(parent); function inject() { var contents = parent.contents(); contents.each(function(i) { if(contents[i] == undefined) return; var nodeValue = contents[i].nodeValue; if(nodeValue == null) return; //if(nodeValue.indexOf("react-") > -1) return; if(contents[i].nodeType == 8) return; contents.splice(i, 1); var words = nodeValue.split(/([^\s]+)([\s]|$)/g).filter(function(e){ return e}); var splice = 0; var doInject = false; var text = null; words.forEach(function(w, index, a) { if(w.indexOf("[!s]") > -1) { w = w.replace("[!s]", ""); parent.data("spoilered", false); parent.addClass("spoiler"); } var allowedClasses = ["flip", "spin", "pulse", "spin2", "spin3", "1spin", "2spin", "3spin", "tr", "bl", "br", "shake", "shake2", "shake3", "flap"]; var useEmoteClass = false; var emoteClass = ""; var skipffz = false; var sw = w; if(w.indexOf(":") > -1) { var split = w.split(":"); if(split[0] != "" && split[1] != "") { if(allowedClasses.indexOf(split[1]) > -1) { sw = split[0]; emoteClass = settingsCookie["bda-es-8"] ? "emote" + split[1] : ""; } if(split[1] == "bttv") { sw = split[0]; skipffz = true; } } } if ($.inArray(sw, bemotes) == -1) { if(typeof emotesTwitch !== 'undefined' && settingsCookie["bda-es-7"]) { if(emotesTwitch.hasOwnProperty(sw) && sw.length >= 4) { if(text != null) { contents.splice(i + splice++, 0, document.createTextNode(text)); text = null;} var url = twitchEmoteUrlStart + emotesTwitch[sw].id + twitchEmoteUrlEnd; contents.splice(i + splice++, 0, self.createEmoteElement(sw, url, emoteClass)); doInject = true; return; } } if(typeof subEmotesTwitch !== 'undefined' && settingsCookie["bda-es-7"]) { if(subEmotesTwitch.hasOwnProperty(sw) && sw.length >= 4) { if(text != null) { contents.splice(i + splice++, 0, document.createTextNode(text)); text = null;} var url = twitchEmoteUrlStart + subEmotesTwitch[sw] + twitchEmoteUrlEnd; contents.splice(i + splice++, 0, self.createEmoteElement(sw, url, emoteClass)); doInject = true; return; } } if (typeof emotesBTTV !== 'undefined' && settingsCookie["bda-es-2"]) { if(emotesBTTV.hasOwnProperty(sw) && sw.length >= 4) { if(text != null) { contents.splice(i + splice++, 0, document.createTextNode(text)); text = null;} var url = emotesBTTV[sw]; contents.splice(i + splice++, 0, self.createEmoteElement(sw, url, emoteClass)); doInject = true; return; } } if ((typeof emotesFfz !== 'undefined' && settingsCookie["bda-es-1"]) && (!skipffz || !emotesBTTV2.hasOwnProperty(sw))) { if(emotesFfz.hasOwnProperty(sw) && sw.length >= 4) { if(text != null) { contents.splice(i + splice++, 0, document.createTextNode(text)); text = null;} var url = ffzEmoteUrlStart + emotesFfz[sw] + ffzEmoteUrlEnd; contents.splice(i + splice++, 0, self.createEmoteElement(sw, url, emoteClass)); doInject = true; return; } } if (typeof emotesBTTV2 !== 'undefined' && settingsCookie["bda-es-2"]) { if(emotesBTTV2.hasOwnProperty(sw) && sw.length >= 4) { if(text != null) { contents.splice(i + splice++, 0, document.createTextNode(text)); text = null;} var url = bttvEmoteUrlStart + emotesBTTV2[sw] + bttvEmoteUrlEnd; if(skipffz && emotesFfz.hasOwnProperty(sw)) sw = sw + ":bttv"; contents.splice(i + splice++, 0, self.createEmoteElement(sw, url, emoteClass)); doInject = true; return; } } } if(text == null) { text = w; } else { text += "" + w; } if(index === a.length - 1) { contents.splice(i + splice, 0, document.createTextNode(text)); } }); if(doInject) { var oldHeight = parent.outerHeight(); parent.html(contents); var scrollPane = $(".scroller.messages").first(); scrollPane.scrollTop(scrollPane.scrollTop() + (parent.outerHeight() - oldHeight)); } }); } inject(); if(parent.children().hasClass("edited")) { setTimeout(inject, 250); } }; EmoteModule.prototype.createEmoteElement = function(word, url, mod) { var len = Math.round(word.length / 4); var name = word.substr(0, len) + "\uFDD9" + word.substr(len, len) + "\uFDD9" + word.substr(len * 2, len) + "\uFDD9" + word.substr(len * 3); var html = '' + name + ''; return $.parseHTML(html.replace(new RegExp("\uFDD9", "g"), ""))[0]; }; EmoteModule.prototype.autoCapitalize = function () { var self = this; $('body').delegate($(".channelTextArea-1HTP3C textarea:first"), 'keyup change paste', function () { if (!settingsCookie["bda-es-4"]) return; var text = $(".channelTextArea-1HTP3C textarea:first").val(); if (text == undefined) return; var lastWord = text.split(" ").pop(); if (lastWord.length > 3) { if (lastWord == "danSgame") return; var ret = self.capitalize(lastWord.toLowerCase()); if (ret !== null && ret !== undefined) { utils.insertText(utils.getTextArea()[0], text.replace(lastWord, ret)); } } }); }; EmoteModule.prototype.capitalize = function (value) { var res = emotesTwitch; for (var p in res) { if (res.hasOwnProperty(p) && value == (p + '').toLowerCase()) { return p; } } }; /* BetterDiscordApp QuickEmoteMenu JavaScript * Version: 1.3 * Author: Jiiks | http://jiiks.net * Date: 26/08/2015 - 11:49 * Last Update: 29/08/2015 - 11:46 * https://github.com/Jiiks/BetterDiscordApp */ function QuickEmoteMenu() { } QuickEmoteMenu.prototype.init = function() { $(document).on("mousedown", function(e) { if(e.target.id != "rmenu") $("#rmenu").remove(); }); this.favoriteEmotes = {}; var fe = bdStorage.get("bdfavemotes"); if (fe !== "" && fe !== null) { this.favoriteEmotes = JSON.parse(atob(fe)); } var qmeHeader=""; qmeHeader += "
"; qmeHeader += "