mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-01-14 08:14:59 -05:00
Version 0.6.65
This commit is contained in:
parent
a368eb0fd2
commit
9aab9a98e3
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "meshcentral",
|
"name": "meshcentral",
|
||||||
"version": "0.6.64",
|
"version": "0.6.65",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Remote Device Management",
|
"Remote Device Management",
|
||||||
"Remote Device Monitoring",
|
"Remote Device Monitoring",
|
||||||
|
BIN
public/images/icon-refresh.png
Normal file
BIN
public/images/icon-refresh.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 558 B |
@ -2510,7 +2510,7 @@ a {
|
|||||||
-ms-grid-row: 4;
|
-ms-grid-row: 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
#DeskChatButton, #DeskNotifyButton, #DeskOpenWebButton, #DeskBackgroundButton, #DeskSaveImageButton, #DeskRecordButton, #DeskClipboardInButton, #DeskClipboardOutButton {
|
#DeskChatButton, #DeskNotifyButton, #DeskOpenWebButton, #DeskBackgroundButton, #DeskSaveImageButton, #DeskRecordButton, #DeskClipboardInButton, #DeskClipboardOutButton, #DeskRefreshButton {
|
||||||
float: right;
|
float: right;
|
||||||
margin-top: 1px;
|
margin-top: 1px;
|
||||||
margin-right: 4px;
|
margin-right: 4px;
|
||||||
|
@ -28480,6 +28480,12 @@
|
|||||||
"default.handlebars->container->column_l->p42->pluginRestartNotice->1"
|
"default.handlebars->container->column_l->p42->pluginRestartNotice->1"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"en": "Refresh the desktop",
|
||||||
|
"xloc": [
|
||||||
|
"default.handlebars->container->column_l->p11->deskarea0->deskarea4->1"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"cs": "Předávání (relay)",
|
"cs": "Předávání (relay)",
|
||||||
"de": "Weiterleitung",
|
"de": "Weiterleitung",
|
||||||
|
@ -619,6 +619,7 @@
|
|||||||
<span id=DeskRecordButton cmenu=deskPlayerContextMenu title="Record remote desktop session to file" style="display:none"><img id=DeskRecordButtonImage src='images/icon-film.png' onclick=deskRecordSession() height=16 width=16 style=padding-top:2px /></span>
|
<span id=DeskRecordButton cmenu=deskPlayerContextMenu title="Record remote desktop session to file" style="display:none"><img id=DeskRecordButtonImage src='images/icon-film.png' onclick=deskRecordSession() height=16 width=16 style=padding-top:2px /></span>
|
||||||
<span id=DeskClipboardInButton title="Download remote clipboard to local clipboard" style="display:none"><img id=DeskClipboardInButtonImage src='images/icon-clipboard-in.png' onclick=deskClipboardInFunction() height=16 width=16 style=padding-top:2px /></span>
|
<span id=DeskClipboardInButton title="Download remote clipboard to local clipboard" style="display:none"><img id=DeskClipboardInButtonImage src='images/icon-clipboard-in.png' onclick=deskClipboardInFunction() height=16 width=16 style=padding-top:2px /></span>
|
||||||
<span id=DeskClipboardOutButton title="Upload local clipboard to remote device"><img id=DeskClipboardOutButtonImage src='images/icon-clipboard-out.png' onclick=deskClipboardOutFunction() height=16 width=16 style=padding-top:2px /></span>
|
<span id=DeskClipboardOutButton title="Upload local clipboard to remote device"><img id=DeskClipboardOutButtonImage src='images/icon-clipboard-out.png' onclick=deskClipboardOutFunction() height=16 width=16 style=padding-top:2px /></span>
|
||||||
|
<span id=DeskRefreshButton title="Refresh the desktop"><img id=DeskRefreshButtonImage src='images/icon-refresh.png' onclick=deskRefreshFunction() height=16 width=16 style=padding-top:2px /></span>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<select id="deskkeys">
|
<select id="deskkeys">
|
||||||
@ -6116,6 +6117,11 @@
|
|||||||
if (navigator.clipboard.readText) { navigator.clipboard.readText().then(function(text) { meshserver.send({ action: 'msg', type: 'setclip', nodeid: currentNode._id, data: text }); }).catch(function(err) { }); }
|
if (navigator.clipboard.readText) { navigator.clipboard.readText().then(function(text) { meshserver.send({ action: 'msg', type: 'setclip', nodeid: currentNode._id, data: text }); }).catch(function(err) { }); }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function deskRefreshFunction() {
|
||||||
|
if (desktop == null || desktop.State != 3) return;
|
||||||
|
desktop.m.SendRefresh();
|
||||||
|
}
|
||||||
|
|
||||||
function deviceToastFunction() {
|
function deviceToastFunction() {
|
||||||
if (xxdialogMode) return;
|
if (xxdialogMode) return;
|
||||||
setDialogMode(2, "Device Notification", 3, deviceToastFunctionEx, '<textarea id=d2devToast style=width:100%;height:80px;resize:none;overflow-y:scroll></textarea>');
|
setDialogMode(2, "Device Notification", 3, deviceToastFunctionEx, '<textarea id=d2devToast style=width:100%;height:80px;resize:none;overflow-y:scroll></textarea>');
|
||||||
@ -6698,6 +6704,7 @@
|
|||||||
QV('DeskOpenWebButton', (browserfullscreen == false) && (inputAllowed) && (currentNode.agent) && online);
|
QV('DeskOpenWebButton', (browserfullscreen == false) && (inputAllowed) && (currentNode.agent) && online);
|
||||||
QV('DeskBackgroundButton', (deskState == 3) && (desktop.contype == 1) && (currentNode.agent) && (currentNode.agent.id != 11) && (currentNode.agent.id != 16) && online);
|
QV('DeskBackgroundButton', (deskState == 3) && (desktop.contype == 1) && (currentNode.agent) && (currentNode.agent.id != 11) && (currentNode.agent.id != 16) && online);
|
||||||
QV('DeskControlSpan', inputAllowed)
|
QV('DeskControlSpan', inputAllowed)
|
||||||
|
QV('DeskRefreshButton', (deskState == 3) && (desktop.contype == 1))
|
||||||
QV('deskActionsSettings', (browserfullscreen == false));
|
QV('deskActionsSettings', (browserfullscreen == false));
|
||||||
if (rights & 8) { Q('DeskControl').checked = (getstore('DeskControl', 1) == 1); } else { Q('DeskControl').checked = false; }
|
if (rights & 8) { Q('DeskControl').checked = (getstore('DeskControl', 1) == 1); } else { Q('DeskControl').checked = false; }
|
||||||
QS('DeskControlSpan').color = Q('DeskControl').checked?null:'red';
|
QS('DeskControlSpan').color = Q('DeskControl').checked?null:'red';
|
||||||
|
Loading…
Reference in New Issue
Block a user