mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2024-12-20 17:01:47 +03:00
51e15e3760
- added dark theme (add themes system at all) From 1.6.1 preparations: - fixed default runner installation - disabled dxvk cache auto-deletion - added wineserver env to winetricks - added cabextract requirement - added roadmap goal (issue #35) - fixed issue with incorrect wine version unpacking - added temp unpacking notification to progress bar because for some reasons it lags a bit - removed excess locales
43 lines
1.3 KiB
HTML
43 lines
1.3 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">
|
|
<link rel="stylesheet" href="../css/layout.min.css">
|
|
|
|
<!-- JS scripts -->
|
|
<script>require('../js/index.js');</script>
|
|
|
|
<title>An Anime Game Linux Launcher</title>
|
|
</head>
|
|
|
|
<body theme="light">
|
|
<img class="background">
|
|
|
|
<div id="downloader-panel" class="dark" 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>
|
|
|
|
<div id="settings">
|
|
<img src="../images/gear.png" class="unactive">
|
|
<img src="../images/gear-active.png" class="active">
|
|
</div>
|
|
|
|
<button class="button" id="launch" i18id="Launch">Launch</button>
|
|
</body>
|
|
</html>
|