diff --git a/Plugins/BetterFriendList/BetterFriendList.plugin.js b/Plugins/BetterFriendList/BetterFriendList.plugin.js index a340e3022c..50a1300a92 100644 --- a/Plugins/BetterFriendList/BetterFriendList.plugin.js +++ b/Plugins/BetterFriendList/BetterFriendList.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "BetterFriendList", - "author": "DevilBro", - "version": "1.4.6", - "description": "Adds extra Controls to the Friends Page, for example sort by Name/Status, Search and All/Request/Blocked Amount" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -762,5 +756,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); \ No newline at end of file diff --git a/Plugins/BetterNsfwTag/BetterNsfwTag.plugin.js b/Plugins/BetterNsfwTag/BetterNsfwTag.plugin.js index 553690398b..b1444d154d 100644 --- a/Plugins/BetterNsfwTag/BetterNsfwTag.plugin.js +++ b/Plugins/BetterNsfwTag/BetterNsfwTag.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "BetterNsfwTag", - "author": "DevilBro", - "version": "1.3.0", - "description": "Adds a more noticeable Tag to NSFW Channels" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -97,5 +91,5 @@ module.exports = (_ => { })); } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/BetterSearchPage/BetterSearchPage.plugin.js b/Plugins/BetterSearchPage/BetterSearchPage.plugin.js index 197b2090fd..912832e07f 100644 --- a/Plugins/BetterSearchPage/BetterSearchPage.plugin.js +++ b/Plugins/BetterSearchPage/BetterSearchPage.plugin.js @@ -13,18 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "BetterSearchPage", - "author": "DevilBro", - "version": "1.2.0", - "description": "Adds some extra Controls to the Search Results Page" - }, - "changeLog": { - "fixed": { - "Jump Input": "No longer adds jump input if there is only one page of search results" - } - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -161,5 +150,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); \ No newline at end of file diff --git a/Plugins/CharCounter/CharCounter.plugin.js b/Plugins/CharCounter/CharCounter.plugin.js index 4ff9b9fdd8..e47cd3d042 100644 --- a/Plugins/CharCounter/CharCounter.plugin.js +++ b/Plugins/CharCounter/CharCounter.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "CharCounter", - "author": "DevilBro", - "version": "1.6.1", - "description": "Adds a Character Counter to most Inputs" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -233,5 +227,5 @@ module.exports = (_ => { })); } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/ChatAliases/ChatAliases.plugin.js b/Plugins/ChatAliases/ChatAliases.plugin.js index 5e08f409c9..eb0db943c9 100644 --- a/Plugins/ChatAliases/ChatAliases.plugin.js +++ b/Plugins/ChatAliases/ChatAliases.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "ChatAliases", - "author": "DevilBro", - "version": "2.4.3", - "description": "Allows you to configure your own Aliases/Commands" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -543,5 +537,5 @@ module.exports = (_ => { BDFDB.DataUtils.save(aliases, this, "words"); } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/ChatFilter/ChatFilter.plugin.js b/Plugins/ChatFilter/ChatFilter.plugin.js index ae1f13cee3..acebfad6f8 100644 --- a/Plugins/ChatFilter/ChatFilter.plugin.js +++ b/Plugins/ChatFilter/ChatFilter.plugin.js @@ -13,18 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "ChatFilter", - "author": "DevilBro", - "version": "3.5.5", - "description": "Allows you to censor Words or block complete Messages/Statuses" - }, - "changeLog": { - "fixed": { - "Custom Emojis with segmented Searchs": "Custom Emojis no longer cause segmented Searchs to ignore the rest of a sentence" - } - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -599,5 +588,5 @@ module.exports = (_ => { BDFDB.DataUtils.save(words, this, "words"); } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); \ No newline at end of file diff --git a/Plugins/ClickableMentions/ClickableMentions.plugin.js b/Plugins/ClickableMentions/ClickableMentions.plugin.js index c44dae6769..186e43dcc6 100644 --- a/Plugins/ClickableMentions/ClickableMentions.plugin.js +++ b/Plugins/ClickableMentions/ClickableMentions.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "ClickableMentions", - "author": "DevilBro", - "version": "1.0.3", - "description": "Allows you to open a User Popout by clicking a Mention in your Message Input" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -102,5 +96,5 @@ module.exports = (_ => { }); } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/CompleteTimestamps/CompleteTimestamps.plugin.js b/Plugins/CompleteTimestamps/CompleteTimestamps.plugin.js index f474472d8b..47b61f4cac 100644 --- a/Plugins/CompleteTimestamps/CompleteTimestamps.plugin.js +++ b/Plugins/CompleteTimestamps/CompleteTimestamps.plugin.js @@ -13,18 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "CompleteTimestamps", - "author": "DevilBro", - "version": "1.6.1", - "description": "Replaces Timestamps with your own custom Timestamps" - }, - "changeLog": { - "improved": { - "Markup Timestamps": "Only changes Timestamps with no formatting flag or the lowercase f flag, since those are the standard timestamps, meaning it does no longer change markup timestamps with a relative R or full flag F" - } - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -287,5 +276,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/CopyRawMessage/CopyRawMessage.plugin.js b/Plugins/CopyRawMessage/CopyRawMessage.plugin.js index b5dada53f0..9e40457e55 100644 --- a/Plugins/CopyRawMessage/CopyRawMessage.plugin.js +++ b/Plugins/CopyRawMessage/CopyRawMessage.plugin.js @@ -13,18 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "CopyRawMessage", - "author": "DevilBro", - "version": "1.1.3", - "description": "Allows you to copy the raw Contents of a Message" - }, - "changeLog": { - "added": { - "Embed JSON": "Can now copy embed in json format" - } - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -171,5 +160,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); \ No newline at end of file diff --git a/Plugins/CreationDate/CreationDate.plugin.js b/Plugins/CreationDate/CreationDate.plugin.js index 2e99ff72f1..fe8e791362 100644 --- a/Plugins/CreationDate/CreationDate.plugin.js +++ b/Plugins/CreationDate/CreationDate.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "CreationDate", - "author": "DevilBro", - "version": "1.4.7", - "description": "Displays the Creation Date of an Account in the UserPopout and UserModal" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -300,5 +294,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); \ No newline at end of file diff --git a/Plugins/CustomQuoter/CustomQuoter.plugin.js b/Plugins/CustomQuoter/CustomQuoter.plugin.js index 677f3239a7..58c6dca99f 100644 --- a/Plugins/CustomQuoter/CustomQuoter.plugin.js +++ b/Plugins/CustomQuoter/CustomQuoter.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "CustomQuoter", - "author": "DevilBro", - "version": "1.2.9", - "description": "Brings back the Quote Feature and allows you to set your own Quote Formats" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -535,5 +529,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/CustomStatusPresets/CustomStatusPresets.plugin.js b/Plugins/CustomStatusPresets/CustomStatusPresets.plugin.js index aeb0a09042..920d83b823 100644 --- a/Plugins/CustomStatusPresets/CustomStatusPresets.plugin.js +++ b/Plugins/CustomStatusPresets/CustomStatusPresets.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "CustomStatusPresets", - "author": "DevilBro", - "version": "1.1.3", - "description": "Allows you to save Custom Statuses as Quick Select" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -536,5 +530,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/DisplayServersAsChannels/DisplayServersAsChannels.plugin.js b/Plugins/DisplayServersAsChannels/DisplayServersAsChannels.plugin.js index 24bd2b8987..b7483b6fa2 100644 --- a/Plugins/DisplayServersAsChannels/DisplayServersAsChannels.plugin.js +++ b/Plugins/DisplayServersAsChannels/DisplayServersAsChannels.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "DisplayServersAsChannels", - "author": "DevilBro", - "version": "1.5.9", - "description": "Displays Servers in a similar way as Channels" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -605,5 +599,5 @@ module.exports = (_ => { }`); } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/EditChannels/EditChannels.plugin.js b/Plugins/EditChannels/EditChannels.plugin.js index 543c1a7866..f1c80a2b61 100644 --- a/Plugins/EditChannels/EditChannels.plugin.js +++ b/Plugins/EditChannels/EditChannels.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "EditChannels", - "author": "DevilBro", - "version": "4.4.1", - "description": "Allows you to locally edit Channels" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -1373,5 +1367,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/EditRoles/EditRoles.plugin.js b/Plugins/EditRoles/EditRoles.plugin.js index 640c1b7bea..dae697794b 100644 --- a/Plugins/EditRoles/EditRoles.plugin.js +++ b/Plugins/EditRoles/EditRoles.plugin.js @@ -13,18 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "EditRoles", - "author": "DevilBro", - "version": "1.0.9", - "description": "Allows you to locally edit Roles" - }, - "changeLog": { - "fixed": { - "Remove Icon": "Now works again" - } - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -677,5 +666,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); \ No newline at end of file diff --git a/Plugins/EditServers/EditServers.plugin.js b/Plugins/EditServers/EditServers.plugin.js index ed296e9acb..3e2c1f29ad 100644 --- a/Plugins/EditServers/EditServers.plugin.js +++ b/Plugins/EditServers/EditServers.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "EditServers", - "author": "DevilBro", - "version": "2.3.8", - "description": "Allows you to locally edit Servers" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -1259,5 +1253,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/EditUsers/EditUsers.plugin.js b/Plugins/EditUsers/EditUsers.plugin.js index 3f759081a5..0499c2aae9 100644 --- a/Plugins/EditUsers/EditUsers.plugin.js +++ b/Plugins/EditUsers/EditUsers.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "EditUsers", - "author": "DevilBro", - "version": "4.6.4", - "description": "Allows you to locally edit Users" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -2581,5 +2575,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/EmojiStatistics/EmojiStatistics.plugin.js b/Plugins/EmojiStatistics/EmojiStatistics.plugin.js index 1e6f85cd30..5677952297 100644 --- a/Plugins/EmojiStatistics/EmojiStatistics.plugin.js +++ b/Plugins/EmojiStatistics/EmojiStatistics.plugin.js @@ -13,18 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "EmojiStatistics", - "author": "DevilBro", - "version": "2.9.8", - "description": "Shows you an Overview of Emojis and Emoji Servers" - }, - "changeLog": { - "improved": { - "Swapped Position": "Swapped Position with the Diversity Selector" - } - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -467,5 +456,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); \ No newline at end of file diff --git a/Plugins/ForceImagePreviews/ForceImagePreviews.plugin.js b/Plugins/ForceImagePreviews/ForceImagePreviews.plugin.js index db32bf1085..83463dee03 100644 --- a/Plugins/ForceImagePreviews/ForceImagePreviews.plugin.js +++ b/Plugins/ForceImagePreviews/ForceImagePreviews.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "ForceImagePreviews", - "author": "DevilBro", - "version": "1.2.0", - "description": "Forces unrendered embedded Image Previews to render. Caution: Externals Images can contain malicious code and reveal your IP!" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -169,5 +163,5 @@ module.exports = (_ => { return false; } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); \ No newline at end of file diff --git a/Plugins/FriendNotifications/FriendNotifications.plugin.js b/Plugins/FriendNotifications/FriendNotifications.plugin.js index 6295a3a97d..2580125338 100644 --- a/Plugins/FriendNotifications/FriendNotifications.plugin.js +++ b/Plugins/FriendNotifications/FriendNotifications.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "FriendNotifications", - "author": "DevilBro", - "version": "1.8.2", - "description": "Shows a Notification when a Friend or a User, you choose to observe, changes their Status" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -1119,5 +1113,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); \ No newline at end of file diff --git a/Plugins/GameActivityToggle/GameActivityToggle.plugin.js b/Plugins/GameActivityToggle/GameActivityToggle.plugin.js index 199147d6d2..15aa3f7535 100644 --- a/Plugins/GameActivityToggle/GameActivityToggle.plugin.js +++ b/Plugins/GameActivityToggle/GameActivityToggle.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "GameActivityToggle", - "author": "DevilBro", - "version": "1.1.4", - "description": "Adds a Quick-Toggle Game Activity Button" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -387,5 +381,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/GoogleSearchReplace/GoogleSearchReplace.plugin.js b/Plugins/GoogleSearchReplace/GoogleSearchReplace.plugin.js index 9b7e76c541..9cc9dfc990 100644 --- a/Plugins/GoogleSearchReplace/GoogleSearchReplace.plugin.js +++ b/Plugins/GoogleSearchReplace/GoogleSearchReplace.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "GoogleSearchReplace", - "author": "DevilBro", - "version": "1.3.3", - "description": "Replaces the default Google Text Search with a custom Search Engine" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -326,5 +320,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/HideMutedCategories/HideMutedCategories.plugin.js b/Plugins/HideMutedCategories/HideMutedCategories.plugin.js index 067f7b1334..1f13f1d8c8 100644 --- a/Plugins/HideMutedCategories/HideMutedCategories.plugin.js +++ b/Plugins/HideMutedCategories/HideMutedCategories.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "HideMutedCategories", - "author": "DevilBro", - "version": "1.0.9", - "description": "Hides muted Categories, if muted Channels are hidden" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -150,5 +144,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); \ No newline at end of file diff --git a/Plugins/ImageUtilities/ImageUtilities.plugin.js b/Plugins/ImageUtilities/ImageUtilities.plugin.js index e76d0cac4b..29bef39968 100644 --- a/Plugins/ImageUtilities/ImageUtilities.plugin.js +++ b/Plugins/ImageUtilities/ImageUtilities.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "ImageUtilities", - "author": "DevilBro", - "version": "4.8.4", - "description": "Adds several Utilities for Images/Videos (Gallery, Download, Reverse Search, Zoom, Copy, etc.)" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -2008,5 +2002,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/JoinedAtDate/JoinedAtDate.plugin.js b/Plugins/JoinedAtDate/JoinedAtDate.plugin.js index 31e6241ce8..9da74e5fc5 100644 --- a/Plugins/JoinedAtDate/JoinedAtDate.plugin.js +++ b/Plugins/JoinedAtDate/JoinedAtDate.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "JoinedAtDate", - "author": "DevilBro", - "version": "1.3.4", - "description": "Displays the Joined At Date of a Member in the UserPopout and UserModal" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -353,5 +347,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); \ No newline at end of file diff --git a/Plugins/LastMessageDate/LastMessageDate.plugin.js b/Plugins/LastMessageDate/LastMessageDate.plugin.js index 930cbc8a3d..445383f194 100644 --- a/Plugins/LastMessageDate/LastMessageDate.plugin.js +++ b/Plugins/LastMessageDate/LastMessageDate.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "LastMessageDate", - "author": "DevilBro", - "version": "1.3.1", - "description": "Displays the Last Message Date of a Member for the current Server/DM in the UserPopout and UserModal" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -372,5 +366,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); \ No newline at end of file diff --git a/Plugins/MessageUtilities/MessageUtilities.plugin.js b/Plugins/MessageUtilities/MessageUtilities.plugin.js index d960c0b158..2fe7e623c1 100644 --- a/Plugins/MessageUtilities/MessageUtilities.plugin.js +++ b/Plugins/MessageUtilities/MessageUtilities.plugin.js @@ -13,18 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "MessageUtilities", - "author": "DevilBro", - "version": "1.9.4", - "description": "Adds several Quick Actions for Messages (Delete, Edit, Pin, etc.)" - }, - "changeLog": { - "fixed": { - "Reply auto Mention off": "No longer auto disables mentions for the reply action if the hotkey uses shift" - } - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -585,5 +574,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/NotificationSounds/NotificationSounds.plugin.js b/Plugins/NotificationSounds/NotificationSounds.plugin.js index 93ade71dfe..887b0482de 100644 --- a/Plugins/NotificationSounds/NotificationSounds.plugin.js +++ b/Plugins/NotificationSounds/NotificationSounds.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "NotificationSounds", - "author": "DevilBro", - "version": "3.7.2", - "description": "Allows you to replace the native Sounds with custom Sounds" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -743,5 +737,5 @@ module.exports = (_ => { return type != "human_man" && type != "robot_man" && type != "discodo" && type != "overlayunlock" && type != "call_ringing_beat" && !(type != "message1" && /\d$/.test(type)); } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/OldTitleBar/OldTitleBar.plugin.js b/Plugins/OldTitleBar/OldTitleBar.plugin.js index 5df2465abf..bc538cf17b 100644 --- a/Plugins/OldTitleBar/OldTitleBar.plugin.js +++ b/Plugins/OldTitleBar/OldTitleBar.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "OldTitleBar", - "author": "DevilBro", - "version": "1.7.5", - "description": "Allows you to switch to Discord's old Titlebar" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -330,5 +324,5 @@ module.exports = (_ => { return {x: window.screenX, y: window.screenY, width: window.outerWidth, height: window.outerHeight}; } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/OpenSteamLinksInApp/OpenSteamLinksInApp.plugin.js b/Plugins/OpenSteamLinksInApp/OpenSteamLinksInApp.plugin.js index 3dfe2cf062..f3f949debe 100644 --- a/Plugins/OpenSteamLinksInApp/OpenSteamLinksInApp.plugin.js +++ b/Plugins/OpenSteamLinksInApp/OpenSteamLinksInApp.plugin.js @@ -13,18 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "OpenSteamLinksInApp", - "author": "DevilBro", - "version": "1.1.4", - "description": "Opens Steam Links in Steam instead of your Browser" - }, - "changeLog": { - "fixed": { - "Zoomable Images": "No longer tries to open zoomable Images inside Steam" - } - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -97,5 +86,5 @@ module.exports = (_ => { }); } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); \ No newline at end of file diff --git a/Plugins/PersonalPins/PersonalPins.plugin.js b/Plugins/PersonalPins/PersonalPins.plugin.js index 07ea94a0a3..cb5aba73e6 100644 --- a/Plugins/PersonalPins/PersonalPins.plugin.js +++ b/Plugins/PersonalPins/PersonalPins.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "PersonalPins", - "author": "DevilBro", - "version": "2.1.1", - "description": "Allows you to locally pin Messages" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -1129,5 +1123,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); \ No newline at end of file diff --git a/Plugins/PinDMs/PinDMs.plugin.js b/Plugins/PinDMs/PinDMs.plugin.js index 5e36324725..c462135448 100644 --- a/Plugins/PinDMs/PinDMs.plugin.js +++ b/Plugins/PinDMs/PinDMs.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "PinDMs", - "author": "DevilBro", - "version": "1.9.3", - "description": "Allows you to pin DMs, making them appear at the top of your DMs/ServerList" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -1342,5 +1336,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/PluginRepo/PluginRepo.plugin.js b/Plugins/PluginRepo/PluginRepo.plugin.js index 5ea2df5e7a..237d66783b 100644 --- a/Plugins/PluginRepo/PluginRepo.plugin.js +++ b/Plugins/PluginRepo/PluginRepo.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "PluginRepo", - "author": "DevilBro", - "version": "2.3.7", - "description": "Allows you to download all Plugins from BD's Website within Discord" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -1125,5 +1119,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/QuickMention/QuickMention.plugin.js b/Plugins/QuickMention/QuickMention.plugin.js index d29b7d7b85..cd6831df60 100644 --- a/Plugins/QuickMention/QuickMention.plugin.js +++ b/Plugins/QuickMention/QuickMention.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "QuickMention", - "author": "DevilBro", - "version": "1.0.4", - "description": "Adds a Quick Mention Button to the Message Options Bar" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -86,5 +80,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/ReadAllNotificationsButton/ReadAllNotificationsButton.plugin.js b/Plugins/ReadAllNotificationsButton/ReadAllNotificationsButton.plugin.js index 78d6005560..a5f80725e8 100644 --- a/Plugins/ReadAllNotificationsButton/ReadAllNotificationsButton.plugin.js +++ b/Plugins/ReadAllNotificationsButton/ReadAllNotificationsButton.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "ReadAllNotificationsButton", - "author": "DevilBro", - "version": "1.7.1", - "description": "Adds a Clear Button to the Server List and the Mentions Popout" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -686,5 +680,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); \ No newline at end of file diff --git a/Plugins/RemoveBlockedUsers/RemoveBlockedUsers.plugin.js b/Plugins/RemoveBlockedUsers/RemoveBlockedUsers.plugin.js index bea7117e7d..58eb7029f3 100644 --- a/Plugins/RemoveBlockedUsers/RemoveBlockedUsers.plugin.js +++ b/Plugins/RemoveBlockedUsers/RemoveBlockedUsers.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "RemoveBlockedUsers", - "author": "DevilBro", - "version": "1.5.2", - "description": "Removes blocked Messages/Users" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -558,5 +552,5 @@ module.exports = (_ => { return recipients.length > 0 ? recipients.map(u => u.toString()).join(", ") : BDFDB.LanguageUtils.LanguageStrings.UNNAMED; } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/RemoveNicknames/RemoveNicknames.plugin.js b/Plugins/RemoveNicknames/RemoveNicknames.plugin.js index ef8d989fc9..d6c185235f 100644 --- a/Plugins/RemoveNicknames/RemoveNicknames.plugin.js +++ b/Plugins/RemoveNicknames/RemoveNicknames.plugin.js @@ -13,18 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "RemoveNicknames", - "author": "DevilBro", - "version": "1.4.1", - "description": "Replaces Nicknames with Accountnames" - }, - "changeLog": { - "fixed": { - "Mentions": "" - } - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -282,5 +271,5 @@ module.exports = (_ => { return this.settings.general.addNickname ? (this.settings.general.swapPositions ? (member.nick + " (" + username + ")") : (username + " (" + member.nick + ")")) : username; } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/RevealAllSpoilers/RevealAllSpoilers.plugin.js b/Plugins/RevealAllSpoilers/RevealAllSpoilers.plugin.js index 1d6be0a7fe..e74c42afd2 100644 --- a/Plugins/RevealAllSpoilers/RevealAllSpoilers.plugin.js +++ b/Plugins/RevealAllSpoilers/RevealAllSpoilers.plugin.js @@ -13,18 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "RevealAllSpoilers", - "author": "DevilBro", - "version": "1.0.9", - "description": "Allows you to reveal all Spoilers within a Message/Status by holding the Ctrl Key and clicking a Spoiler" - }, - "changeLog": { - "added": { - "Whole Chat": "Hold Ctrl+Shift and click a spoiler to reveal all spoilers in the current message window" - } - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -92,5 +81,5 @@ module.exports = (_ => { }}, {force: true, noCache: true}); } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); \ No newline at end of file diff --git a/Plugins/ServerCounter/ServerCounter.plugin.js b/Plugins/ServerCounter/ServerCounter.plugin.js index b70f468072..b9de1a7a47 100644 --- a/Plugins/ServerCounter/ServerCounter.plugin.js +++ b/Plugins/ServerCounter/ServerCounter.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "ServerCounter", - "author": "DevilBro", - "version": "1.0.5", - "description": "Adds a Server Counter to the Server List" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -88,5 +82,5 @@ module.exports = (_ => { })); } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/ServerDetails/ServerDetails.plugin.js b/Plugins/ServerDetails/ServerDetails.plugin.js index 7ab1fc6110..59ebb1155f 100644 --- a/Plugins/ServerDetails/ServerDetails.plugin.js +++ b/Plugins/ServerDetails/ServerDetails.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "ServerDetails", - "author": "DevilBro", - "version": "1.1.2", - "description": "Shows Server Details in the Server List Tooltip" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -518,5 +512,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/ServerFolders/ServerFolders.plugin.js b/Plugins/ServerFolders/ServerFolders.plugin.js index 1621dae9d3..d9f271dd28 100644 --- a/Plugins/ServerFolders/ServerFolders.plugin.js +++ b/Plugins/ServerFolders/ServerFolders.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "ServerFolders", - "author": "DevilBro", - "version": "7.0.3", - "description": "Changes Discord's Folders, Servers open in a new Container, also adds extra Features to more easily organize, customize and manage your Folders" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -1954,5 +1948,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/ServerHider/ServerHider.plugin.js b/Plugins/ServerHider/ServerHider.plugin.js index eee4c1cd30..3f0c1a96b4 100644 --- a/Plugins/ServerHider/ServerHider.plugin.js +++ b/Plugins/ServerHider/ServerHider.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "ServerHider", - "author": "DevilBro", - "version": "6.2.4", - "description": "Allows you to hide certain Servers in your Server List" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -543,5 +537,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); \ No newline at end of file diff --git a/Plugins/ShowBadgesInChat/ShowBadgesInChat.plugin.js b/Plugins/ShowBadgesInChat/ShowBadgesInChat.plugin.js index 423e2e9148..c86d65d5ee 100644 --- a/Plugins/ShowBadgesInChat/ShowBadgesInChat.plugin.js +++ b/Plugins/ShowBadgesInChat/ShowBadgesInChat.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "ShowBadgesInChat", - "author": "DevilBro", - "version": "1.9.1", - "description": "Displays Badges (Nitro, Hypesquad, etc...) in the Chat/MemberList/DMList" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -446,5 +440,5 @@ module.exports = (_ => { return wrappers; } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/ShowConnections/ShowConnections.plugin.js b/Plugins/ShowConnections/ShowConnections.plugin.js index c3e70ff3c7..139f9aea89 100644 --- a/Plugins/ShowConnections/ShowConnections.plugin.js +++ b/Plugins/ShowConnections/ShowConnections.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "ShowConnections", - "author": "DevilBro", - "version": "1.1.0", - "description": "Shows the connected Accounts of a User in the UserPopout" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -253,5 +247,5 @@ module.exports = (_ => { }, true)); } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/ShowHiddenChannels/ShowHiddenChannels.plugin.js b/Plugins/ShowHiddenChannels/ShowHiddenChannels.plugin.js index 3aff725f4c..86fee5d001 100644 --- a/Plugins/ShowHiddenChannels/ShowHiddenChannels.plugin.js +++ b/Plugins/ShowHiddenChannels/ShowHiddenChannels.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "ShowHiddenChannels", - "author": "DevilBro", - "version": "3.2.5", - "description": "Displays all hidden Channels, which can't be accessed due to Role Restrictions, this won't allow you to read them (impossible)" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -896,5 +890,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/SpellCheck/SpellCheck.plugin.js b/Plugins/SpellCheck/SpellCheck.plugin.js index 23528c5d28..b24ef5268d 100644 --- a/Plugins/SpellCheck/SpellCheck.plugin.js +++ b/Plugins/SpellCheck/SpellCheck.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "SpellCheck", - "author": "DevilBro", - "version": "1.6.4", - "description": "Adds a Spell Check to all Message Inputs. Select a Word and Right Click it to add it to your Dictionary" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -706,5 +700,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/SplitLargeMessages/SplitLargeMessages.plugin.js b/Plugins/SplitLargeMessages/SplitLargeMessages.plugin.js index e73a715861..474a2827e9 100644 --- a/Plugins/SplitLargeMessages/SplitLargeMessages.plugin.js +++ b/Plugins/SplitLargeMessages/SplitLargeMessages.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "SplitLargeMessages", - "author": "DevilBro", - "version": "1.7.7", - "description": "Allows you to enter larger Messages, which will automatically split into several smaller Messages" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -337,5 +331,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/SpotifyControls/SpotifyControls.plugin.js b/Plugins/SpotifyControls/SpotifyControls.plugin.js index cd31f45ffc..8e8c90229b 100644 --- a/Plugins/SpotifyControls/SpotifyControls.plugin.js +++ b/Plugins/SpotifyControls/SpotifyControls.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "SpotifyControls", - "author": "DevilBro", - "version": "1.2.7", - "description": "Adds a Control Panel while listening to Spotify on a connected Account" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -1105,5 +1099,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/StaffTag/StaffTag.plugin.js b/Plugins/StaffTag/StaffTag.plugin.js index 9ec2f64f47..b8c892edaa 100644 --- a/Plugins/StaffTag/StaffTag.plugin.js +++ b/Plugins/StaffTag/StaffTag.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "StaffTag", - "author": "DevilBro", - "version": "1.5.5", - "description": "Adds a Crown/Tag to Server Owners (or Admins/Management)" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -587,5 +581,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); \ No newline at end of file diff --git a/Plugins/ThemeRepo/ThemeRepo.plugin.js b/Plugins/ThemeRepo/ThemeRepo.plugin.js index 0be609b0b8..66a155df09 100644 --- a/Plugins/ThemeRepo/ThemeRepo.plugin.js +++ b/Plugins/ThemeRepo/ThemeRepo.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "ThemeRepo", - "author": "DevilBro", - "version": "2.3.8", - "description": "Allows you to download all Themes from BD's Website within Discord" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -1684,5 +1678,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/ThemeSettings/ThemeSettings.plugin.js b/Plugins/ThemeSettings/ThemeSettings.plugin.js index a57a02cc24..65125e5d45 100644 --- a/Plugins/ThemeSettings/ThemeSettings.plugin.js +++ b/Plugins/ThemeSettings/ThemeSettings.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "ThemeSettings", - "author": "DevilBro", - "version": "1.3.4", - "description": "Allows you to change Theme Variables within Discord. Adds a Settings button (similar to Plugins) to customizable Themes in your Themes Page" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -264,5 +258,5 @@ module.exports = (_ => { else BDFDB.NotificationUtils.toast(`Could not find Theme File '${addon.filename}'`, {type: "danger"}); } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); \ No newline at end of file diff --git a/Plugins/TimedLightDarkMode/TimedLightDarkMode.plugin.js b/Plugins/TimedLightDarkMode/TimedLightDarkMode.plugin.js index 10c324f372..f48330d671 100644 --- a/Plugins/TimedLightDarkMode/TimedLightDarkMode.plugin.js +++ b/Plugins/TimedLightDarkMode/TimedLightDarkMode.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "TimedLightDarkMode", - "author": "DevilBro", - "version": "1.1.3", - "description": "Adds a Time Slider to the Appearance Settings" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -255,5 +249,5 @@ module.exports = (_ => { return [hours, minutes]; } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); \ No newline at end of file diff --git a/Plugins/TopRoleEverywhere/TopRoleEverywhere.plugin.js b/Plugins/TopRoleEverywhere/TopRoleEverywhere.plugin.js index cd6398edb9..9c0b400527 100644 --- a/Plugins/TopRoleEverywhere/TopRoleEverywhere.plugin.js +++ b/Plugins/TopRoleEverywhere/TopRoleEverywhere.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "TopRoleEverywhere", - "author": "DevilBro", - "version": "3.0.9", - "description": "Adds the highest Role of a User as a Tag" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -252,5 +246,5 @@ module.exports = (_ => { }); } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); \ No newline at end of file diff --git a/Plugins/Translator/Translator.plugin.js b/Plugins/Translator/Translator.plugin.js index 3ecb34d807..d90a45c915 100644 --- a/Plugins/Translator/Translator.plugin.js +++ b/Plugins/Translator/Translator.plugin.js @@ -13,18 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "Translator", - "author": "DevilBro", - "version": "2.3.9", - "description": "Allows you to translate Messages and your outgoing Messages within Discord" - }, - "changeLog": { - "fixed": { - "Replies": "Previews in Replies are now translated again" - } - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -1662,5 +1651,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); diff --git a/Plugins/UserNotes/UserNotes.plugin.js b/Plugins/UserNotes/UserNotes.plugin.js index bd2986d3f5..721d43d5aa 100644 --- a/Plugins/UserNotes/UserNotes.plugin.js +++ b/Plugins/UserNotes/UserNotes.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "UserNotes", - "author": "DevilBro", - "version": "1.0.9", - "description": "Allows you to write User Notes locally" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -246,5 +240,5 @@ module.exports = (_ => { } } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })(); \ No newline at end of file diff --git a/Plugins/WriteUpperCase/WriteUpperCase.plugin.js b/Plugins/WriteUpperCase/WriteUpperCase.plugin.js index e3d2b817ee..728341b2dd 100644 --- a/Plugins/WriteUpperCase/WriteUpperCase.plugin.js +++ b/Plugins/WriteUpperCase/WriteUpperCase.plugin.js @@ -13,13 +13,7 @@ */ module.exports = (_ => { - const config = { - "info": { - "name": "WriteUpperCase", - "author": "DevilBro", - "version": "1.3.6", - "description": "Changes the first Letter of each Sentence in Message Inputs to Uppercase" - } + const changeLog = { }; return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class { @@ -242,5 +236,5 @@ module.exports = (_ => { return newString; } }; - })(window.BDFDB_Global.PluginUtils.buildPlugin(config)); + })(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog)); })();