From 07f359c3d8b711aa02343eb517c5b60beb31b442 Mon Sep 17 00:00:00 2001 From: peshomir <80340328+peshomir@users.noreply.github.com> Date: Sat, 22 Mar 2025 12:46:20 +0200 Subject: [PATCH] Add version information and links to the github repo and discord server at the bottom of the settings menu --- src/settings.js | 15 ++++++++++++++- version.json | 1 + 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/src/settings.js b/src/settings.js index cfea7e3..b12f3d9 100644 --- a/src/settings.js +++ b/src/settings.js @@ -1,6 +1,8 @@ import { KeybindsInput } from "./keybindsInput.js"; import winCounter from "./winCounter.js"; import WindowManager from "./windowManager.js"; +import versionData from '../version.json'; +import { displayChangelog } from './changelog.js'; window.__fx = window.__fx || {}; const __fx = window.__fx; @@ -106,6 +108,17 @@ const settingsManager = new (function () { { for: "keybindButtons", type: "checkbox", label: "Keybind buttons", note: "Show keybind buttons above the troop selector (max 6)" + }, + function Footer(container) { + const versionInfo = document.createElement("p"); + versionInfo.innerText = `FX Client v${versionData.version}`; + const links = document.createElement("p"); + links.innerHTML = `Discord server | + Github repository`; + const changelogButton = document.createElement("button"); + changelogButton.innerText = "Changelog"; + changelogButton.addEventListener("click", displayChangelog); + container.append(versionInfo, links, changelogButton); } ]; const settingsContainer = document.querySelector(".settings .scrollable"); @@ -232,7 +245,7 @@ const settingsManager = new (function () { Object.keys(checkboxFields).forEach(function (key) { checkboxFields[key].checked = settings[key]; }); - customElements.forEach((element) => element.update(settings)); + customElements.forEach((element) => element.update?.(settings)); }; this.resetAll = function () { if ( diff --git a/version.json b/version.json index 5724a4a..7c43493 100644 --- a/version.json +++ b/version.json @@ -3,6 +3,7 @@ "lastUpdated": "Mar 22", "changes": [ "Added a \"What's new\" screen (the one you're looking at right now!) which displays a changelog of the latest version", + "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.", "The custom lobby server no longer tries to verify the compatibility of the client version" ] } \ No newline at end of file