From aaf796c5fbda7b03346a1a7f0a4301caaa3bc769 Mon Sep 17 00:00:00 2001 From: rgantzos <86856959+rgantzos@users.noreply.github.com> Date: Thu, 10 Aug 2023 08:53:21 -0700 Subject: [PATCH 1/2] Fix changelog --- changelog/changes.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelog/changes.json b/changelog/changes.json index db5ffa69..e93fba28 100644 --- a/changelog/changes.json +++ b/changelog/changes.json @@ -1,6 +1,6 @@ { "NOTE": "THERE IS NO NEED TO UPDATE THIS YOURSELF, IT WILL BE UPDATED WHEN RELEASED.", - "version": "3.0.0", + "version": "3.1.0", "enhanced": [], "fixed": [] } From 30feac4ac4bf4582224b9f96f1e129955ff44a62 Mon Sep 17 00:00:00 2001 From: rgantzos <86856959+rgantzos@users.noreply.github.com> Date: Thu, 10 Aug 2023 08:55:09 -0700 Subject: [PATCH 2/2] Fix changelog script --- changelog/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelog/script.js b/changelog/script.js index 8b392dc7..43735dc0 100644 --- a/changelog/script.js +++ b/changelog/script.js @@ -6,7 +6,7 @@ async function getChanges() { var newFeatures = await (await fetch("/features/features.json")).json(); for (var i in newFeatures) { var feature = newFeatures[i]; - if (feature.versionAdded === "v" + version) { + if (feature.versionAdded === "v" + version || feature.versionUpdated === "v" + version) { var div = document.createElement("div"); var h2 = document.createElement("h2"); if (feature.version === 2) {