Rename exec node hideWin option

This commit is contained in:
Nick O'Leary
2021-07-02 09:22:08 +01:00
parent 04f4a76b41
commit 2baff243ed
4 changed files with 11 additions and 11 deletions

View File

@@ -41,8 +41,8 @@
<span data-i18n="exec.label.seconds"></span>
</div>
<div class="form-row">
<label for="node-input-windowsHide" style="width: auto !important; padding-right:10px"><i class="fa fa-windows"></i> <span data-i18n="exec.label.windowshide"></span></label>
<input type="checkbox" id="node-input-windowsHide" style="display:inline-block; width:auto;">
<label for="node-input-winHide" style="width: auto !important; padding-right:10px"><i class="fa fa-windows"></i> <span data-i18n="exec.label.winHide"></span></label>
<input type="checkbox" id="node-input-winHide" style="margin-top: 0; display:inline-block; width:auto;">
</div>
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> <span data-i18n="common.label.name"></span></label>
@@ -60,7 +60,7 @@
append: {value:""},
useSpawn: {value:"false"},
timer: {value:""},
windowsHide: {value:false},
winHide: {value:false},
oldrc: {value:false},
name: {value:""}
},
@@ -97,11 +97,11 @@
});
$("#node-input-addpay-cb").trigger("change")
if (this.windowsHide === "true" || this.windowsHide === true) {
$("#node-input-windowsHide").prop("checked",true);
if (this.winHide === "true" || this.winHide === true) {
$("#node-input-winHide").prop("checked",true);
} else {
$("#node-input-windowsHide").prop("checked",false);
$("#node-input-winHide").prop("checked",false);
}
},
oneditsave: function() {

View File

@@ -34,8 +34,8 @@ module.exports = function(RED) {
this.timer = Number(n.timer || 0)*1000;
this.activeProcesses = {};
this.oldrc = (n.oldrc || false).toString();
this.execOpt = {encoding:'binary', maxBuffer:RED.settings.execMaxBufferSize||10000000, windowsHide: (n.windowsHide === true)};
this.spawnOpt = {windowsHide: (n.windowsHide === true) }
this.execOpt = {encoding:'binary', maxBuffer:RED.settings.execMaxBufferSize||10000000, windowsHide: (n.winHide === true)};
this.spawnOpt = {windowsHide: (n.winHide === true) }
var node = this;
if (process.platform === 'linux' && fs.existsSync('/bin/bash')) { node.execOpt.shell = '/bin/bash'; }