Release 1.1.3

This commit is contained in:
Omelette 蛋卷
2024-02-04 08:08:54 -05:00
parent 1352034afd
commit b11fc3f1d7
3 changed files with 10 additions and 4 deletions

View File

@@ -60,4 +60,9 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
## [1.1.2] - 2024-02-03 ## [1.1.2] - 2024-02-03
### Fixed ### Fixed
- Fix output panel still opening when return display is set to file. - Fix output panel still opening when return display is set to file.
## [1.1.3] - 2024-02-04
### Fixed
- Fix JSON to Lua table regex.

View File

@@ -4,7 +4,7 @@
"description": "Quickly run lua code in DCS World (local or remote server). A reimplementation of the DCS Fiddle lua console in VS Code.", "description": "Quickly run lua code in DCS World (local or remote server). A reimplementation of the DCS Fiddle lua console in VS Code.",
"license": "MIT", "license": "MIT",
"publisher": "omltcat", "publisher": "omltcat",
"version": "1.1.2", "version": "1.1.3",
"icon": "docs/img/icon.png", "icon": "docs/img/icon.png",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@@ -52,10 +52,11 @@ async function runLua(lua: string, outputChannel: vscode.OutputChannel, filename
} }
let luaString = jsonString; let luaString = jsonString;
// Replace JSON syntax with Lua syntax // Replace JSON syntax with Lua syntax
luaString = luaString.replace(/null/g, 'nil'); // Replace null with nil
luaString = luaString.replace(/"([^"]+)":/g, '["$1"] ='); // Replace "key": with ["key"] = luaString = luaString.replace(/"([^"]+)":/g, '["$1"] ='); // Replace "key": with ["key"] =
luaString = luaString.replace(/"_([0-9]+)":/g, '[$1] ='); // Replace "_n": with [n] = luaString = luaString.replace(/"_([0-9]+)":/g, '[$1] ='); // Replace "_n": with [n] =
luaString = luaString.replace(/null/g, 'nil'); // Replace null with nil luaString = luaString.replace(/\[\]/g, '{}'); // Replace [] with {}
luaString = luaString.replace(/\[\n/g, '{\n'); // Replace [ followed by a line break with { followed by a line break luaString = luaString.replace(/\[\n/g, '{\n'); // Replace [ followed by a line break with { followed by a line break
luaString = luaString.replace(/]\n/g, '}\n'); // Replace ] followed by a line break with } followed by a line break luaString = luaString.replace(/]\n/g, '}\n'); // Replace ] followed by a line break with } followed by a line break
luaString = luaString.replace(/],/g, '},'); // Replace ], with }, luaString = luaString.replace(/],/g, '},'); // Replace ], with },