Some Styling updates, Removed rebuild, Added About page + Semantic UI.

This commit is contained in:
FallenGravity
2019-10-15 01:50:10 +02:00
parent 6ab961134f
commit 85592070a0
12 changed files with 19983 additions and 63 deletions

13
renderer/about.js Normal file
View File

@@ -0,0 +1,13 @@
const {ipcRenderer} = require("electron");
class About {
constructor() {}
renderAbout() {
EthoMainGUI.renderTemplate("about.html", {});
$(document).trigger("render_about");
}
}
// create new uploads variable
EthoAbout = new About();