Skip to content

Commit

Permalink
Update web installer to use tag version
Browse files Browse the repository at this point in the history
  • Loading branch information
xyzroe committed May 8, 2024
1 parent e196bb2 commit e885ae9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit e885ae9

Please sign in to comment.