stuff
This commit is contained in:
parent
604a0f25c7
commit
20cb0ea28d
|
@ -2,7 +2,7 @@
|
||||||
* @name DisplayServersAsChannels
|
* @name DisplayServersAsChannels
|
||||||
* @author DevilBro
|
* @author DevilBro
|
||||||
* @authorId 278543574059057154
|
* @authorId 278543574059057154
|
||||||
* @version 1.4.7
|
* @version 1.4.8
|
||||||
* @description Displays Servers in a similar way as Channels
|
* @description Displays Servers in a similar way as Channels
|
||||||
* @invite Jx3TjNS
|
* @invite Jx3TjNS
|
||||||
* @donate https://www.paypal.me/MircoWittrien
|
* @donate https://www.paypal.me/MircoWittrien
|
||||||
|
@ -17,7 +17,7 @@ module.exports = (_ => {
|
||||||
"info": {
|
"info": {
|
||||||
"name": "DisplayServersAsChannels",
|
"name": "DisplayServersAsChannels",
|
||||||
"author": "DevilBro",
|
"author": "DevilBro",
|
||||||
"version": "1.4.7",
|
"version": "1.4.8",
|
||||||
"description": "Displays Servers in a similar way as Channels"
|
"description": "Displays Servers in a similar way as Channels"
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -306,6 +306,7 @@ module.exports = (_ => {
|
||||||
});
|
});
|
||||||
if (index > -1) {
|
if (index > -1) {
|
||||||
let insertElements = returnvalue => {
|
let insertElements = returnvalue => {
|
||||||
|
if (BDFDB.ReactUtils.findChild(parent, {props: [["className", BDFDB.disCN._displayserversaschannelsname]]})) return;
|
||||||
let childEles = [
|
let childEles = [
|
||||||
[
|
[
|
||||||
options.isDm && returnvalue.props.icon && BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.AvatarComponents.default, {
|
options.isDm && returnvalue.props.icon && BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.AvatarComponents.default, {
|
||||||
|
@ -527,6 +528,17 @@ module.exports = (_ => {
|
||||||
width: 100% !important;
|
width: 100% !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
${BDFDB.dotCN._displayserversaschannelsstyled} .typingindicator-guild,
|
||||||
|
${BDFDB.dotCN._displayserversaschannelsstyled} .typingindicator-dms,
|
||||||
|
${BDFDB.dotCN._displayserversaschannelsstyled} .typingindicator-folder {
|
||||||
|
position: static !important;
|
||||||
|
margin-left: -34px !important;
|
||||||
|
padding-left: 6px !important;
|
||||||
|
box-shadow: unset !important;
|
||||||
|
background: var(--background-primary) !important;
|
||||||
|
z-index: 1 !important;
|
||||||
|
}
|
||||||
|
|
||||||
#server-search ${BDFDB.dotCN.guildinner} {
|
#server-search ${BDFDB.dotCN.guildinner} {
|
||||||
width: ${amounts.serverListWidth - 20}px;
|
width: ${amounts.serverListWidth - 20}px;
|
||||||
height: ${amounts.serverElementHeight}px;
|
height: ${amounts.serverElementHeight}px;
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @name PluginRepo
|
* @name PluginRepo
|
||||||
* @author DevilBro
|
* @author DevilBro
|
||||||
* @authorId 278543574059057154
|
* @authorId 278543574059057154
|
||||||
* @version 2.1.6
|
* @version 2.1.7
|
||||||
* @description Allows you to look at all Plugins from the Plugin Repo and download them on the fly
|
* @description Allows you to look at all Plugins from the Plugin Repo and download them on the fly
|
||||||
* @invite Jx3TjNS
|
* @invite Jx3TjNS
|
||||||
* @donate https://www.paypal.me/MircoWittrien
|
* @donate https://www.paypal.me/MircoWittrien
|
||||||
|
@ -17,13 +17,8 @@ module.exports = (_ => {
|
||||||
"info": {
|
"info": {
|
||||||
"name": "PluginRepo",
|
"name": "PluginRepo",
|
||||||
"author": "DevilBro",
|
"author": "DevilBro",
|
||||||
"version": "2.1.6",
|
"version": "2.1.7",
|
||||||
"description": "Allows you to look at all Plugins from the Plugin Repo and download them on the fly"
|
"description": "Allows you to look at all Plugins from the Plugin Repo and download them on the fly"
|
||||||
},
|
|
||||||
"changeLog": {
|
|
||||||
"fixed": {
|
|
||||||
"New BD Beta": "Works 100% with the new BD Version"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -854,7 +849,7 @@ module.exports = (_ => {
|
||||||
let result = new RegExp(`[\\s\{\\}\[\\:,]${tag.replace("get", "").toLowerCase()}\\s*:\\s*([^\\{^\\}^\\[^\\]^:^,]+)`, "gi").exec(configString);
|
let result = new RegExp(`[\\s\{\\}\[\\:,]${tag.replace("get", "").toLowerCase()}\\s*:\\s*([^\\{^\\}^\\[^\\]^:^,]+)`, "gi").exec(configString);
|
||||||
if (result) setPluginParameter(plugin, tag, result[1]);
|
if (result) setPluginParameter(plugin, tag, result[1]);
|
||||||
}
|
}
|
||||||
if (!plugin.getAuthor) plugin.getAuthor = ((new RegExp(`[\\s\{\\}\[\\:,]authors\\s*:\\s*\\[\\s*(.+)\\s*\\]`, "gi").exec(configString) || [])[1] || "").split(/[\{\}\[\]:,]+\s*name\s*:/gi).slice(1).map(n => n.split(",")[0]).join(", ");
|
if (!plugin.getAuthor) plugin.getAuthor = ((new RegExp(`[\\s\{\\}\[\\:,]authors\\s*:\\s*\\[\\s*(.+?)\\s*\\]`, "gi").exec(configString) || [])[1] || "").split(/[\{\}\[\]:,]+\s*name\s*:/gi).slice(1).map(n => n.split(",")[0]).join(", ").trim();
|
||||||
if (!plugin.getDescription) {
|
if (!plugin.getDescription) {
|
||||||
let result = new RegExp(`[\\s\{\\}\[\\:,]desc\\s*:\\s*([^\\{^\\}^\\[^\\]^:^,]+)`, "gi").exec(configString);
|
let result = new RegExp(`[\\s\{\\}\[\\:,]desc\\s*:\\s*([^\\{^\\}^\\[^\\]^:^,]+)`, "gi").exec(configString);
|
||||||
if (result) setPluginParameter(plugin, "getDescription", result[1]);
|
if (result) setPluginParameter(plugin, "getDescription", result[1]);
|
||||||
|
|
|
@ -158,6 +158,7 @@
|
||||||
10. PLUGIN/THEMEREPO
|
10. PLUGIN/THEMEREPO
|
||||||
11. CHANNELHISTORY
|
11. CHANNELHISTORY
|
||||||
12. CHANNELTABS
|
12. CHANNELTABS
|
||||||
|
13. TYPINGINDICATOR
|
||||||
19. UPDATENOTICE
|
19. UPDATENOTICE
|
||||||
20. WATERMARK
|
20. WATERMARK
|
||||||
*/
|
*/
|
||||||
|
@ -8084,6 +8085,19 @@ html .channelTabs-newTab:hover {
|
||||||
color: var(--interactive-active);
|
color: var(--interactive-active);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ---- 18.13 CHANNELTABS ---- */
|
||||||
|
|
||||||
|
html .typingindicator-guild,
|
||||||
|
html .typingindicator-dms,
|
||||||
|
html .typingindicator-folder {
|
||||||
|
background: rgb(var(--vtransparencycolor), 0.2);
|
||||||
|
border: 4px solid rgb(var(--vtransparencycolor), 0.2);
|
||||||
|
box-shadow: unset;
|
||||||
|
right: 8px;
|
||||||
|
bottom: -5px;
|
||||||
|
padding: 2px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* ~~~~ 19. UPDATENOTICE ~~~~ */
|
/* ~~~~ 19. UPDATENOTICE ~~~~ */
|
||||||
|
|
||||||
|
|
|
@ -2296,7 +2296,6 @@ html .powercord-updater .debug-info b {
|
||||||
#server-search .wrapper-25eVIn:hover {
|
#server-search .wrapper-25eVIn:hover {
|
||||||
background-color: rgb(var(--vaccentcolor)) !important;
|
background-color: rgb(var(--vaccentcolor)) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ---- 15.5. CHANNELTABS ---- */
|
/* ---- 15.5. CHANNELTABS ---- */
|
||||||
|
|
||||||
.channelTabs-unreadBadge:not(.channelTabs-noUnread) {
|
.channelTabs-unreadBadge:not(.channelTabs-noUnread) {
|
||||||
|
|
|
@ -173,6 +173,7 @@ html {
|
||||||
14. PLUGINSUPPORT
|
14. PLUGINSUPPORT
|
||||||
1. MEMBERCOUNT
|
1. MEMBERCOUNT
|
||||||
2. CHANNELTABS
|
2. CHANNELTABS
|
||||||
|
3. TYPINGINDICATOR
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@ -4641,6 +4642,25 @@ html .channelTabs-newTab:hover {
|
||||||
color: var(--interactive-active);
|
color: var(--interactive-active);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ---- 14.3. TYPINGINDICATOR ---- */
|
||||||
|
|
||||||
|
html .typingindicator-guild,
|
||||||
|
html .typingindicator-dms,
|
||||||
|
html .typingindicator-folder {
|
||||||
|
background: var(--background-tertiary);
|
||||||
|
border: 4px solid var(--background-tertiary);
|
||||||
|
border-right: unset;
|
||||||
|
box-shadow: unset;
|
||||||
|
right: 12px;
|
||||||
|
bottom: -5px;
|
||||||
|
padding: 2px 0;
|
||||||
|
}
|
||||||
|
html .wrapper-3Njo_c .typingindicator-guild,
|
||||||
|
html .typingindicator-folder {
|
||||||
|
background: var(--background-secondary);
|
||||||
|
border-color: var(--background-secondary);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* ~~~~ 14. WATERMARK ~~~~ */
|
/* ~~~~ 14. WATERMARK ~~~~ */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue