Tweaked MessagePack operations
This commit is contained in:
parent
e7c6a05e9f
commit
d3d230a76d
@ -1,6 +1,9 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
### [8.3.0] - 2018-08-21
|
||||||
|
- 'To MessagePack' and 'From MessagePack' operations added @artemisbot #338
|
||||||
|
|
||||||
### [8.2.0] - 2018-08-21
|
### [8.2.0] - 2018-08-21
|
||||||
- Added information links to most operations, accessible in the description popover @PenguinGeorge #298
|
- Added information links to most operations, accessible in the description popover @PenguinGeorge #298
|
||||||
|
|
||||||
|
@ -315,7 +315,9 @@
|
|||||||
"To Camel case",
|
"To Camel case",
|
||||||
"To Kebab case",
|
"To Kebab case",
|
||||||
"BSON serialise",
|
"BSON serialise",
|
||||||
"BSON deserialise"
|
"BSON deserialise",
|
||||||
|
"To MessagePack",
|
||||||
|
"From MessagePack"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -21,7 +21,8 @@ class FromMessagePack extends Operation {
|
|||||||
|
|
||||||
this.name = "From MessagePack";
|
this.name = "From MessagePack";
|
||||||
this.module = "Code";
|
this.module = "Code";
|
||||||
this.description = "Converts MessagePack encoded data to JSON";
|
this.description = "Converts MessagePack encoded data to JSON. MessagePack is a computer data interchange format. It is a binary form for representing simple data structures like arrays and associative arrays.";
|
||||||
|
this.infoURL = "https://wikipedia.org/wiki/MessagePack";
|
||||||
this.inputType = "ArrayBuffer";
|
this.inputType = "ArrayBuffer";
|
||||||
this.outputType = "JSON";
|
this.outputType = "JSON";
|
||||||
this.args = [];
|
this.args = [];
|
||||||
|
@ -21,7 +21,8 @@ class ToMessagePack extends Operation {
|
|||||||
|
|
||||||
this.name = "To MessagePack";
|
this.name = "To MessagePack";
|
||||||
this.module = "Code";
|
this.module = "Code";
|
||||||
this.description = "Converts JSON to MessagePack encoded byte buffer";
|
this.description = "Converts JSON to MessagePack encoded byte buffer. MessagePack is a computer data interchange format. It is a binary form for representing simple data structures like arrays and associative arrays.";
|
||||||
|
this.infoURL = "https://wikipedia.org/wiki/MessagePack";
|
||||||
this.inputType = "JSON";
|
this.inputType = "JSON";
|
||||||
this.outputType = "ArrayBuffer";
|
this.outputType = "ArrayBuffer";
|
||||||
this.args = [];
|
this.args = [];
|
||||||
|
Loading…
Reference in New Issue
Block a user