Add README.md

This commit is contained in:
2026-02-26 20:28:01 +01:00
parent c47a877a36
commit c0b2c201a7
20 changed files with 132 additions and 2 deletions

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.5 KiB

View File

@@ -68,7 +68,7 @@
<img src="assets/logo.png" alt="Silk Fly Launcher Logo" class="big-logo-img" />
<div>
<h3>Silk Fly Launcher</h3>
<p class="transparent-text">v1.0.0</p>
<p class="transparent-text" id="version-text"></p>
</div>
</div>
<div class="horizontal-div">

View File

@@ -77,6 +77,8 @@ async function navigate(page) {
case "home":
title.innerText = "Silk Fly Launcher";
const HomeTemplateCopy = HomeTemplate.content.cloneNode(true);
versionText = HomeTemplateCopy.getElementById("version-text");
versionText.innerText = await versions.silkFlyLauncher();
view.appendChild(HomeTemplateCopy);
break;

View File

@@ -84,6 +84,7 @@
<template id="tutorial-template">
<h1 class="title">Tutorial to download mod from nexus</h1>
<p>After clicking on "Download," a Nexus Mods window will pop up. Please log in, then click on "Download with Mod Manager."The Nexus window should close, and the mod will start downloading.</p>
</template>
<script src="renderer.js"></script>