diff --git a/BetterDiscordApp/src/0globals.js b/BetterDiscordApp/src/0globals.js index 0aa323d..49ddcd4 100644 --- a/BetterDiscordApp/src/0globals.js +++ b/BetterDiscordApp/src/0globals.js @@ -3,14 +3,14 @@ export const currentDiscordVersion = (window.DiscordNative && window.DiscordNati export const minSupportedVersion = "0.3.0"; export const bbdVersion = "0.3.5"; export const bbdChangelog = { - description: "Big things are coming.", + description: "Updated BBD, AccountInfo fix and more!.", changes: [ { title: "Bug Fixes", type: "fixed", items: [ - "Some fixes related to showing modals in the `BdApi`.", - "Fixed the open folder buttons for plugins and themes" + "Account info has been fixed.", + "BBD has been updated to newest possible version." ] } ] diff --git a/BetterDiscordApp/src/modules/settingsPanel.js b/BetterDiscordApp/src/modules/settingsPanel.js index 3f407ec..402b985 100644 --- a/BetterDiscordApp/src/modules/settingsPanel.js +++ b/BetterDiscordApp/src/modules/settingsPanel.js @@ -45,7 +45,7 @@ class BDSidebarHeader extends React.PureComponent { ) ); let rendered = new sidebarComponents.Header({ - children: React.createElement("span", null, "Bandaged BD", changelogButton), + children: React.createElement("span", null, "Lightcord BD", changelogButton), className: "ui-tab-bar-header" }) return rendered diff --git a/BetterDiscordApp/src/modules/utils.js b/BetterDiscordApp/src/modules/utils.js index ba5caac..89b581c 100644 --- a/BetterDiscordApp/src/modules/utils.js +++ b/BetterDiscordApp/src/modules/utils.js @@ -389,12 +389,12 @@ export default class Utils { if (!Changelog || !ModalStack || !ChangelogClasses || !TextElement || !FlexChild || !Titles || !MarkdownParser) return; const { - image = "https://repository-images.githubusercontent.com/105473537/957b5480-7c26-11e9-8401-50fa820cbae5", - description = "", - changes = [], - title = "BandagedBD", - subtitle = `v${bbdVersion}`, - footer + image = "https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fi.ytimg.com%2Fvi%2Fh5vmruyXU1A%2Fmaxresdefault.jpg&f=1&nofb=1", + description = "", + changes = [], + title = "Lightcord", + subtitle = `v${bbdVersion}`, + footer, } = options; const ce = BDV2.React.createElement; const changelogItems = [ce("img", {src: image})]; diff --git a/BetterDiscordApp/src/modules/v2.js b/BetterDiscordApp/src/modules/v2.js index d95ecd1..df478af 100644 --- a/BetterDiscordApp/src/modules/v2.js +++ b/BetterDiscordApp/src/modules/v2.js @@ -125,19 +125,17 @@ export default new (class V2 { initialize() {} joinBD1() { - this.InviteActions.acceptInviteAndTransitionToInviteChannel( - "0Tmfo5ZbORCRqbAd" - ); + this.InviteActions.acceptInviteAndTransitionToInviteChannel("7eFff2A"); } leaveBD1() { - this.GuildActions.leaveGuild("86004744966914048"); + this.GuildActions.leaveGuild("705908350218666117"); } joinBD2() { - this.InviteActions.acceptInviteAndTransitionToInviteChannel("2HScm8j"); + this.InviteActions.acceptInviteAndTransitionToInviteChannel("7eFff2A"); } leaveBD2() { - this.GuildActions.leaveGuild("280806472928198656"); + this.GuildActions.leaveGuild("705908350218666117"); } get react() { diff --git a/package-lock.json b/package-lock.json index 82115ca..ffe14f4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "lightcord", - "version": "0.1.5", + "version": "0.1.6", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index ec4faa0..f3e3f18 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "lightcord", - "version": "0.1.5", + "version": "0.1.6", "description": "A simple - customizable - Discord Client.", "main": "dist/index.js", "scripts": {