diff --git a/package.json b/package.json index 337ac177..4ee9a1b8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "meshcentral", - "version": "0.2.2-q", + "version": "0.2.2-s", "keywords": [ "Remote Management", "Intel AMT", diff --git a/views/default-min.handlebars b/views/default-min.handlebars index d4ab61c0..cce64e24 100644 --- a/views/default-min.handlebars +++ b/views/default-min.handlebars @@ -1 +1 @@ - MeshCentral
{{{title}}}
{{{title2}}}

{{{logoutControl}}}

 

\ No newline at end of file + MeshCentral
{{{title}}}
{{{title2}}}

{{{logoutControl}}}

 

\ No newline at end of file diff --git a/views/default-mobile-min.handlebars b/views/default-mobile-min.handlebars index 1650537c..11211530 100644 --- a/views/default-mobile-min.handlebars +++ b/views/default-mobile-min.handlebars @@ -1 +1 @@ - MeshCentral - Login
{{{title}}}
{{{title2}}}
\ No newline at end of file + MeshCentral - Login
{{{title}}}
{{{title2}}}
\ No newline at end of file diff --git a/views/default-mobile.handlebars b/views/default-mobile.handlebars index 2d3f049b..0b1eeaef 100644 --- a/views/default-mobile.handlebars +++ b/views/default-mobile.handlebars @@ -2677,7 +2677,7 @@ } */ - x += ''; + x += '
User Authorizations
'; // Sort the users for this mesh var count = 1, sortedusers = []; @@ -2803,6 +2803,7 @@ if ((meshrights & 32) != 0) r += ', Server Files'; if ((meshrights & 64) != 0) r += ', Wake Devices'; if ((meshrights & 128) != 0) r += ', Edit Notes'; + if ((meshrights & 256) != 0) r += ', Remote View Only'; } r = r.substring(2); if (r == '') { r = 'No Rights'; } diff --git a/views/default.handlebars b/views/default.handlebars index 12c578b6..45220a88 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -5256,6 +5256,7 @@ if ((meshrights & 32) != 0) r += ', Server Files'; if ((meshrights & 64) != 0) r += ', Wake Devices'; if ((meshrights & 128) != 0) r += ', Edit Notes'; + if ((meshrights & 256) != 0) r += ', Remote View Only'; } r = r.substring(2); if (r == '') { r = 'No Rights'; }
User Authorizations