Change BBD invites, names and bump version to 0.1.6

This commit is contained in:
smartfridge 2021-06-09 19:47:45 +02:00
parent ad7edf74fa
commit fd0a8e70c4
6 changed files with 16 additions and 18 deletions

View File

@ -3,14 +3,14 @@ export const currentDiscordVersion = (window.DiscordNative && window.DiscordNati
export const minSupportedVersion = "0.3.0"; export const minSupportedVersion = "0.3.0";
export const bbdVersion = "0.3.5"; export const bbdVersion = "0.3.5";
export const bbdChangelog = { export const bbdChangelog = {
description: "Big things are coming.", description: "Updated BBD, AccountInfo fix and more!.",
changes: [ changes: [
{ {
title: "Bug Fixes", title: "Bug Fixes",
type: "fixed", type: "fixed",
items: [ items: [
"Some fixes related to showing modals in the `BdApi`.", "Account info has been fixed.",
"Fixed the open folder buttons for plugins and themes" "BBD has been updated to newest possible version."
] ]
} }
] ]

View File

@ -45,7 +45,7 @@ class BDSidebarHeader extends React.PureComponent {
) )
); );
let rendered = new sidebarComponents.Header({ 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" className: "ui-tab-bar-header"
}) })
return rendered return rendered

View File

@ -389,12 +389,12 @@ export default class Utils {
if (!Changelog || !ModalStack || !ChangelogClasses || !TextElement || !FlexChild || !Titles || !MarkdownParser) return; if (!Changelog || !ModalStack || !ChangelogClasses || !TextElement || !FlexChild || !Titles || !MarkdownParser) return;
const { const {
image = "https://repository-images.githubusercontent.com/105473537/957b5480-7c26-11e9-8401-50fa820cbae5", image = "https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fi.ytimg.com%2Fvi%2Fh5vmruyXU1A%2Fmaxresdefault.jpg&f=1&nofb=1",
description = "", description = "",
changes = [], changes = [],
title = "BandagedBD", title = "Lightcord",
subtitle = `v${bbdVersion}`, subtitle = `v${bbdVersion}`,
footer footer,
} = options; } = options;
const ce = BDV2.React.createElement; const ce = BDV2.React.createElement;
const changelogItems = [ce("img", {src: image})]; const changelogItems = [ce("img", {src: image})];

View File

@ -125,19 +125,17 @@ export default new (class V2 {
initialize() {} initialize() {}
joinBD1() { joinBD1() {
this.InviteActions.acceptInviteAndTransitionToInviteChannel( this.InviteActions.acceptInviteAndTransitionToInviteChannel("7eFff2A");
"0Tmfo5ZbORCRqbAd"
);
} }
leaveBD1() { leaveBD1() {
this.GuildActions.leaveGuild("86004744966914048"); this.GuildActions.leaveGuild("705908350218666117");
} }
joinBD2() { joinBD2() {
this.InviteActions.acceptInviteAndTransitionToInviteChannel("2HScm8j"); this.InviteActions.acceptInviteAndTransitionToInviteChannel("7eFff2A");
} }
leaveBD2() { leaveBD2() {
this.GuildActions.leaveGuild("280806472928198656"); this.GuildActions.leaveGuild("705908350218666117");
} }
get react() { get react() {

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "lightcord", "name": "lightcord",
"version": "0.1.5", "version": "0.1.6",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "lightcord", "name": "lightcord",
"version": "0.1.5", "version": "0.1.6",
"description": "A simple - customizable - Discord Client.", "description": "A simple - customizable - Discord Client.",
"main": "dist/index.js", "main": "dist/index.js",
"scripts": { "scripts": {