Merge branch 'master' of https://github.com/mwittrien/BetterDiscordAddons
This commit is contained in:
commit
3d0d36bcbd
|
@ -4741,7 +4741,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"BDFDB_Patrons": {
|
"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"},
|
"596006086511689748": {"active": true, "t3": false, "custom": false, "text": "", "id": "Marshtomp"},
|
||||||
"89482511343702016": {"active": true, "t3": false, "custom": false, "text": "", "id": "AzukiPuddles"},
|
"89482511343702016": {"active": true, "t3": false, "custom": false, "text": "", "id": "AzukiPuddles"},
|
||||||
"341383936984875020": {"active": true, "t3": true, "custom": false, "text": "", "id": "dannycoch (DaCo)"},
|
"341383936984875020": {"active": true, "t3": true, "custom": false, "text": "", "id": "dannycoch (DaCo)"},
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @name EditServers
|
* @name EditServers
|
||||||
* @author DevilBro
|
* @author DevilBro
|
||||||
* @authorId 278543574059057154
|
* @authorId 278543574059057154
|
||||||
* @version 2.2.9
|
* @version 2.3.1
|
||||||
* @description Allows you to locally edit Servers
|
* @description Allows you to locally edit Servers
|
||||||
* @invite Jx3TjNS
|
* @invite Jx3TjNS
|
||||||
* @donate https://www.paypal.me/MircoWittrien
|
* @donate https://www.paypal.me/MircoWittrien
|
||||||
|
@ -17,12 +17,12 @@ module.exports = (_ => {
|
||||||
"info": {
|
"info": {
|
||||||
"name": "EditServers",
|
"name": "EditServers",
|
||||||
"author": "DevilBro",
|
"author": "DevilBro",
|
||||||
"version": "2.2.9",
|
"version": "2.3.1",
|
||||||
"description": "Allows you to locally edit Servers"
|
"description": "Allows you to locally edit Servers"
|
||||||
},
|
},
|
||||||
"changeLog": {
|
"changeLog": {
|
||||||
"improved": {
|
"fixed": {
|
||||||
"Icon Color": "Works again"
|
"Settings": "Shown again"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -183,6 +183,8 @@ module.exports = (_ => {
|
||||||
}),
|
}),
|
||||||
children: BDFDB.LanguageUtils.LanguageStrings.RESET
|
children: BDFDB.LanguageUtils.LanguageStrings.RESET
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
return settingsItems;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @name PluginRepo
|
* @name PluginRepo
|
||||||
* @author DevilBro
|
* @author DevilBro
|
||||||
* @authorId 278543574059057154
|
* @authorId 278543574059057154
|
||||||
* @version 2.2.1
|
* @version 2.2.2
|
||||||
* @description Allows you to download all Plugins from BD's Website within Discord
|
* @description Allows you to download all Plugins from BD's Website within Discord
|
||||||
* @invite Jx3TjNS
|
* @invite Jx3TjNS
|
||||||
* @donate https://www.paypal.me/MircoWittrien
|
* @donate https://www.paypal.me/MircoWittrien
|
||||||
|
@ -17,12 +17,15 @@ module.exports = (_ => {
|
||||||
"info": {
|
"info": {
|
||||||
"name": "PluginRepo",
|
"name": "PluginRepo",
|
||||||
"author": "DevilBro",
|
"author": "DevilBro",
|
||||||
"version": "2.2.1",
|
"version": "2.2.2",
|
||||||
"description": "Allows you to download all Plugins from BD's Website within Discord"
|
"description": "Allows you to download all Plugins from BD's Website within Discord"
|
||||||
},
|
},
|
||||||
"changeLog": {
|
"changeLog": {
|
||||||
"improved": {
|
"improved": {
|
||||||
"Thumbnail Conversion": "Moved Thumbnail Conversion to Card Component to reduce stress on BD Website"
|
"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",
|
title: "Show following Plugins",
|
||||||
children: Object.keys(_this.defaults.filters).map(key => BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.SettingsSaveItem, {
|
children: Object.keys(_this.defaults.filters).map(key => BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.SettingsSaveItem, {
|
||||||
type: "Switch",
|
type: "Switch",
|
||||||
plugin: this,
|
plugin: _this,
|
||||||
keys: ["filters", key],
|
keys: ["filters", key],
|
||||||
label: _this.defaults.filters[key].description,
|
label: _this.defaults.filters[key].description,
|
||||||
value: _this.settings.filters[key],
|
value: _this.settings.filters[key],
|
||||||
|
@ -218,7 +221,7 @@ module.exports = (_ => {
|
||||||
}),
|
}),
|
||||||
Object.keys(_this.defaults.general).map(key => BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.SettingsSaveItem, {
|
Object.keys(_this.defaults.general).map(key => BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.SettingsSaveItem, {
|
||||||
type: "Switch",
|
type: "Switch",
|
||||||
plugin: this,
|
plugin: _this,
|
||||||
keys: ["general", key],
|
keys: ["general", key],
|
||||||
label: _this.defaults.general[key].description,
|
label: _this.defaults.general[key].description,
|
||||||
note: key == "rnmStart" && !automaticLoading && "Automatic Loading has to be enabled",
|
note: key == "rnmStart" && !automaticLoading && "Automatic Loading has to be enabled",
|
||||||
|
@ -1069,4 +1072,4 @@ module.exports = (_ => {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
})(window.BDFDB_Global.PluginUtils.buildPlugin(config));
|
})(window.BDFDB_Global.PluginUtils.buildPlugin(config));
|
||||||
})();
|
})();
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @name ShowHiddenChannels
|
* @name ShowHiddenChannels
|
||||||
* @author DevilBro
|
* @author DevilBro
|
||||||
* @authorId 278543574059057154
|
* @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)
|
* @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
|
* @invite Jx3TjNS
|
||||||
* @donate https://www.paypal.me/MircoWittrien
|
* @donate https://www.paypal.me/MircoWittrien
|
||||||
|
@ -17,12 +17,15 @@ module.exports = (_ => {
|
||||||
"info": {
|
"info": {
|
||||||
"name": "ShowHiddenChannels",
|
"name": "ShowHiddenChannels",
|
||||||
"author": "DevilBro",
|
"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)"
|
"description": "Displays all hidden Channels, which can't be accessed due to Role Restrictions, this won't allow you to read them (impossible)"
|
||||||
},
|
},
|
||||||
"changeLog": {
|
"changeLog": {
|
||||||
"improved": {
|
"improved": {
|
||||||
"Channel Topic": "Formatting Channel Topic in Access Modal (makes Links clickable, etc)"
|
"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 () {
|
onSettingsClosed () {
|
||||||
if (this.SettingsUpdated) {
|
if (this.SettingsUpdated) {
|
||||||
|
@ -801,4 +799,4 @@ module.exports = (_ => {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
})(window.BDFDB_Global.PluginUtils.buildPlugin(config));
|
})(window.BDFDB_Global.PluginUtils.buildPlugin(config));
|
||||||
})();
|
})();
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @name ThemeRepo
|
* @name ThemeRepo
|
||||||
* @author DevilBro
|
* @author DevilBro
|
||||||
* @authorId 278543574059057154
|
* @authorId 278543574059057154
|
||||||
* @version 2.2.1
|
* @version 2.2.2
|
||||||
* @description Allows you to download all Themes from BD's Website within Discord
|
* @description Allows you to download all Themes from BD's Website within Discord
|
||||||
* @invite Jx3TjNS
|
* @invite Jx3TjNS
|
||||||
* @donate https://www.paypal.me/MircoWittrien
|
* @donate https://www.paypal.me/MircoWittrien
|
||||||
|
@ -17,12 +17,15 @@ module.exports = (_ => {
|
||||||
"info": {
|
"info": {
|
||||||
"name": "ThemeRepo",
|
"name": "ThemeRepo",
|
||||||
"author": "DevilBro",
|
"author": "DevilBro",
|
||||||
"version": "2.2.1",
|
"version": "2.2.2",
|
||||||
"description": "Allows you to download all Themes from BD's Website within Discord"
|
"description": "Allows you to download all Themes from BD's Website within Discord"
|
||||||
},
|
},
|
||||||
"changeLog": {
|
"changeLog": {
|
||||||
"improved": {
|
"improved": {
|
||||||
"Thumbnail Conversion": "Moved Thumbnail Conversion to Card Component to reduce stress on BD Website"
|
"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",
|
title: "Show following Themes",
|
||||||
children: Object.keys(_this.defaults.filters).map(key => BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.SettingsSaveItem, {
|
children: Object.keys(_this.defaults.filters).map(key => BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.SettingsSaveItem, {
|
||||||
type: "Switch",
|
type: "Switch",
|
||||||
plugin: this,
|
plugin: _this,
|
||||||
keys: ["filters", key],
|
keys: ["filters", key],
|
||||||
label: _this.defaults.filters[key].description,
|
label: _this.defaults.filters[key].description,
|
||||||
value: _this.settings.filters[key],
|
value: _this.settings.filters[key],
|
||||||
|
@ -565,7 +568,7 @@ module.exports = (_ => {
|
||||||
}),
|
}),
|
||||||
Object.keys(_this.defaults.general).map(key => BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.SettingsSaveItem, {
|
Object.keys(_this.defaults.general).map(key => BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.SettingsSaveItem, {
|
||||||
type: "Switch",
|
type: "Switch",
|
||||||
plugin: this,
|
plugin: _this,
|
||||||
keys: ["general", key],
|
keys: ["general", key],
|
||||||
label: _this.defaults.general[key].description,
|
label: _this.defaults.general[key].description,
|
||||||
note: key == "rnmStart" && !automaticLoading && "Automatic Loading has to be enabled",
|
note: key == "rnmStart" && !automaticLoading && "Automatic Loading has to be enabled",
|
||||||
|
@ -1623,4 +1626,4 @@ module.exports = (_ => {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
})(window.BDFDB_Global.PluginUtils.buildPlugin(config));
|
})(window.BDFDB_Global.PluginUtils.buildPlugin(config));
|
||||||
})();
|
})();
|
||||||
|
|
|
@ -2130,17 +2130,17 @@
|
||||||
|
|
||||||
.bd-switch input:checked + .bd-switch-body {
|
.bd-switch input:checked + .bd-switch-body {
|
||||||
--switch-color: rgba(var(--accentcolor), 0.8);
|
--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 {
|
.bd-switch input:active + .bd-switch-body {
|
||||||
--switch-color: rgba(var(--accentcolor));
|
--switch-color: rgba(var(--accentcolor));
|
||||||
}
|
}
|
||||||
.bd-switch input:checked:hover + .bd-switch-body {
|
.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 {
|
.bd-switch input:checked:active + .bd-switch-body {
|
||||||
--switch-color: rgb(var(--accentcolor));
|
--switch-color: rgb(var(--accentcolor));
|
||||||
background: var(--accentcolor-active);
|
background: var(--accentcolor-active) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
html .monaco-editor .find-widget .monaco-inputbox.synthetic-focus {
|
html .monaco-editor .find-widget .monaco-inputbox.synthetic-focus {
|
||||||
|
|
Loading…
Reference in New Issue