diff --git a/package.json b/package.json
index 392c9f9e..9cbbd931 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "meshcentral",
- "version": "0.3.2-f",
+ "version": "0.3.2-h",
"keywords": [
"Remote Management",
"Intel AMT",
diff --git a/views/default-min.handlebars b/views/default-min.handlebars
index e25dbb93..0196866e 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 Account Device Groups (
New )
My Files These files are shared publicly, click "link" to get public url.
✓
✗
My Server Server actions
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.
Show
Last 60 Last 120 Last 250 Last 500 Last 1000
General -
Events -
Show
Last 60 Last 120 Last 250 Last 500 Last 1000
Local file upload Server file selection File Selection
Agent Remote Desktop 100% 87.5% 75% 62.5% 50% 37.5% 25% 12.5% Scaling
Fast Medium Slow Very slow Frame rate
Intel® AMT Hardware KVM RLE8, Fastest RLE16, Recommended RAW8, Slow RAW16, Very Slow 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 actions
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.
Show
Last 60 Last 120 Last 250 Last 500 Last 1000
General -
Events -
Show
Last 60 Last 120 Last 250 Last 500 Last 1000
Local file upload Server file selection File Selection
Agent Remote Desktop 100% 87.5% 75% 62.5% 50% 37.5% 25% 12.5% Scaling
Fast Medium Slow Very slow Frame rate
Intel® AMT Hardware KVM RLE8, Fastest RLE16, Recommended RAW8, Slow RAW16, Very Slow Image Encoding
\ No newline at end of file
diff --git a/views/default.handlebars b/views/default.handlebars
index 8426ee32..78b24ca9 100644
--- a/views/default.handlebars
+++ b/views/default.handlebars
@@ -221,7 +221,8 @@
- To get started, click here to create a device group .
+
+ No device groups.
@@ -261,10 +262,10 @@
Device Groups
- ( New )
+ ( New )
-
+
@@ -1217,6 +1218,13 @@
QV('authCodesSetupCheck', userinfo.otpkeys > 0);
masterUpdate(4 + 128);
+ // If we can't create new groups, hide all links that can do that.
+ var newGroupsAllowed = ((userinfo.siteadmin == 0xFFFFFFFF) || ((userinfo.siteadmin & 64) == 0));
+ QV('p2createMeshLink1', newGroupsAllowed);
+ QV('p2createMeshLink2', newGroupsAllowed);
+ QV('getStarted1', newGroupsAllowed);
+ QV('getStarted2', !newGroupsAllowed);
+
if (typeof userinfo.passchange == 'number') {
if (userinfo.passchange == -1) { QH('p2nextPasswordUpdateTime', ' - Reset on next login.'); }
else if ((passRequirements != null) && (typeof passRequirements.reset == 'number')) {
@@ -7480,7 +7488,6 @@
QC(leftBarItems[i]).remove('lbbuttonsel2');
}
- //QV('topbar', x != 0);
// Define class for Menu(s) as fully or semi active.
var mainMenuActiveClass = (x < 9 ? 'fullselect' : 'semiselect');
var leftMenuActiveClass = (x < 9 ? 'lbbuttonsel2' : 'lbbuttonsel');
@@ -7516,15 +7523,19 @@
QC('column_l').remove('room4submenu');
}
- // Please check. I think this part is not needed anymore. Removing class will revert to default style
- /*
+ // If we are going to panel 0 in "full screen mode", hide the left bar.
+ QV('topbar', x != 0);
if ((x == 0) && (webPageFullScreen)) {
- QS('page_content').position = '';
- QV('page_leftbar', false);
+ QC('body').add("arg_hide");
QS('column_l').height = 'calc(100vh - 110px)';
- QS('column_l')["max-height"] = '';
+
+ // Please check. I think this part is not needed anymore. Removing class will revert to default style
+ //QS('page_content').position = '';
+ //QV('page_leftbar', false);
+ //QS('column_l')["max-height"] = '';
+ //QV('column_l').left = 0;
+ //QV('page_content').left = 0;
}
- */
QV('MainSubMenuSpan', x >= 10 && x < 20);
QV('UserDummyMenuSpan', (x < 10) && (x != 6) && webPageFullScreen);