fix: icone (não deu certo)

This commit is contained in:
Ricardo Carneiro 2026-04-27 10:39:16 -03:00
parent 879ae24ca6
commit f5da209d22
7 changed files with 8 additions and 3 deletions

BIN
app.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 993 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 231 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 130 KiB

After

Width:  |  Height:  |  Size: 981 B

BIN
build/appicon_w.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 130 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 993 B

View File

@ -218,7 +218,7 @@
function kvmApp() { function kvmApp() {
return { return {
connected: false, connected: false,
detected: true, detected: false,
statusText: 'Desconectado', statusText: 'Desconectado',
pos: 'right', pos: 'right',
layout: 1, layout: 1,
@ -255,8 +255,13 @@
}); });
} else { } else {
window.go.main.App.Connect().then(res => { window.go.main.App.Connect().then(res => {
if (res === 'Conectado') {
this.connected = true; this.connected = true;
this.detected = true;
this.statusText = 'Conectado'; this.statusText = 'Conectado';
} else {
this.statusText = res;
}
}); });
} }
}, },

BIN
icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 981 B