Skip to content

Commit fd79d56

Browse files
committed
Plugin Fixes
1 parent 41dd912 commit fd79d56

File tree

23 files changed

+247
-247
lines changed

23 files changed

+247
-247
lines changed

Plugins/ChatAliases/ChatAliases.plugin.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @name ChatAliases
33
* @author DevilBro
44
* @authorId 278543574059057154
5-
* @version 2.4.7
5+
* @version 2.4.8
66
* @description Allows you to configure your own Aliases/Commands
77
* @invite Jx3TjNS
88
* @donate https://www.paypal.me/MircoWittrien
@@ -225,8 +225,8 @@ module.exports = (_ => {
225225
"Regex: Will treat the entered Word Value as a Regular Expression - ",
226226
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.Anchor, {href: "https://regexr.com/", children: BDFDB.LanguageUtils.LanguageStrings.HELP + "?"})
227227
]
228-
].map(string => BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormText, {
229-
type: BDFDB.LibraryComponents.FormComponents.FormText.Types.DESCRIPTION,
228+
].map(string => BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormText.Text, {
229+
type: BDFDB.LibraryComponents.FormText.Types.DESCRIPTION,
230230
children: string
231231
}))
232232
}));
@@ -361,7 +361,7 @@ module.exports = (_ => {
361361

362362
createInputs (values) {
363363
return [
364-
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormItem, {
364+
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormItem, {
365365
title: "Replace:",
366366
className: BDFDB.disCN.marginbottom8,
367367
children: BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.TextInput, {
@@ -379,7 +379,7 @@ module.exports = (_ => {
379379
}
380380
})
381381
}),
382-
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormItem, {
382+
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormItem, {
383383
title: "With:",
384384
className: BDFDB.disCN.marginbottom8,
385385
children: BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.TextInput, {

Plugins/ChatFilter/ChatFilter.plugin.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @name ChatFilter
33
* @author DevilBro
44
* @authorId 278543574059057154
5-
* @version 3.5.8
5+
* @version 3.5.9
66
* @description Allows you to censor Words or block complete Messages/Statuses
77
* @invite Jx3TjNS
88
* @donate https://www.paypal.me/MircoWittrien
@@ -259,8 +259,8 @@ module.exports = (_ => {
259259
"Regex: Will treat the entered Word Value as a Regular Expression. ",
260260
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.Anchor, {href: "https://regexr.com/", children: BDFDB.LanguageUtils.LanguageStrings.HELP + "?"})
261261
],
262-
].map(string => BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormText, {
263-
type: BDFDB.LibraryComponents.FormComponents.FormText.Types.DESCRIPTION,
262+
].map(string => BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormText.Text, {
263+
type: BDFDB.LibraryComponents.FormText.Types.DESCRIPTION,
264264
children: string
265265
}))
266266
}));
@@ -528,7 +528,7 @@ module.exports = (_ => {
528528
createInputs (values) {
529529
let wordValueInput;
530530
return [
531-
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormItem, {
531+
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormItem, {
532532
title: "Block/Censor:",
533533
className: BDFDB.disCN.marginbottom8,
534534
children: BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.TextInput, {
@@ -546,7 +546,7 @@ module.exports = (_ => {
546546
}
547547
})
548548
}),
549-
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormItem, {
549+
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormItem, {
550550
title: "With:",
551551
className: BDFDB.disCN.marginbottom8,
552552
children: BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.TextInput, {

Plugins/CompleteTimestamps/CompleteTimestamps.plugin.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @name CompleteTimestamps
33
* @author DevilBro
44
* @authorId 278543574059057154
5-
* @version 1.6.9
5+
* @version 1.7.0
66
* @description Replaces Timestamps with your own custom Timestamps
77
* @invite Jx3TjNS
88
* @donate https://www.paypal.me/MircoWittrien
@@ -151,7 +151,7 @@ module.exports = (_ => {
151151
}))
152152
}));
153153

154-
settingsItems.push(BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormDivider, {
154+
settingsItems.push(BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormDivider, {
155155
className: BDFDB.disCN.marginbottom8
156156
}));
157157

Plugins/CustomQuoter/CustomQuoter.plugin.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @name CustomQuoter
33
* @author DevilBro
44
* @authorId 278543574059057154
5-
* @version 1.3.6
5+
* @version 1.3.7
66
* @description Brings back the Quote Feature and allows you to set your own Quote Formats
77
* @invite Jx3TjNS
88
* @donate https://www.paypal.me/MircoWittrien
@@ -182,7 +182,7 @@ module.exports = (_ => {
182182
align: BDFDB.LibraryComponents.Flex.Align.END,
183183
children: [
184184
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.Flex.Child, {
185-
children: BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormItem, {
185+
children: BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormItem, {
186186
title: "Name:",
187187
children: BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.TextInput, {
188188
className: "input-newquote input-name",
@@ -192,7 +192,7 @@ module.exports = (_ => {
192192
})
193193
}),
194194
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.Flex.Child, {
195-
children: BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormItem, {
195+
children: BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormItem, {
196196
title: "Quote:",
197197
children: BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.TextInput, {
198198
className: "input-newquote input-quote",
@@ -218,7 +218,7 @@ module.exports = (_ => {
218218
})
219219
]
220220
}),
221-
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormDivider, {
221+
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormDivider, {
222222
className: BDFDB.disCN.marginbottom20
223223
})
224224
].concat(Object.keys(formats).map(key => BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.Card, {
@@ -272,8 +272,8 @@ module.exports = (_ => {
272272
"$serverName will be replaced with the Name of the Server",
273273
"$timestamp will be replaced with the Formatted Timestamp of the quoted Message",
274274
"$unixTimestamp will be replaced with the Unix Timestamp of the quoted Message"
275-
].map(string => BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormText, {
276-
type: BDFDB.LibraryComponents.FormComponents.FormText.Types.DESCRIPTION,
275+
].map(string => BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormText.Text, {
276+
type: BDFDB.LibraryComponents.FormText.Types.DESCRIPTION,
277277
children: string
278278
}))
279279
}));

Plugins/EditChannels/EditChannels.plugin.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @name EditChannels
33
* @author DevilBro
44
* @authorId 278543574059057154
5-
* @version 4.5.9
5+
* @version 4.6.0
66
* @description Allows you to locally edit Channels
77
* @invite Jx3TjNS
88
* @donate https://www.paypal.me/MircoWittrien
@@ -814,7 +814,7 @@ module.exports = (_ => {
814814
header: this.labels.modal_header,
815815
subHeader: channel.name,
816816
children: [
817-
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormItem, {
817+
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormItem, {
818818
title: this.labels.modal_channelname,
819819
className: BDFDB.disCN.marginbottom20,
820820
children: [
@@ -824,12 +824,12 @@ module.exports = (_ => {
824824
autoFocus: true,
825825
onChange: value => {newData.name = value;}
826826
}),
827-
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormDivider, {
827+
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormDivider, {
828828
className: BDFDB.disCN.dividerdefault
829829
})
830830
]
831831
}),
832-
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormItem, {
832+
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormItem, {
833833
title: this.labels.modal_colorpicker1,
834834
className: BDFDB.disCN.marginbottom20,
835835
children: [
@@ -843,33 +843,33 @@ module.exports = (_ => {
843843
type: "Switch",
844844
margin: 20,
845845
label: this.labels.modal_inheritcolor,
846-
tag: BDFDB.LibraryComponents.FormComponents.FormTags.H5,
846+
tag: BDFDB.LibraryComponents.FormTitle.Tags.H5,
847847
value: channel.isCategory() && data.inheritColor,
848848
disabled: !channel.isCategory(),
849849
onChange: value => {newData.inheritColor = value;}
850850
}),
851851
channel.isGroupDM() && BDFDB.ReactUtils.createElement("div", {
852852
className: BDFDB.disCN.marginbottom20,
853853
children: [
854-
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormDivider, {
854+
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormDivider, {
855855
className: BDFDB.disCNS.dividerdefault + BDFDB.disCN.marginbottom20
856856
}),
857857
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.Flex, {
858858
className: BDFDB.disCN.marginbottom8,
859859
align: BDFDB.LibraryComponents.Flex.Align.CENTER,
860860
direction: BDFDB.LibraryComponents.Flex.Direction.HORIZONTAL,
861861
children: [
862-
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormTitle, {
862+
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormTitle.Title, {
863863
className: BDFDB.disCN.marginreset,
864-
tag: BDFDB.LibraryComponents.FormComponents.FormTags.H5,
864+
tag: BDFDB.LibraryComponents.FormTitle.Tags.H5,
865865
children: this.labels.modal_channelicon
866866
}),
867867
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.SettingsItem, {
868868
type: "Switch",
869869
margin: 0,
870870
grow: 0,
871871
label: BDFDB.LanguageUtils.LanguageStrings.REMOVE,
872-
tag: BDFDB.LibraryComponents.FormComponents.FormTags.H5,
872+
tag: BDFDB.LibraryComponents.FormTitle.Tags.H5,
873873
value: data.removeIcon,
874874
onChange: value => {
875875
newData.removeIcon = value;

Plugins/EditRoles/EditRoles.plugin.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @name EditRoles
33
* @author DevilBro
44
* @authorId 278543574059057154
5-
* @version 1.1.9
5+
* @version 1.2.0
66
* @description Allows you to locally edit Roles
77
* @invite Jx3TjNS
88
* @donate https://www.paypal.me/MircoWittrien
@@ -297,7 +297,7 @@ module.exports = (_ => {
297297
header: this.labels.modal_header,
298298
subHeader: role.name,
299299
children: [
300-
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormItem, {
300+
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormItem, {
301301
title: BDFDB.LanguageUtils.LanguageStrings.FORM_LABEL_ROLE_NAME,
302302
className: BDFDB.disCN.marginbottom20,
303303
children: [
@@ -307,12 +307,12 @@ module.exports = (_ => {
307307
autoFocus: true,
308308
onChange: value => newData.name = value
309309
}),
310-
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormDivider, {
310+
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormDivider, {
311311
className: BDFDB.disCN.dividerdefault
312312
})
313313
]
314314
}),
315-
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormItem, {
315+
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormItem, {
316316
title: BDFDB.LanguageUtils.LanguageStrings.FORM_LABEL_ROLE_COLOR,
317317
className: BDFDB.disCN.marginbottom20,
318318
children: [
@@ -330,25 +330,25 @@ module.exports = (_ => {
330330
BDFDB.ReactUtils.createElement("div", {
331331
className: BDFDB.disCN.marginbottom20,
332332
children: [
333-
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormDivider, {
333+
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormDivider, {
334334
className: BDFDB.disCNS.dividerdefault + BDFDB.disCN.marginbottom20
335335
}),
336336
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.Flex, {
337337
className: BDFDB.disCN.marginbottom8,
338338
align: BDFDB.LibraryComponents.Flex.Align.CENTER,
339339
direction: BDFDB.LibraryComponents.Flex.Direction.HORIZONTAL,
340340
children: [
341-
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormTitle, {
341+
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormTitle.Title, {
342342
className: BDFDB.disCN.marginreset,
343-
tag: BDFDB.LibraryComponents.FormComponents.FormTags.H5,
343+
tag: BDFDB.LibraryComponents.FormTitle.Tags.H5,
344344
children: BDFDB.LanguageUtils.LanguageStrings.FORM_LABEL_ROLE_ICON
345345
}),
346346
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.SettingsItem, {
347347
type: "Switch",
348348
margin: 0,
349349
grow: 0,
350350
label: BDFDB.LanguageUtils.LanguageStrings.REMOVE,
351-
tag: BDFDB.LibraryComponents.FormComponents.FormTags.H5,
351+
tag: BDFDB.LibraryComponents.FormTitle.Tags.H5,
352352
value: data.removeIcon,
353353
onChange: value => {
354354
newData.removeIcon = value;

Plugins/EditServers/EditServers.plugin.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @name EditServers
33
* @author DevilBro
44
* @authorId 278543574059057154
5-
* @version 2.4.4
5+
* @version 2.4.5
66
* @description Allows you to locally edit Servers
77
* @invite Jx3TjNS
88
* @donate https://www.paypal.me/MircoWittrien
@@ -391,7 +391,7 @@ module.exports = (_ => {
391391
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.ModalComponents.ModalTabContent, {
392392
tab: this.labels.modal_tabheader1,
393393
children: [
394-
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormItem, {
394+
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormItem, {
395395
title: this.labels.modal_guildname,
396396
className: BDFDB.disCN.marginbottom20,
397397
children: BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.TextInput, {
@@ -408,7 +408,7 @@ module.exports = (_ => {
408408
}
409409
})
410410
}),
411-
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormItem, {
411+
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormItem, {
412412
title: this.labels.modal_guildacronym,
413413
className: BDFDB.disCN.marginbottom8,
414414
children:
@@ -423,7 +423,7 @@ module.exports = (_ => {
423423
type: "Switch",
424424
className: BDFDB.disCN.marginbottom20,
425425
label: this.labels.modal_ignorecustomname,
426-
tag: BDFDB.LibraryComponents.FormComponents.FormTags.H5,
426+
tag: BDFDB.LibraryComponents.FormTitle.Tags.H5,
427427
value: data.ignoreCustomName,
428428
onChange: value => {
429429
newData.ignoreCustomName = value;
@@ -439,17 +439,17 @@ module.exports = (_ => {
439439
align: BDFDB.LibraryComponents.Flex.Align.CENTER,
440440
direction: BDFDB.LibraryComponents.Flex.Direction.HORIZONTAL,
441441
children: [
442-
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormTitle, {
442+
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormTitle.Title, {
443443
className: BDFDB.disCN.marginreset,
444-
tag: BDFDB.LibraryComponents.FormComponents.FormTags.H5,
444+
tag: BDFDB.LibraryComponents.FormTitle.Tags.H5,
445445
children: BDFDB.LanguageUtils.LibraryStrings.guildicon
446446
}),
447447
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.SettingsItem, {
448448
type: "Switch",
449449
margin: 0,
450450
grow: 0,
451451
label: BDFDB.LanguageUtils.LanguageStrings.REMOVE,
452-
tag: BDFDB.LibraryComponents.FormComponents.FormTags.H5,
452+
tag: BDFDB.LibraryComponents.FormTitle.Tags.H5,
453453
value: data.removeIcon,
454454
onChange: value => {
455455
newData.removeIcon = value;
@@ -488,17 +488,17 @@ module.exports = (_ => {
488488
align: BDFDB.LibraryComponents.Flex.Align.CENTER,
489489
direction: BDFDB.LibraryComponents.Flex.Direction.HORIZONTAL,
490490
children: [
491-
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormTitle, {
491+
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormTitle.Title, {
492492
className: BDFDB.disCN.marginreset,
493-
tag: BDFDB.LibraryComponents.FormComponents.FormTags.H5,
493+
tag: BDFDB.LibraryComponents.FormTitle.Tags.H5,
494494
children: BDFDB.LanguageUtils.LibraryStrings.guildbanner
495495
}),
496496
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.SettingsItem, {
497497
type: "Switch",
498498
margin: 0,
499499
grow: 0,
500500
label: BDFDB.LanguageUtils.LanguageStrings.REMOVE,
501-
tag: BDFDB.LibraryComponents.FormComponents.FormTags.H5,
501+
tag: BDFDB.LibraryComponents.FormTitle.Tags.H5,
502502
value: data.removeBanner && guild.id != "410787888507256842",
503503
disabled: guild.id == "410787888507256842",
504504
onChange: value => {
@@ -535,7 +535,7 @@ module.exports = (_ => {
535535
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.ModalComponents.ModalTabContent, {
536536
tab: this.labels.modal_tabheader2,
537537
children: [
538-
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormItem, {
538+
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormItem, {
539539
title: this.labels.modal_colorpicker3,
540540
className: BDFDB.disCN.marginbottom20,
541541
children: [
@@ -545,7 +545,7 @@ module.exports = (_ => {
545545
})
546546
]
547547
}),
548-
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormItem, {
548+
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormItem, {
549549
title: this.labels.modal_colorpicker4,
550550
className: BDFDB.disCN.marginbottom20,
551551
children: [

0 commit comments

Comments
 (0)