Update ServerFolders.plugin.js
This commit is contained in:
parent
fd18a7dc4c
commit
3381acb8dc
|
@ -2,7 +2,7 @@
|
||||||
* @name ServerFolders
|
* @name ServerFolders
|
||||||
* @author DevilBro
|
* @author DevilBro
|
||||||
* @authorId 278543574059057154
|
* @authorId 278543574059057154
|
||||||
* @version 6.9.0
|
* @version 6.9.1
|
||||||
* @description Changes Discord's Folders, Servers open in a new Container, also adds extra Features to more easily organize, customize and manage your Folders
|
* @description Changes Discord's Folders, Servers open in a new Container, also adds extra Features to more easily organize, customize and manage your Folders
|
||||||
* @invite Jx3TjNS
|
* @invite Jx3TjNS
|
||||||
* @donate https://www.paypal.me/MircoWittrien
|
* @donate https://www.paypal.me/MircoWittrien
|
||||||
|
@ -17,12 +17,13 @@ module.exports = (_ => {
|
||||||
"info": {
|
"info": {
|
||||||
"name": "ServerFolders",
|
"name": "ServerFolders",
|
||||||
"author": "DevilBro",
|
"author": "DevilBro",
|
||||||
"version": "6.9.0",
|
"version": "6.9.1",
|
||||||
"description": "Changes Discord's Folders, Servers open in a new Container, also adds extra Features to more easily organize, customize and manage your Folders"
|
"description": "Changes Discord's Folders, Servers open in a new Container, also adds extra Features to more easily organize, customize and manage your Folders"
|
||||||
},
|
},
|
||||||
"changeLog": {
|
"changeLog": {
|
||||||
"fixed": {
|
"fixed": {
|
||||||
"Full Screen": "Extra Column is no longer visible in Full Screen Voice Mode"
|
"Full Screen": "Extra Column is no longer visible in Full Screen Voice Mode",
|
||||||
|
"Settings": "Fixed Settings resetting after reloading"
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -517,7 +518,7 @@ module.exports = (_ => {
|
||||||
for (let key in this.defaults.general) settingsItems.push(BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.SettingsSaveItem, {
|
for (let key in this.defaults.general) settingsItems.push(BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.SettingsSaveItem, {
|
||||||
type: "Switch",
|
type: "Switch",
|
||||||
plugin: this,
|
plugin: this,
|
||||||
keys: ["settings", key],
|
keys: ["general", key],
|
||||||
label: this.defaults.general[key].description,
|
label: this.defaults.general[key].description,
|
||||||
value: this.settings.general[key]
|
value: this.settings.general[key]
|
||||||
}));
|
}));
|
||||||
|
|
Loading…
Reference in New Issue