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