diff options
author | 0neGal <mail@0negal.com> | 2021-12-29 23:33:30 +0100 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2021-12-29 23:33:30 +0100 |
commit | 9d4515fd408c38ad081c010e052b2960f5fe3dfe (patch) | |
tree | ffd6528723e7fb4e5e6f99027683794226f22a2d /src/app/index.html | |
parent | dcbdadbe3568beca429b0df5caf96156ee43f474 (diff) | |
parent | 74cb566e5ea97f62121fbd7b2cc170b94d36f0bb (diff) | |
download | Viper-9d4515fd408c38ad081c010e052b2960f5fe3dfe.tar.gz Viper-9d4515fd408c38ad081c010e052b2960f5fe3dfe.zip |
Merge branch 'feat/version-indicator' of https://github.com/Alystrasz/viper into feat/icon
Diffstat (limited to 'src/app/index.html')
-rw-r--r-- | src/app/index.html | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/src/app/index.html b/src/app/index.html index 67d2e5c..6e31f0c 100644 --- a/src/app/index.html +++ b/src/app/index.html @@ -6,22 +6,29 @@ <body> <div class="lines"> <div class="line"> - <div class="text">Welcome to Viper!</div> + <div class="text"> + <div style="white-space: nowrap;">%%gui.welcome%%</div> + <div class="versions"> + <div id="vpVersion">Viper version: x.x.x</div> + <div id="nsVersion">Northstar version: x.x.x</div> + </div> + </div> <div class="buttons"> - <button id="exit" onclick="exit()">Exit</button> - <button id="update" onclick="update()">Update</button> - <button id="setpath" onclick="setpath()">Game Path</button> + <button id="exit" onclick="exit()">%%gui.exit%%</button> + <button id="update" onclick="update()">%%gui.update%%</button> + <button id="setpath" onclick="setpath()">%%gui.setpath%%</button> </div> </div> <div class="line"> - <div class="text">Launch:</div> + <div class="text">%%gui.launch%%:</div> <div class="buttons"> - <button id="vanilla" onclick="launchVanilla()">Vanilla</button> - <button id="northstar" onclick="launch()">Northstar</button> + <button id="vanilla" onclick="launchVanilla()">%%gui.launchvanilla%%</button> + <button id="northstar" onclick="launch()">%%gui.launchnorthstar%%</button> </div> </div> </div> + <script src="lang.js"></script> <script src="main.js"></script> </body> </html> |