From 82effb10a91532f7df5241aae1bd8c0b24940711 Mon Sep 17 00:00:00 2001 From: Mirco Wittrien Date: Sat, 8 May 2021 09:19:43 +0200 Subject: [PATCH 1/7] Update PluginRepo.plugin.js --- Plugins/PluginRepo/PluginRepo.plugin.js | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/Plugins/PluginRepo/PluginRepo.plugin.js b/Plugins/PluginRepo/PluginRepo.plugin.js index e36fa2124c..01471a82b7 100644 --- a/Plugins/PluginRepo/PluginRepo.plugin.js +++ b/Plugins/PluginRepo/PluginRepo.plugin.js @@ -2,7 +2,7 @@ * @name PluginRepo * @author DevilBro * @authorId 278543574059057154 - * @version 2.2.1 + * @version 2.2.2 * @description Allows you to download all Plugins from BD's Website within Discord * @invite Jx3TjNS * @donate https://www.paypal.me/MircoWittrien @@ -17,12 +17,15 @@ module.exports = (_ => { "info": { "name": "PluginRepo", "author": "DevilBro", - "version": "2.2.1", + "version": "2.2.2", "description": "Allows you to download all Plugins from BD's Website within Discord" }, "changeLog": { "improved": { "Thumbnail Conversion": "Moved Thumbnail Conversion to Card Component to reduce stress on BD Website" + }, + "fixed": { + "Settings": "No longer get reset" } } }; @@ -206,7 +209,7 @@ module.exports = (_ => { title: "Show following Plugins", children: Object.keys(_this.defaults.filters).map(key => BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.SettingsSaveItem, { type: "Switch", - plugin: this, + plugin: _this, keys: ["filters", key], label: _this.defaults.filters[key].description, value: _this.settings.filters[key], @@ -218,7 +221,7 @@ module.exports = (_ => { }), Object.keys(_this.defaults.general).map(key => BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.SettingsSaveItem, { type: "Switch", - plugin: this, + plugin: _this, keys: ["general", key], label: _this.defaults.general[key].description, note: key == "rnmStart" && !automaticLoading && "Automatic Loading has to be enabled", @@ -1069,4 +1072,4 @@ module.exports = (_ => { } }; })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); -})(); \ No newline at end of file +})(); From a2e18249c19d5d3fbd3b2af4a82b2a411a4b7aed Mon Sep 17 00:00:00 2001 From: Mirco Wittrien Date: Sat, 8 May 2021 09:21:06 +0200 Subject: [PATCH 2/7] Update ThemeRepo.plugin.js --- Plugins/ThemeRepo/ThemeRepo.plugin.js | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/Plugins/ThemeRepo/ThemeRepo.plugin.js b/Plugins/ThemeRepo/ThemeRepo.plugin.js index 67a79300e0..ced4eb08ac 100644 --- a/Plugins/ThemeRepo/ThemeRepo.plugin.js +++ b/Plugins/ThemeRepo/ThemeRepo.plugin.js @@ -2,7 +2,7 @@ * @name ThemeRepo * @author DevilBro * @authorId 278543574059057154 - * @version 2.2.1 + * @version 2.2.2 * @description Allows you to download all Themes from BD's Website within Discord * @invite Jx3TjNS * @donate https://www.paypal.me/MircoWittrien @@ -17,12 +17,15 @@ module.exports = (_ => { "info": { "name": "ThemeRepo", "author": "DevilBro", - "version": "2.2.1", + "version": "2.2.2", "description": "Allows you to download all Themes from BD's Website within Discord" }, "changeLog": { "improved": { "Thumbnail Conversion": "Moved Thumbnail Conversion to Card Component to reduce stress on BD Website" + }, + "fixed": { + "Settings": "No longer get reset" } } }; @@ -553,7 +556,7 @@ module.exports = (_ => { title: "Show following Themes", children: Object.keys(_this.defaults.filters).map(key => BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.SettingsSaveItem, { type: "Switch", - plugin: this, + plugin: _this, keys: ["filters", key], label: _this.defaults.filters[key].description, value: _this.settings.filters[key], @@ -565,7 +568,7 @@ module.exports = (_ => { }), Object.keys(_this.defaults.general).map(key => BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.SettingsSaveItem, { type: "Switch", - plugin: this, + plugin: _this, keys: ["general", key], label: _this.defaults.general[key].description, note: key == "rnmStart" && !automaticLoading && "Automatic Loading has to be enabled", @@ -1623,4 +1626,4 @@ module.exports = (_ => { } }; })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); -})(); \ No newline at end of file +})(); From 16aa91b8075178c2bb474db08f09d5035abd367d Mon Sep 17 00:00:00 2001 From: Mirco Wittrien Date: Sat, 8 May 2021 12:30:38 +0200 Subject: [PATCH 3/7] Update BlurpleRecolor.css --- Themes/BlurpleRecolor/BlurpleRecolor.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Themes/BlurpleRecolor/BlurpleRecolor.css b/Themes/BlurpleRecolor/BlurpleRecolor.css index acdb7a5081..dab1e238d7 100644 --- a/Themes/BlurpleRecolor/BlurpleRecolor.css +++ b/Themes/BlurpleRecolor/BlurpleRecolor.css @@ -2127,17 +2127,17 @@ .bd-switch input:checked + .bd-switch-body { --switch-color: rgba(var(--accentcolor), 0.8); - background-color: rgba(var(--accentcolor), 0.8); + background-color: rgba(var(--accentcolor), 0.8) !important; } .bd-switch input:active + .bd-switch-body { --switch-color: rgba(var(--accentcolor)); } .bd-switch input:checked:hover + .bd-switch-body { - background: var(--accentcolor-hover); + background: var(--accentcolor-hover) !important; } .bd-switch input:checked:active + .bd-switch-body { --switch-color: rgb(var(--accentcolor)); - background: var(--accentcolor-active); + background: var(--accentcolor-active) !important; } html .monaco-editor .find-widget .monaco-inputbox.synthetic-focus { From 3942b16cb8a8037b02a62e48dfb9468635572bda Mon Sep 17 00:00:00 2001 From: Mirco Wittrien Date: Sat, 8 May 2021 13:55:03 +0200 Subject: [PATCH 4/7] Update ShowHiddenChannels.plugin.js --- .../ShowHiddenChannels.plugin.js | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Plugins/ShowHiddenChannels/ShowHiddenChannels.plugin.js b/Plugins/ShowHiddenChannels/ShowHiddenChannels.plugin.js index b7be81ca10..2172748cff 100644 --- a/Plugins/ShowHiddenChannels/ShowHiddenChannels.plugin.js +++ b/Plugins/ShowHiddenChannels/ShowHiddenChannels.plugin.js @@ -2,7 +2,7 @@ * @name ShowHiddenChannels * @author DevilBro * @authorId 278543574059057154 - * @version 2.9.6 + * @version 2.9.7 * @description Displays all hidden Channels, which can't be accessed due to Role Restrictions, this won't allow you to read them (impossible) * @invite Jx3TjNS * @donate https://www.paypal.me/MircoWittrien @@ -17,12 +17,15 @@ module.exports = (_ => { "info": { "name": "ShowHiddenChannels", "author": "DevilBro", - "version": "2.9.6", + "version": "2.9.7", "description": "Displays all hidden Channels, which can't be accessed due to Role Restrictions, this won't allow you to read them (impossible)" }, "changeLog": { "improved": { "Channel Topic": "Formatting Channel Topic in Access Modal (makes Links clickable, etc)" + }, + "fixed": { + "Settings": "Show again" } } }; @@ -316,11 +319,6 @@ module.exports = (_ => { } }); } - getSettingsPanel (collapseStates = {}) { - let settingsPanel, settingsItems = []; - - return settingsPanel = BDFDB.PluginUtils.createSettingsPanel(this, settingsItems); - } onSettingsClosed () { if (this.SettingsUpdated) { @@ -801,4 +799,4 @@ module.exports = (_ => { } }; })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); -})(); \ No newline at end of file +})(); From 550c15c79aefd9025f6a099bfe41f7fdba098d3b Mon Sep 17 00:00:00 2001 From: Mirco Wittrien Date: Mon, 10 May 2021 03:35:43 +0200 Subject: [PATCH 5/7] Update EditServers.plugin.js --- Plugins/EditServers/EditServers.plugin.js | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Plugins/EditServers/EditServers.plugin.js b/Plugins/EditServers/EditServers.plugin.js index 52e7c54649..76cb232aed 100644 --- a/Plugins/EditServers/EditServers.plugin.js +++ b/Plugins/EditServers/EditServers.plugin.js @@ -2,7 +2,7 @@ * @name EditServers * @author DevilBro * @authorId 278543574059057154 - * @version 2.2.9 + * @version 2.3.0 * @description Allows you to locally edit Servers * @invite Jx3TjNS * @donate https://www.paypal.me/MircoWittrien @@ -17,12 +17,12 @@ module.exports = (_ => { "info": { "name": "EditServers", "author": "DevilBro", - "version": "2.2.9", + "version": "2.3.0", "description": "Allows you to locally edit Servers" }, "changeLog": { - "improved": { - "Icon Color": "Works again" + "fixed": { + "Settings": "Shown again" } } }; @@ -182,7 +182,9 @@ module.exports = (_ => { this.forceUpdateAll();; }), children: BDFDB.LanguageUtils.LanguageStrings.RESET - })); + }));.LanguageUtils.LanguageStrings.RESET + + return settingsItems; } }); } From 0124796a3771a7bf045a1db985165100d6cbe161 Mon Sep 17 00:00:00 2001 From: Mirco Wittrien Date: Mon, 10 May 2021 09:10:56 +0200 Subject: [PATCH 6/7] Update EditServers.plugin.js --- Plugins/EditServers/EditServers.plugin.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Plugins/EditServers/EditServers.plugin.js b/Plugins/EditServers/EditServers.plugin.js index 76cb232aed..bc218da46e 100644 --- a/Plugins/EditServers/EditServers.plugin.js +++ b/Plugins/EditServers/EditServers.plugin.js @@ -2,7 +2,7 @@ * @name EditServers * @author DevilBro * @authorId 278543574059057154 - * @version 2.3.0 + * @version 2.3.1 * @description Allows you to locally edit Servers * @invite Jx3TjNS * @donate https://www.paypal.me/MircoWittrien @@ -17,7 +17,7 @@ module.exports = (_ => { "info": { "name": "EditServers", "author": "DevilBro", - "version": "2.3.0", + "version": "2.3.1", "description": "Allows you to locally edit Servers" }, "changeLog": { @@ -182,7 +182,7 @@ module.exports = (_ => { this.forceUpdateAll();; }), children: BDFDB.LanguageUtils.LanguageStrings.RESET - }));.LanguageUtils.LanguageStrings.RESET + })); return settingsItems; } From 84aa29452920fd82952b3a12822478394de46941 Mon Sep 17 00:00:00 2001 From: Mirco Wittrien Date: Tue, 11 May 2021 05:27:13 +0200 Subject: [PATCH 7/7] Update BDFDB.data.json --- Library/_res/BDFDB.data.json | 1 - 1 file changed, 1 deletion(-) diff --git a/Library/_res/BDFDB.data.json b/Library/_res/BDFDB.data.json index ce9e91755c..3aef024d75 100644 --- a/Library/_res/BDFDB.data.json +++ b/Library/_res/BDFDB.data.json @@ -4741,7 +4741,6 @@ } }, "BDFDB_Patrons": { - "838434341197316126": {"active": true, "t3": true, "custom": true, "text": "Allmächtig", "id": "EXITIUM / K E R"}, "596006086511689748": {"active": true, "t3": false, "custom": false, "text": "", "id": "Marshtomp"}, "89482511343702016": {"active": true, "t3": false, "custom": false, "text": "", "id": "AzukiPuddles"}, "341383936984875020": {"active": true, "t3": true, "custom": false, "text": "", "id": "dannycoch (DaCo)"},