diff --git a/package.json b/package.json
index 761536fd..4f6c1036 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "meshcentral",
- "version": "0.3.4-t",
+ "version": "0.3.4-v",
"keywords": [
"Remote Management",
"Intel AMT",
diff --git a/views/default-min.handlebars b/views/default-min.handlebars
index e1c2f914..37c0274d 100644
--- a/views/default-min.handlebars
+++ b/views/default-min.handlebars
@@ -1 +1 @@
-
{{{title}}} My Devices | My Account | My Events | My Files | My Users | My Server | |
General | Desktop | Terminal | Files | Events | Intel® AMT | Console | |
Server disconnected, click to reconnect.
My Devices
| No device groups. |
My Account
Device Groups ( New ) My Files
These files are shared publicly, click "link" to get public url.
✓
✗
My Server
Server Statistics
Intel® AMT Redirection port or KVM feature is disabled, click here to enable it.
Remote computer is not powered on, click here to issue a power command.
Intel® AMT Redirection port or KVM feature is disabled, click here to enable it.
Remote computer is not powered on, click here to issue a power command.
General -
File Selection
Agent Remote Desktop
Scaling
Frame rate
Intel® AMT Hardware KVM
Image Encoding
\ No newline at end of file
+ {{{title}}} My Devices | My Account | My Events | My Files | My Users | My Server | |
General | Desktop | Terminal | Files | Events | Intel® AMT | Console | |
Server disconnected, click to reconnect.
My Devices
| No device groups. |
My Account
Device Groups ( New ) My Files
These files are shared publicly, click "link" to get public url.
✓
✗
My Server
Server Statistics
Intel® AMT Redirection port or KVM feature is disabled, click here to enable it.
Remote computer is not powered on, click here to issue a power command.
Intel® AMT Redirection port or KVM feature is disabled, click here to enable it.
Remote computer is not powered on, click here to issue a power command.
General -
File Selection
Agent Remote Desktop
Scaling
Frame rate
Intel® AMT Hardware KVM
Image Encoding
\ No newline at end of file
diff --git a/views/default.handlebars b/views/default.handlebars
index a2ea29fa..9eea1183 100644
--- a/views/default.handlebars
+++ b/views/default.handlebars
@@ -4471,9 +4471,11 @@
desktop.onStateChanged = onDesktopStateChange;
desktop.onConsoleMessageChange = function () {
p11clearConsoleMsg();
- QH('p11DeskConsoleMsg', EscapeHtml(desktop.consoleMessage).split('\n').join('
'));
- QV('p11DeskConsoleMsg', true);
- p11DeskConsoleMsgTimer = setTimeout(p11clearConsoleMsg, 8000);
+ if (desktop.consoleMessage) {
+ QH('p11DeskConsoleMsg', EscapeHtml(desktop.consoleMessage).split('\n').join('
'));
+ QV('p11DeskConsoleMsg', true);
+ p11DeskConsoleMsgTimer = setTimeout(p11clearConsoleMsg, 8000);
+ }
}
desktop.m.CompressionLevel = desktopsettings.quality; // Number from 1 to 100. 50 or less is best.
desktop.m.ScalingLevel = desktopsettings.scaling;
@@ -4969,9 +4971,11 @@
terminal.onStateChanged = onTerminalStateChange;
terminal.onConsoleMessageChange = function () {
p12clearConsoleMsg();
- QH('p12TermConsoleMsg', EscapeHtml(terminal.consoleMessage).split('\n').join('
'));
- QV('p12TermConsoleMsg', true);
- p12TermConsoleMsgTimer = setTimeout(p12clearConsoleMsg, 8000);
+ if (terminal.consoleMessage) {
+ QH('p12TermConsoleMsg', EscapeHtml(terminal.consoleMessage).split('\n').join('
'));
+ QV('p12TermConsoleMsg', true);
+ p12TermConsoleMsgTimer = setTimeout(p12clearConsoleMsg, 8000);
+ }
}
terminal.Start(terminalNode._id);
terminal.contype = 1;
@@ -5094,9 +5098,11 @@
files.onStateChanged = onFilesStateChange;
files.onConsoleMessageChange = function () {
p13clearConsoleMsg();
- QH('p13FilesConsoleMsg', EscapeHtml(files.consoleMessage).split('\n').join('
'));
- QV('p13FilesConsoleMsg', true);
- p13FilesConsoleMsgTimer = setTimeout(p13clearConsoleMsg, 8000);
+ if (files.consoleMessage) {
+ QH('p13FilesConsoleMsg', EscapeHtml(files.consoleMessage).split('\n').join('
'));
+ QV('p13FilesConsoleMsg', true);
+ p13FilesConsoleMsgTimer = setTimeout(p13clearConsoleMsg, 8000);
+ }
}
files.Start(filesNode._id);
} else {