diff --git a/app.ico b/app.ico new file mode 100644 index 0000000..12220b3 Binary files /dev/null and b/app.ico differ diff --git a/appicon_upscayl_16x_upscayl-standard-4x.png b/appicon_upscayl_16x_upscayl-standard-4x.png new file mode 100644 index 0000000..14760ff Binary files /dev/null and b/appicon_upscayl_16x_upscayl-standard-4x.png differ diff --git a/build/appicon.png b/build/appicon.png index 63617fe..62f5937 100644 Binary files a/build/appicon.png and b/build/appicon.png differ diff --git a/build/appicon_w.png b/build/appicon_w.png new file mode 100644 index 0000000..63617fe Binary files /dev/null and b/build/appicon_w.png differ diff --git a/build/windows/icon.ico b/build/windows/icon.ico index bfa0690..12220b3 100644 Binary files a/build/windows/icon.ico and b/build/windows/icon.ico differ diff --git a/frontend/dist/index.html b/frontend/dist/index.html index 2333456..6292410 100644 --- a/frontend/dist/index.html +++ b/frontend/dist/index.html @@ -218,7 +218,7 @@ function kvmApp() { return { connected: false, - detected: true, + detected: false, statusText: 'Desconectado', pos: 'right', layout: 1, @@ -255,8 +255,13 @@ }); } else { window.go.main.App.Connect().then(res => { - this.connected = true; - this.statusText = 'Conectado'; + if (res === 'Conectado') { + this.connected = true; + this.detected = true; + this.statusText = 'Conectado'; + } else { + this.statusText = res; + } }); } }, diff --git a/icon.png b/icon.png new file mode 100644 index 0000000..62f5937 Binary files /dev/null and b/icon.png differ