diff --git a/Plugins/EditChannels/EditChannels.plugin.js b/Plugins/EditChannels/EditChannels.plugin.js index 0a7605c0c0..e52f91c3d9 100644 --- a/Plugins/EditChannels/EditChannels.plugin.js +++ b/Plugins/EditChannels/EditChannels.plugin.js @@ -2,7 +2,7 @@ * @name EditChannels * @author DevilBro * @authorId 278543574059057154 - * @version 4.3.6 + * @version 4.3.7 * @description Allows you to locally edit Channels * @invite Jx3TjNS * @donate https://www.paypal.me/MircoWittrien @@ -17,12 +17,12 @@ module.exports = (_ => { "info": { "name": "EditChannels", "author": "DevilBro", - "version": "4.3.6", + "version": "4.3.7", "description": "Allows you to locally edit Channels" }, "changeLog": { "fixed": { - "PlatformIndicators": "Fixed Plugin Issue with PlatformIndicators that broke Features in the DM List" + "App Title": "Fixed an Issue where a changed App Title for a changed Channel would persist to the Friends Page" } } }; @@ -688,7 +688,7 @@ module.exports = (_ => { if (this.settings.places.appTitle) { let channel = BDFDB.LibraryModules.ChannelStore.getChannel(BDFDB.LibraryModules.LastChannelStore.getChannelId()); let title = document.head.querySelector("title"); - if (title && channel && changedChannels[channel.id] && changedChannels[channel.id].name) { + if (title && channel && (document.location.href || "").indexOf(channel.id) > -1 && changedChannels[channel.id] && changedChannels[channel.id].name) { if (BDFDB.ChannelUtils.isTextChannel(channel)) BDFDB.DOMUtils.setText(title, "#" + this.getChannelData(channel.id).name); else if (channel && channel.isGroupDM()) BDFDB.DOMUtils.setText(title, this.getGroupName(channel.id)); } diff --git a/Plugins/EditChannels/_res/screenshot2.png b/Plugins/EditChannels/_res/screenshot2.png index 29954635d0..940a9fe02e 100644 Binary files a/Plugins/EditChannels/_res/screenshot2.png and b/Plugins/EditChannels/_res/screenshot2.png differ diff --git a/Plugins/EditRoles/_res/screenshot2.png b/Plugins/EditRoles/_res/screenshot2.png index 0fedcc765a..6baf6daa8e 100644 Binary files a/Plugins/EditRoles/_res/screenshot2.png and b/Plugins/EditRoles/_res/screenshot2.png differ diff --git a/Plugins/EditServers/_res/screenshot2.png b/Plugins/EditServers/_res/screenshot2.png index 2605b1e2ed..1a680e69c4 100644 Binary files a/Plugins/EditServers/_res/screenshot2.png and b/Plugins/EditServers/_res/screenshot2.png differ diff --git a/Plugins/EditServers/_res/screenshot3.png b/Plugins/EditServers/_res/screenshot3.png index 40ac60e609..2d950edd9c 100644 Binary files a/Plugins/EditServers/_res/screenshot3.png and b/Plugins/EditServers/_res/screenshot3.png differ diff --git a/Plugins/EditServers/_res/screenshot4.png b/Plugins/EditServers/_res/screenshot4.png index acefa11bdf..088ca30810 100644 Binary files a/Plugins/EditServers/_res/screenshot4.png and b/Plugins/EditServers/_res/screenshot4.png differ diff --git a/Plugins/EditUsers/EditUsers.plugin.js b/Plugins/EditUsers/EditUsers.plugin.js index b2881d2d45..e0bfe5fe9c 100644 --- a/Plugins/EditUsers/EditUsers.plugin.js +++ b/Plugins/EditUsers/EditUsers.plugin.js @@ -17,12 +17,12 @@ module.exports = (_ => { "info": { "name": "EditUsers", "author": "DevilBro", - "version": "4.5.4", + "version": "4.5.5", "description": "Allows you to locally edit Users" }, "changeLog": { "fixed": { - "Voice Channels": "Works in Voice Channels again" + "App Title": "Fixed an Issue where a changed App Title for a changed User DM would persist to the Friends Page" } } }; @@ -1269,7 +1269,7 @@ module.exports = (_ => { changeAppTitle () { let channel = BDFDB.LibraryModules.ChannelStore.getChannel(BDFDB.LibraryModules.LastChannelStore.getChannelId()); let title = document.head.querySelector("title"); - if (title && channel && channel.isDM()) { + if (title && channel && channel.isDM() && (document.location.href || "").indexOf(channel.id) > -1) { let user = BDFDB.LibraryModules.UserStore.getUser(channel.recipients[0]); if (user) BDFDB.DOMUtils.setText(title, "@" + this.getUserData(user.id, this.settings.places.appTitle).username); } diff --git a/Plugins/EditUsers/_res/screenshot2.png b/Plugins/EditUsers/_res/screenshot2.png index 876af8debb..ef62ae4587 100644 Binary files a/Plugins/EditUsers/_res/screenshot2.png and b/Plugins/EditUsers/_res/screenshot2.png differ diff --git a/Plugins/EditUsers/_res/screenshot3.png b/Plugins/EditUsers/_res/screenshot3.png index 39c32b6088..cf9bfe9ffa 100644 Binary files a/Plugins/EditUsers/_res/screenshot3.png and b/Plugins/EditUsers/_res/screenshot3.png differ diff --git a/Plugins/EditUsers/_res/screenshot4.png b/Plugins/EditUsers/_res/screenshot4.png index f85287d8ec..44c7534a93 100644 Binary files a/Plugins/EditUsers/_res/screenshot4.png and b/Plugins/EditUsers/_res/screenshot4.png differ diff --git a/Plugins/EditUsers/_res/screenshot5.png b/Plugins/EditUsers/_res/screenshot5.png deleted file mode 100644 index 647ec168c3..0000000000 Binary files a/Plugins/EditUsers/_res/screenshot5.png and /dev/null differ diff --git a/Themes/BasicBackground/BasicBackground.css b/Themes/BasicBackground/BasicBackground.css index 57968a973d..cecefe65ab 100644 --- a/Themes/BasicBackground/BasicBackground.css +++ b/Themes/BasicBackground/BasicBackground.css @@ -93,6 +93,8 @@ --background-modifier-accent: rgba(var(--textbrightest),.1); --background-message-automod: rgba(var(--dangercolor),.05); --background-message-automod-hover: rgba(var(--dangercolor),.1); + --channeltextarea-background: rgba(var(--transparencycolor), .3); + --input-background: rgba(var(--transparencycolor), .1); --elevation-low: 0 1px 5px 0 rgba(var(--transparencycolor), .3); --elevation-high: 0 2px 10px 0 rgba(var(--transparencycolor), .3); --font-primary: var(--font) !important; diff --git a/Themes/DiscordRecolor/DiscordRecolor.css b/Themes/DiscordRecolor/DiscordRecolor.css index edddb6ef96..04cd6fba74 100644 --- a/Themes/DiscordRecolor/DiscordRecolor.css +++ b/Themes/DiscordRecolor/DiscordRecolor.css @@ -164,7 +164,7 @@ --channeltextarea-background: rgba(var(--backgroundaccent),.8); - --input-background: rgba(0,0,0,.1); + --input-background: rgb(var(--backgroundtertiary)); --activity-card-background: rgb(var(--backgroundtertiary));