an-anime-game-launcher/public/html/index.html
Observer KRypt0n_ 812e0c5f18
2.2.0-beta3
- added a notification when the game has been installed
- removed windows compilation because we will never use it
- added background picture parsing using the game's API

Thanks Maroxy for all these enhancements
+ issue #1
+ pull request #2
2021-10-17 13:28:37 +02:00

35 lines
1 KiB
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>
<div id="launchcontent"></div>
<button class="button" id="launch">Launch</button>
</body>
</html>