Update BetterFriendList.plugin.js

This commit is contained in:
Mirco Wittrien 2021-07-01 17:22:54 +02:00
parent 98eec11d45
commit fb04a92111
1 changed files with 12 additions and 2 deletions

View File

@ -2,7 +2,7 @@
* @name BetterFriendList * @name BetterFriendList
* @author DevilBro * @author DevilBro
* @authorId 278543574059057154 * @authorId 278543574059057154
* @version 1.3.4 * @version 1.3.5
* @description Adds extra Controls to the Friends Page, for example sort by Name/Status, Search and All/Request/Blocked Amount * @description Adds extra Controls to the Friends Page, for example sort by Name/Status, Search and All/Request/Blocked Amount
* @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": "BetterFriendList", "name": "BetterFriendList",
"author": "DevilBro", "author": "DevilBro",
"version": "1.3.4", "version": "1.3.5",
"description": "Adds extra Controls to the Friends Page, for example sort by Name/Status, Search and All/Request/Blocked Amount" "description": "Adds extra Controls to the Friends Page, for example sort by Name/Status, Search and All/Request/Blocked Amount"
}, },
"changeLog": { "changeLog": {
"added": { "added": {
"Hidden": "You can now hide Friends from your Friend List and put them into an extra category, allowing you to clean up your list without hurting someones feelings" "Hidden": "You can now hide Friends from your Friend List and put them into an extra category, allowing you to clean up your list without hurting someones feelings"
},
"fixed": {
"Online Count": "No longer includes hidden Friends"
} }
} }
}; };
@ -149,6 +152,13 @@ module.exports = (_ => {
sortReversed = false; sortReversed = false;
searchQuery = ""; searchQuery = "";
isHiddenSelected = false; isHiddenSelected = false;
BDFDB.PatchUtils.patch(this, BDFDB.LibraryModules.StatusMetaUtils, "getOnlineFriendCount", {after: e => {
if (this.settings.general.addHiddenCategory) for (let id of hiddenFriends) {
const status = BDFDB.UserUtils.getStatus(id);
if (status && status != BDFDB.DiscordConstants.StatusTypes.OFFLINE && e.returnValue > 0) e.returnValue--;
}
}});
this.forceUpdateAll(); this.forceUpdateAll();
} }