From d3aea584c653f21a2feb9535491f4c97f42a9843 Mon Sep 17 00:00:00 2001 From: peshomir <80340328+peshomir@users.noreply.github.com> Date: Sat, 22 Mar 2025 23:25:10 +0200 Subject: [PATCH] Add a settings option to toggle displaying a player's donation history when clicking on their name in the leaderboard --- patches/patches.js | 2 +- src/settings.js | 7 +++++++ version.json | 1 + 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/patches/patches.js b/patches/patches.js index c66a8dc..53d719e 100644 --- a/patches/patches.js +++ b/patches/patches.js @@ -144,7 +144,7 @@ canvas.font=aY.g0.g1(1,fontSize),canvas.fillStyle="rgba("+gR+","+tD+","+hj+",0.6 // variable in the modified leaderboard click handler from the leaderboard filter) // match , 0 !== dG[x]) && fq.hB(x, 800, false, 0), replaceOne(/,(0!==\w+\.\w+\[(\w+)\])(\)&&\w+\.\w+\(\2,800,!1,0\),)/g, - `, ${dict.game}.${dict.gIsTeamGame} && __fx.donationsTracker.displayHistory($2, ${rawPlayerNames}, ${gIsSingleplayer}), $1 && !isEmptySpace $3`); + `, ${dict.game}.${dict.gIsTeamGame} && __fx.settings.openDonationHistoryFromLb && __fx.donationsTracker.displayHistory($2, ${rawPlayerNames}, ${gIsSingleplayer}), $1 && !isEmptySpace $3`); // Reset donation history and leaderboard filter when a new game is started replaceRawCode(",ab.dP(),ad.a10(),b5.nZ.oJ=[],bc.dP(),this.wE=1,", diff --git a/src/settings.js b/src/settings.js index b12f3d9..89f00b8 100644 --- a/src/settings.js +++ b/src/settings.js @@ -21,6 +21,7 @@ var settings = { hideBotNames: false, highlightClanSpawns: false, detailedTeamPercentage: false, + openDonationHistoryFromLb: true, //"customMapFileBtn": true customBackgroundUrl: "", keybindButtons: false, @@ -96,6 +97,12 @@ const settingsManager = new (function () { label: "Detailed team pie chart percentage", note: "For example: this would show 25.82% instead of 26% on the pie chart in team games" }, + { + for: "openDonationHistoryFromLb", + type: "checkbox", + label: "Open donation history from the leaderboard", + note: "Changes whether or not clicking on a player's name in the in-game leaderboard in team games will open their donation history", + }, { for: "customBackgroundUrl", type: "textInput", diff --git a/version.json b/version.json index 161b418..599319c 100644 --- a/version.json +++ b/version.json @@ -5,6 +5,7 @@ "Added a \"What's new\" screen (the one you're looking at right now!) which displays a changelog of the latest version", "Added custom lobby join links - to get one, click on the new \"Copy link\" button while in a lobby.", "Added version information at the bottom of the setting page along with a link to the FX Client Discord server and GitHub repository. Previously this was shown only in the vanilla version menu.", + "Added a settings option to toggle displaying a player's donation history when clicking on their name in the leaderboard (applies to team games only)", "The custom lobby server no longer tries to verify the compatibility of the client's protocol version. This will make custom lobbies usable immediately after an update, provided that the communication protocol has not changed significantly." ] } \ No newline at end of file