From 8886d5111aa4ae75f54f46c93f09fa7548979969 Mon Sep 17 00:00:00 2001 From: Minteck <46352972+Minteck@users.noreply.github.com> Date: Fri, 9 Jul 2021 00:37:48 +0200 Subject: Fixes --- views/common/load-new.ttf | Bin 0 -> 50172 bytes views/load.html | 44 +++++-------- views/loader.svg | 128 ++++++++++++++++++++++++++++++++++++++ views/menu.css | 10 ++- views/script/core_notification.js | 13 ++++ views/script/loader_global.js | 2 +- 6 files changed, 164 insertions(+), 33 deletions(-) create mode 100644 views/common/load-new.ttf create mode 100644 views/loader.svg create mode 100644 views/script/core_notification.js (limited to 'views') diff --git a/views/common/load-new.ttf b/views/common/load-new.ttf new file mode 100644 index 0000000..d2a94dc Binary files /dev/null and b/views/common/load-new.ttf differ diff --git a/views/load.html b/views/load.html index c6e45bf..473c1ac 100644 --- a/views/load.html +++ b/views/load.html @@ -21,6 +21,11 @@ font-weight: normal; } + @font-face { + font-family: "HomepageBaukasten-Bold"; + src: url("./common/load-new.ttf"); + } +
- - - - - - + var ipcRenderer = require('electron').ipcRenderer; + ipcRenderer.on('progress', function (event, progress) { + document.getElementById("bar").style.width = progress + "%"; + }); + +