Release 1.0.2

This commit is contained in:
Omelette 蛋卷 2024-01-16 18:29:34 -05:00
parent 341cae8526
commit fdda105b09
2 changed files with 12 additions and 7 deletions

View File

@ -32,4 +32,9 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
- Update modified dcs-fiddle-server.lua to 0.2.0.
### Fixed
- Fix link to original DCS Fiddle install instructions.
- Fix link to original DCS Fiddle install instructions.
## [1.0.2]
### Fixed
- Fix buttons getting separated by other extensions.

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.",
"license": "MIT",
"publisher": "omltcat",
"version": "1.0.1",
"version": "1.0.2",
"icon": "docs/img/icon.png",
"repository": {
"type": "git",
@ -63,28 +63,28 @@
"editor/title": [
{
"command": "dcs-lua-runner.run-file",
"group": "navigation@3",
"group": "navigation@-3",
"when": "editorLangId == lua"
},
{
"command": "dcs-lua-runner.set-local-button",
"when": "editorLangId == lua && config.dcsLuaRunner.runCodeLocally == false",
"group": "navigation@0"
"group": "navigation@-5"
},
{
"command": "dcs-lua-runner.set-remote-button",
"when": "editorLangId == lua && config.dcsLuaRunner.runCodeLocally == true",
"group": "navigation@0"
"group": "navigation@-5"
},
{
"command": "dcs-lua-runner.set-missionEnv-button",
"when": "editorLangId == lua && config.dcsLuaRunner.runInMissionEnv == false",
"group": "navigation@1"
"group": "navigation@-4"
},
{
"command": "dcs-lua-runner.set-guiEnv-button",
"when": "editorLangId == lua && config.dcsLuaRunner.runInMissionEnv == true",
"group": "navigation@1"
"group": "navigation@-4"
}
],
"editor/context": [