Added Decode VBE

This commit is contained in:
bwhitn 2017-08-27 09:29:26 -04:00
parent d012fd3a65
commit fdc8a15595
5 changed files with 290 additions and 1 deletions

View file

@ -66,6 +66,7 @@ const Categories = [
"Encode text",
"Decode text",
"Swap endianness",
"Decode VBE",
]
},
{

View file

@ -38,7 +38,7 @@ import Tidy from "../operations/Tidy.js";
import Unicode from "../operations/Unicode.js";
import URL_ from "../operations/URL.js";
import UUID from "../operations/UUID.js";
import VBE from "../operations/VBE.js";
/**
* Type definition for an OpConf.
@ -3204,6 +3204,13 @@ const OperationConfig = {
}
]
},
"Decode VBE": {
description: "Decodes Microsoft VBE files that have been encoded with Microsoft's custom encoding.",
run: VBE.runDecodeVBE,
inputType: "string",
outputType: "string",
args: []
},
"Syntax highlighter": {
description: "Adds syntax highlighting to a range of source code languages. Note that this will not indent the code. Use one of the 'Beautify' operations for that.",
run: Code.runSyntaxHighlight,