/* BetterDiscordApp Core JavaScript * Version: 1.52 * Author: Jiiks | http://jiiks.net * Date: 27/08/2015 - 16:36 * Last Update: 24/010/2015 - 17:27 * https://github.com/Jiiks/BetterDiscordApp */ var settingsPanel, emoteModule, utils, quickEmoteMenu, opublicServers, voiceMode, pluginModule, themeModule; var jsVersion = 1.54; var supportedVersion = "0.2.3"; 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 }, "Public Servers": { "id": "bda-gs-1", "info": "Display public servers button", "implemented": true }, "Minimal Mode": { "id": "bda-gs-2", "info": "Hide elements and reduce the size of elements.", "implemented": true }, "Voice Mode": { "id": "bda-gs-4", "info": "Only show voice chat", "implemented": true }, "Hide Channels": { "id": "bda-gs-3", "info": "Hide channels in minimal mode", "implemented": true }, "Quick Emote Menu": { "id": "bda-es-0", "info": "Show quick emote menu for adding emotes", "implemented": true }, "Show Emotes": { "id": "bda-es-7", "info": "Show any emotes", "implemented": true }, "FrankerFaceZ Emotes": { "id": "bda-es-1", "info": "Show FrankerFaceZ Emotes", "implemented": true }, "BetterTTV Emotes": { "id": "bda-es-2", "info": "Show BetterTTV Emotes", "implemented": true }, "Emote Autocomplete": { "id": "bda-es-3", "info": "Autocomplete emote commands", "implemented": false }, "Emote Auto Capitalization": { "id": "bda-es-4", "info": "Autocapitalize emote commands", "implemented": true }, "Override Default Emotes": { "id": "bda-es-5", "info": "Override default emotes", "implemented": false }, "Show Names": { "id": "bda-es-6", "info": "Show emote names on hover", "implemented": true } } var links = { "Jiiks.net": { "text": "Jiiks.net", "href": "http://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": true, "bda-gs-2": false, "bda-gs-3": false, "bda-gs-4": false, "bda-es-0": true, "bda-es-1": false, "bda-es-2": false, "bda-es-3": false, "bda-es-4": false, "bda-es-5": true, "bda-es-6": true, "bda-es-7": true, "bda-jd": true }; var bdchangelog = { "changes": { "favemotes": { "title": "Favorite Emotes!", "text": "You can now favorite emotes and have them listed in the quick emote menu!", "img": "" }, "plugins": { "title": "Plugins!", "text": "Combined with Core 0.2.3, you can now write JavaScript plugins for Discord!", "img": "" }, "settingsmenu": { "title": "Settings Menu!", "text": "New and improved settings menu!", "img": "" }, "csseditor": { "title": "New CSS Editor!", "text": "New CSS Editor powered by CodeMirror!", "img": "" }, "minimalmode": { "title": "Minimal mode makeover!", "text": "New and improved minimal mode!", "img": "" } }, "fixes": { "reload": { "title": "Reload Fix!", "text": "Fixed an issue that caused Discord to crash on reload!", "img": "" }, "eemotes": { "title": "Edit Emotes!", "text": "Edited messages now display emotes properly!", "img": "" }, "pservers": { "title": "Public Servers", "text": "Public servers have been fixed!", "img": "" }, "other": { "title": "Bugfixes!", "text": "Several smaller bugs fixed!", "img": "" } }, "upcoming": { "ignore": { "title": "Ignore User!", "text": "Ignore users you don't like!", "img": "" }, "themes": { "title": "Custom themes!", "text": "Write your own or download custom themes!", "img": "" }, "favemotes": { "title": "Favorite emotes!", "text": "Add your favorite emote(s) to the quick emote menu!", "img": "" }, "more": { "title": "More Things!", "text": "More things but probably not in the next version!", "img": "" } } }; var settingsCookie = {}; function Core() {} Core.prototype.init = function() { var self = this; if(version < supportedVersion) { alert("BetterDiscord v" + version + "(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(); emoteModule.init(); this.initSettings(); this.initObserver(); //Incase were too fast function gwDefer() { console.log(new Date().getTime() + " Defer"); if($(".guilds-wrapper .guilds").children().length > 0) { console.log(new Date().getTime() + " Defer Loaded"); var guilds = $(".guilds>li:first-child"); guilds.after($("
  • ", { id: "bd-pub-li", css: { "height": "20px", "display": settingsCookie["bda-gs-1"] == true ? "" : "none" } }).append($("
    ", { class: "guild-inner", css: { "height": "20px", "border-radius": "4px" } }).append($("").append($("
    ", { css: { "line-height": "20px", "font-size": "12px" }, text: "public", id: "bd-pub-button" }))))); var showChannelsButton = $("' + '
    ' + '
    ' + '
    '; if(bdchangelog.changes != null) { changeLog += '' + '

    ' + ' New Stuff' + '

    ' + '
      '; for(var change in bdchangelog.changes) { change = bdchangelog.changes[change]; changeLog += '' + '
    • ' + ' '+change.title+'' + '
      '+change.text+'
      ' + '
    • '; } changeLog += '
    '; } if(bdchangelog.fixes != null) { changeLog += '' + '

    ' + ' Fixed' + '

    ' + '
      '; for(var fix in bdchangelog.fixes) { fix = bdchangelog.fixes[fix]; changeLog += '' + '
    • ' + ' '+fix.title+'' + '
      '+fix.text+'
      ' + '
    • '; } changeLog += '
    '; } if(bdchangelog.upcoming != null) { changeLog += '' + '

    ' + ' Coming Soon' + '

    ' + '
      '; for(var upc in bdchangelog.upcoming) { upc = bdchangelog.upcoming[upc]; changeLog += '' + '
    • ' + ' '+upc.title+'' + '
      '+upc.text+'
      ' + '
    • '; } changeLog += '
    '; } changeLog += '' + '
    ' + '
    ' + ' ' + '
    ' + ' ' + ''; return changeLog; };