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