an-anime-game-launcher/public/html/index.html
Observer KRypt0n_ 3cc9409354
2.2.0-beta1
- changed versioning politicy ([game version]-[app state][app build])
- created patches system
  now launcher automatically applies patches to the game
- changed launcher config structure
- changed executable file on game launching to the launcher.bat
  to check the telemetry status and prevent game starting in positive result
- updated readme
2021-10-14 22:35:29 +02:00

33 lines
997 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- CSS styles -->
<link rel="stylesheet" href="../css/index.css">
<link rel="stylesheet" href="../css/hint.min.css">
<!-- JS scripts -->
<script>require('../js/index.js');</script>
<title>Genshin Impact Linux Launcher</title>
</head>
<body>
<div id="downloader-panel" style="display: none">
<div id="downloader-label">
<span id="downloaded">Downloading...</span>
<span id="speed"></span>
<span id="eta"></span>
</div>
<div class="progress-bar" id="downloader">
<div class="progress"></div>
</div>
</div>
<button class="button" id="launch">Launch</button>
</body>
</html>