From b430d92573619ffce82362cc2a682addc6c958ab Mon Sep 17 00:00:00 2001 From: Alystrasz Date: Wed, 29 Dec 2021 12:10:40 +0100 Subject: [feat] adding version indicators on the UI --- src/app/index.html | 8 +++++++- src/app/main.css | 6 ++++++ src/index.js | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/src/app/index.html b/src/app/index.html index 1c34360..a73422f 100644 --- a/src/app/index.html +++ b/src/app/index.html @@ -6,7 +6,13 @@
-
%%gui.welcome%%
+
+
%%gui.welcome%%
+
+
Viper version: x.x.x
+
Northstar version: x.x.x
+
+
diff --git a/src/app/main.css b/src/app/main.css index 854c47a..f3cd7c5 100644 --- a/src/app/main.css +++ b/src/app/main.css @@ -61,3 +61,9 @@ button:active { #setpath {background: #5E81AC} #northstar {background: #C7777F} #vanilla, #exit {background: #656E7F} + +.versions { + height: 15px; + font-size: 12px; + color: #afafaf; +} \ No newline at end of file diff --git a/src/index.js b/src/index.js index fead15b..3520914 100644 --- a/src/index.js +++ b/src/index.js @@ -11,7 +11,7 @@ const cli = require("./cli"); function start() { win = new BrowserWindow({ width: 600, - height: 115, + height: 130, show: false, title: "Viper", resizable: false, -- cgit v1.2.3