diff --git a/package.json b/package.json
index 6d6cee2f..47e1618b 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "meshcentral",
- "version": "0.3.5-f",
+ "version": "0.3.5-g",
"keywords": [
"Remote Management",
"Intel AMT",
diff --git a/views/default-min.handlebars b/views/default-min.handlebars
index 1f950ab7..204f4340 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
Local file upload Server file selection Agent Remote Desktop Scaling
100% 87.5% 75% 62.5% 50% 37.5% 25% 12.5% Frame rate
Fast Medium Slow Very slow Intel® AMT Hardware KVM Image Encoding
RLE8, Fastest RLE16, Recommended RAW8, Slow RAW16, Very Slow
\ 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
Local file upload Server file selection Agent Remote Desktop Scaling
100% 87.5% 75% 62.5% 50% 37.5% 25% 12.5% Frame rate
Fast Medium Slow Very slow Intel® AMT Hardware KVM Image Encoding
RLE8, Fastest RLE16, Recommended RAW8, Slow RAW16, Very Slow
\ No newline at end of file
diff --git a/views/default-mobile-min.handlebars b/views/default-mobile-min.handlebars
index cfb6c893..a430e7f5 100644
--- a/views/default-mobile-min.handlebars
+++ b/views/default-mobile-min.handlebars
@@ -1 +1 @@
- {{{title}}}
Server disconnected , click to reconnect .
◀
Account Security
Account Actions
Device Groups ( New )
◀
My Files
◀
\ No newline at end of file
+ {{{title}}}
Server disconnected , click to reconnect .
◀
Account Security
Account Actions
Device Groups ( New )
◀
My Files
◀
\ No newline at end of file
diff --git a/views/default-mobile.handlebars b/views/default-mobile.handlebars
index bcde02d3..066cf7f3 100644
--- a/views/default-mobile.handlebars
+++ b/views/default-mobile.handlebars
@@ -1829,7 +1829,11 @@
// Node tags
var groupingTags = 'None ';
if (node.tags != null) { groupingTags = ''; for (var i in node.tags) { groupingTags += '' + node.tags[i] + ' '; } }
- x += addDeviceAttribute('Tags', '' + groupingTags + ' ');
+ if ((meshrights & 4) != 0) {
+ x += addDeviceAttribute('Tags', '' + groupingTags + ' ');
+ } else {
+ x += addDeviceAttribute('Tags', groupingTags);
+ }
x += ' ';
// Show action button, only show if we have permissions 4, 8, 64
diff --git a/views/default.handlebars b/views/default.handlebars
index 2c5c24fd..5d7d12e3 100644
--- a/views/default.handlebars
+++ b/views/default.handlebars
@@ -3795,7 +3795,11 @@
// Node grouping tags
var groupingTags = 'None ';
if (node.tags != null) { groupingTags = ''; for (var i in node.tags) { groupingTags += '' + node.tags[i] + ' '; } }
- x += addDeviceAttribute('Tags', '' + groupingTags + ' ');
+ if ((meshrights & 4) != 0) {
+ x += addDeviceAttribute('Tags', '' + groupingTags + ' ');
+ } else {
+ x += addDeviceAttribute('Tags', groupingTags);
+ }
x += ' ';
// Show action button, only show if we have permissions 4, 8, 64