diff --git a/src/nodes/ts3-config/ui/index.ts b/src/nodes/ts3-config/ui/index.ts index 89b7ac0..3f35333 100644 --- a/src/nodes/ts3-config/ui/index.ts +++ b/src/nodes/ts3-config/ui/index.ts @@ -7,6 +7,7 @@ RED.nodes.registerType('ts3-config category: 'config', color: '#a6bbcf', defaults: { + name: {value:""}, host: { value: ""}, nickname: {value: "ServerQuery"} }, @@ -15,6 +16,6 @@ RED.nodes.registerType('ts3-config password: {type: "password"} }, label: function() { - return this.name || "Ts3 Config"; + return this.name || "TS3 Config"; } }); diff --git a/src/nodes/ts3-get/ui/editor.html b/src/nodes/ts3-get/ui/editor.html index a6c055a..37417ef 100644 --- a/src/nodes/ts3-get/ui/editor.html +++ b/src/nodes/ts3-get/ui/editor.html @@ -3,11 +3,11 @@
- +
- + +
+ You can find documentation for all functions + here +
\ No newline at end of file diff --git a/src/nodes/ts3-get/ui/index.ts b/src/nodes/ts3-get/ui/index.ts index 7ce9bee..8b3d17f 100644 --- a/src/nodes/ts3-get/ui/index.ts +++ b/src/nodes/ts3-get/ui/index.ts @@ -7,12 +7,13 @@ RED.nodes.registerType('ts3-get',{ category: 'function', color: '#a6bbcf', defaults: { + name: {value:""}, configid: { type:"ts3-config", value: "" }, - selection: { value:"" } + selection: { value:"version" } }, inputs: 1, outputs: 1, label: function() { - return this.name || "Ts3 Get"; + return this.name || "TS3 Get"; } }); \ No newline at end of file