repo plugins
This commit is contained in:
parent
44f23df725
commit
4a9b17648e
|
@ -2,7 +2,7 @@
|
||||||
* @name PluginRepo
|
* @name PluginRepo
|
||||||
* @author DevilBro
|
* @author DevilBro
|
||||||
* @authorId 278543574059057154
|
* @authorId 278543574059057154
|
||||||
* @version 2.1.4
|
* @version 2.1.5
|
||||||
* @description Allow you to look at all plugins from the plugin repo and download them on the fly
|
* @description Allow 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,12 +17,12 @@ module.exports = (_ => {
|
||||||
"info": {
|
"info": {
|
||||||
"name": "PluginRepo",
|
"name": "PluginRepo",
|
||||||
"author": "DevilBro",
|
"author": "DevilBro",
|
||||||
"version": "2.1.4",
|
"version": "2.1.5",
|
||||||
"description": "Allow you to look at all plugins from the plugin repo and download them on the fly"
|
"description": "Allow you to look at all plugins from the plugin repo and download them on the fly"
|
||||||
},
|
},
|
||||||
"changeLog": {
|
"changeLog": {
|
||||||
"progress": {
|
"fixed": {
|
||||||
"New Meta Headers": "Adjusted Update Check for new Plugin Meta Headers"
|
"Repo Header": "Repo Header gets added properly again"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -684,7 +684,7 @@ module.exports = (_ => {
|
||||||
}
|
}
|
||||||
|
|
||||||
processStandardSidebarView (e) {
|
processStandardSidebarView (e) {
|
||||||
if (BDFDB.ObjectUtils.get(e, "instance.props.content.props.section") == "pluginrepo") {
|
if (e.instance.props.section == "pluginrepo") {
|
||||||
let content = BDFDB.ReactUtils.findChild(e.returnvalue, {props: [["className", BDFDB.disCN.settingswindowcontentregion]]});
|
let content = BDFDB.ReactUtils.findChild(e.returnvalue, {props: [["className", BDFDB.disCN.settingswindowcontentregion]]});
|
||||||
if (content) content.props.className = BDFDB.DOMUtils.formatClassName(BDFDB.disCN._repolistwrapper, content.props.className);
|
if (content) content.props.className = BDFDB.DOMUtils.formatClassName(BDFDB.disCN._repolistwrapper, content.props.className);
|
||||||
let [children, index] = BDFDB.ReactUtils.findParent(e.returnvalue, {props: [["className", BDFDB.disCN.settingswindowcontentregionscroller]]});
|
let [children, index] = BDFDB.ReactUtils.findParent(e.returnvalue, {props: [["className", BDFDB.disCN.settingswindowcontentregionscroller]]});
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @name ThemeRepo
|
* @name ThemeRepo
|
||||||
* @author DevilBro
|
* @author DevilBro
|
||||||
* @authorId 278543574059057154
|
* @authorId 278543574059057154
|
||||||
* @version 2.1.3
|
* @version 2.1.5
|
||||||
* @description Allow you to preview all themes from the theme repo and download them on the fly
|
* @description Allow you to preview all themes from the theme repo and download them on the fly
|
||||||
* @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": "ThemeRepo",
|
"name": "ThemeRepo",
|
||||||
"author": "DevilBro",
|
"author": "DevilBro",
|
||||||
"version": "2.1.3",
|
"version": "2.1.5",
|
||||||
"description": "Allow you to preview all themes from the theme repo and download them on the fly"
|
"description": "Allow you to preview all themes from the theme repo and download them on the fly"
|
||||||
},
|
},
|
||||||
"changeLog": {
|
"changeLog": {
|
||||||
"fixed": {
|
"fixed": {
|
||||||
"New Settings Order": "Fixed for new settings order"
|
"Repo Header": "Repo Header gets added properly again"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -978,7 +978,7 @@ module.exports = (_ => {
|
||||||
}
|
}
|
||||||
|
|
||||||
processStandardSidebarView (e) {
|
processStandardSidebarView (e) {
|
||||||
if (BDFDB.ObjectUtils.get(e, "instance.props.content.props.section") == "themerepo") {
|
if (e.instance.props.section == "themerepo") {
|
||||||
let content = BDFDB.ReactUtils.findChild(e.returnvalue, {props: [["className", BDFDB.disCN.settingswindowcontentregion]]});
|
let content = BDFDB.ReactUtils.findChild(e.returnvalue, {props: [["className", BDFDB.disCN.settingswindowcontentregion]]});
|
||||||
if (content) content.props.className = BDFDB.DOMUtils.formatClassName(BDFDB.disCN._repolistwrapper, content.props.className);
|
if (content) content.props.className = BDFDB.DOMUtils.formatClassName(BDFDB.disCN._repolistwrapper, content.props.className);
|
||||||
let [children, index] = BDFDB.ReactUtils.findParent(e.returnvalue, {props: [["className", BDFDB.disCN.settingswindowcontentregionscroller]]});
|
let [children, index] = BDFDB.ReactUtils.findParent(e.returnvalue, {props: [["className", BDFDB.disCN.settingswindowcontentregionscroller]]});
|
||||||
|
|
Loading…
Reference in New Issue