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

@ -33,3 +33,8 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
### Fixed ### 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.", "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.0.1", "version": "1.0.2",
"icon": "docs/img/icon.png", "icon": "docs/img/icon.png",
"repository": { "repository": {
"type": "git", "type": "git",
@ -63,28 +63,28 @@
"editor/title": [ "editor/title": [
{ {
"command": "dcs-lua-runner.run-file", "command": "dcs-lua-runner.run-file",
"group": "navigation@3", "group": "navigation@-3",
"when": "editorLangId == lua" "when": "editorLangId == lua"
}, },
{ {
"command": "dcs-lua-runner.set-local-button", "command": "dcs-lua-runner.set-local-button",
"when": "editorLangId == lua && config.dcsLuaRunner.runCodeLocally == false", "when": "editorLangId == lua && config.dcsLuaRunner.runCodeLocally == false",
"group": "navigation@0" "group": "navigation@-5"
}, },
{ {
"command": "dcs-lua-runner.set-remote-button", "command": "dcs-lua-runner.set-remote-button",
"when": "editorLangId == lua && config.dcsLuaRunner.runCodeLocally == true", "when": "editorLangId == lua && config.dcsLuaRunner.runCodeLocally == true",
"group": "navigation@0" "group": "navigation@-5"
}, },
{ {
"command": "dcs-lua-runner.set-missionEnv-button", "command": "dcs-lua-runner.set-missionEnv-button",
"when": "editorLangId == lua && config.dcsLuaRunner.runInMissionEnv == false", "when": "editorLangId == lua && config.dcsLuaRunner.runInMissionEnv == false",
"group": "navigation@1" "group": "navigation@-4"
}, },
{ {
"command": "dcs-lua-runner.set-guiEnv-button", "command": "dcs-lua-runner.set-guiEnv-button",
"when": "editorLangId == lua && config.dcsLuaRunner.runInMissionEnv == true", "when": "editorLangId == lua && config.dcsLuaRunner.runInMissionEnv == true",
"group": "navigation@1" "group": "navigation@-4"
} }
], ],
"editor/context": [ "editor/context": [