Move base64, msgpack, and markdown nodes to parser category

to be consistent with other parsers, and change x-red to html
This commit is contained in:
Dave Conway-Jones
2020-02-25 17:41:45 +00:00
parent be5f79becc
commit 4efb7417df
8 changed files with 13 additions and 13 deletions

View File

@@ -1,5 +1,5 @@
<script type="text/x-red" data-template-name="msgpack">
<script type="text/html" data-template-name="msgpack">
<div class="form-row">
<label for="node-input-property"><i class="fa fa-ellipsis-h"></i> <span data-i18n="node-red:common.label.property"></span></label>
<input type="text" id="node-input-property" style="width:70%;"/>
@@ -10,7 +10,7 @@
</div>
</script>
<script type="text/x-red" data-help-name="msgpack">
<script type="text/html" data-help-name="msgpack">
<p>A function that converts the <code>msg.payload</code> to and from <a href = "https://github.com/msgpack/msgpack-node"><i>msgpack</i></a> format.</p>
<p>If the input is NOT a buffer it tries to convert it to a msgpack buffer.</p>
<p>If the input is a msgpack buffer it tries to decode it back.</p>
@@ -19,7 +19,7 @@
<script type="text/javascript">
RED.nodes.registerType('msgpack',{
category: 'function',
category: 'parser',
color:"#DEBD5C",
defaults: {
name: {value:""},

View File

@@ -1,6 +1,6 @@
{
"name" : "node-red-node-msgpack",
"version" : "1.2.0",
"version" : "1.2.1",
"description" : "A Node-RED node to pack and unpack objects to msgpack format",
"dependencies" : {
"msgpack-lite" : "^0.1.26"