temporarily avoid link for marlin/sailfish version
This commit is contained in:
parent
52a399fcbc
commit
5667ed8291
@ -46,7 +46,7 @@
|
||||
<div id="stable"></div>
|
||||
<h2>Beta channel</h2>
|
||||
<div id="beta"></div>
|
||||
<script src="/releases.js?1"></script>
|
||||
<script src="/releases.js?2"></script>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -61,8 +61,12 @@ for (const channel of channels) {
|
||||
|
||||
const tag = metadata[2] + "." + metadata[0];
|
||||
const version = document.createElement("p");
|
||||
version.appendChild(document.createTextNode("Version: "));
|
||||
version.appendChild(createLink(versionBaseUrl + tag, tag));
|
||||
if (device !== "marlin" && device !== "sailfish") {
|
||||
version.appendChild(document.createTextNode("Version: "));
|
||||
version.appendChild(createLink(versionBaseUrl + tag, tag));
|
||||
} else {
|
||||
version.appendChild(document.createTextNode("Version: " + tag));
|
||||
}
|
||||
release.appendChild(version);
|
||||
|
||||
release.appendChild(createLink(factoryUrl, factoryFilename));
|
||||
|
Loading…
x
Reference in New Issue
Block a user