diff options
Diffstat (limited to 'views/load.html')
-rw-r--r-- | views/load.html | 118 |
1 files changed, 52 insertions, 66 deletions
diff --git a/views/load.html b/views/load.html index c6e45bf..c08f55e 100644 --- a/views/load.html +++ b/views/load.html @@ -1,66 +1,52 @@ -<!DOCTYPE html> -<html lang="en"> -<head> - <meta charset="UTF-8"> - <title>Kartik</title> - <style> - - * { - -webkit-app-region: drag !important; - } - - @font-face { - font-family: "Milliard SB"; - src: url("./common/load-version.otf"); - font-weight: normal; - } - - @font-face { - font-family: "Milliard"; - src: url("./common/load-channel.otf"); - font-weight: normal; - } - - </style> - <script> - document.addEventListener('keydown', function(e) { - if (e.key === "F1" || e.key === "F10" || e.key === "F11") { // F11/F1/F10 - e.preventDefault(); - return false; - } - }) - </script> -</head> -<body style="overflow:hidden;margin:0;padding:0;background-color:#4b4e50;"> - <img src="splash.png" style="width:100%;"> - <div id="bar" style="position:fixed;top:300px;left:0;width:0;background:white;z-index:99999;height:4px;"></div> - <span style="position: fixed;color: white;z-index: 99;top: 122px;font-size: 18px;display: inline-block;right: 309px;font-family: 'Milliard SB', sans-serif;"> - <script> - var ipcRenderer = require('electron').ipcRenderer; - ipcRenderer.on('progress', function (event, progress) { - document.getElementById("bar").style.width = progress + "%"; - }); - - switch (require('../package.json').channel) { - case "git": - document.write(`<span style="font-family: 'Milliard', sans-serif;">TRUNK </span>`); - break; - case "nightly": - document.write(`<span style="font-family: 'Milliard', sans-serif;">NIGHTLY </span>`); - break; - case "beta": - document.write(`<span style="font-family: 'Milliard', sans-serif;">BETA </span>`); - break; - case "eap": - document.write(`<span style="font-family: 'Milliard', sans-serif;">EAP </span>`); - break; - default: - break; - } - </script> - <script> - document.write(require('../package.json').version.toUpperCase()); - </script> - </span> -</body> -</html> +<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <title>Kartik</title>
+ <style>
+
+ * {
+ -webkit-app-region: drag !important;
+ }
+
+ @font-face {
+ font-family: "Milliard SB";
+ src: url("./common/load-version.otf");
+ font-weight: normal;
+ }
+
+ @font-face {
+ font-family: "Milliard";
+ src: url("./common/load-channel.otf");
+ font-weight: normal;
+ }
+
+ @font-face {
+ font-family: "HomepageBaukasten-Bold";
+ src: url("./common/load-new.ttf");
+ }
+
+ </style>
+ <script>
+ document.addEventListener('keydown', function(e) {
+ if (e.key === "F1" || e.key === "F10" || e.key === "F11") { // F11/F1/F10
+ e.preventDefault();
+ return false;
+ }
+ })
+ </script>
+</head>
+<body style="overflow:hidden;margin:0;padding:0;background-color:#4b4e50;">
+ <script>
+ document.write(require('fs').readFileSync("./views/loader.svg").toString().replaceAll("%version%", require('../package.json').version.toUpperCase()));
+
+ var ipcRenderer = require('electron').ipcRenderer;
+ ipcRenderer.on('progress', function (event, progress) {
+ document.getElementById("bar").style.width = progress + "%";
+ });
+ </script>
+ <div id="bar-container">
+ <div id="bar" style="position:fixed;bottom:0;left:0;width:0;background:white;z-index:99999;height:4px;"></div>
+ </div>
+</body>
+</html>
|