From 23b92f6f639de353398b27609ab79a4067a3fd14 Mon Sep 17 00:00:00 2001 From: peshomir <80340328+peshomir@users.noreply.github.com> Date: Thu, 6 Feb 2025 13:05:11 +0200 Subject: [PATCH] Fix for detailed clan pie chart percentage --- patches.js | 1 + src/main.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/patches.js b/patches.js index df190ba..75706e7 100644 --- a/patches.js +++ b/patches.js @@ -365,6 +365,7 @@ canvas.font=aY.g0.g1(1,fontSize),canvas.fillStyle="rgba("+gR+","+tD+","+hj+",0.6 // Detailed team pie chart percentage replaceRawCode(`qr=Math.floor(100*f0+.5)+"%"`, `qr = (__fx.settings.detailedTeamPercentage ? (100*f0).toFixed(2) : Math.floor(100*f0+.5)) + "%"`) + replaceRawCode(",fontSize=+dz*Math.min(f0,.37);", ",fontSize=(__fx.settings.detailedTeamPercentage ? 0.75 : 1)*dz*Math.min(f0,.37);") // Invalid hostname detection avoidance replaceRawCode(`,hostnameIsValid=0<=window.location.hostname.toLowerCase().indexOf("territorial.io"),`, diff --git a/src/main.js b/src/main.js index b6a6b43..34221bc 100644 --- a/src/main.js +++ b/src/main.js @@ -1,4 +1,4 @@ -const fx_version = '0.6.6.17'; // FX Client Version +const fx_version = '0.6.6.18'; // FX Client Version const fx_update = 'Feb 6'; // FX Client Last Updated import settingsManager from './settings.js';