From e885ae9a147c36e66a02aaacb04d8413672c2e9f Mon Sep 17 00:00:00 2001 From: xyzroe Date: Wed, 8 May 2024 13:04:12 +0300 Subject: [PATCH] Update web installer to use tag version --- docs/install.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/install.md b/docs/install.md index 1ba6645..1a70e56 100644 --- a/docs/install.md +++ b/docs/install.md @@ -57,8 +57,8 @@ function loadFirmwareVersions() { select.innerHTML = ''; data.forEach(release => { const option = document.createElement('option'); - option.value = `https://raw.githubusercontent.com/xyzroe/XZG/releases/${release.name}/manifest.json`; - option.textContent = release.name; + option.value = `https://raw.githubusercontent.com/xyzroe/XZG/releases/${release.tag_name}/manifest.json`; + option.textContent = release.tag_name; select.appendChild(option); }); updateManifestUrl();