Skip to content

Commit

Permalink
correções pontuais gerando 2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lwtnb-wrk committed Jan 24, 2024
1 parent 4f38acc commit 69bc6a9
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 9 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Changelog

## Versão [2.0.3]

### Correções

#### Exibição de erro de C++ Runtime

Durante a indexação ocorria a exibição de erro de C++ Runtime em uma determinada circunstância.

#### Queda do LS durante edição

Durante a edição de um arquivo fora da área de trabalho corrente, ocorria a queda do LS.

#### Erro na inicialização do tds-vscode

A extensão do tds-vscode nem subia caso a versão do VS Code fosse menor que 1.73.0.

#### Queda durante depuração

Durante a depuração se existisse um 'watch' de tabela (por exemplo: "table:pcy") ocorria a queda na depuração.

### Melhoria

#### Uniformização de comandos de Recompile em primeiro plano

Ao acionar o menu de contexto os comandos de "Recompile" serão exibidos inicialmente, para exibir os comandos de "Compile" o acionamento da tecla modificadora SHIFT deve ser feito.

## Versão [2.0.2]

### Melhoria
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "tds-vscode",
"displayName": "TOTVS Developer Studio for VSCode (AdvPL, TLPP e 4GL)",
"description": "%tds.package.description%",
"version": "2.0.2",
"version": "2.0.3",
"publisher": "TOTVS",
"preview": true,
"author": {
Expand Down Expand Up @@ -85,8 +85,8 @@
"@material-ui/icons": "^4.11.3",
"@material-ui/data-grid": "4.0.0-alpha.2",
"@material-ui/lab": "^4.11.3-deprecations.1",
"@totvs/tds-da": "^1.2.65",
"@totvs/tds-ls": "^2.0.9",
"@totvs/tds-da": "^1.2.66",
"@totvs/tds-ls": "^2.0.10",
"@types/react": "^16.14.20",
"@types/vscode": "^1.63.1",
"@vscode/debugadapter": "^1.51.1",
Expand Down Expand Up @@ -1043,12 +1043,12 @@
"when": "editorTextFocus"
},
{
"command": "totvs-developer-studio.build.openEditors",
"command": "totvs-developer-studio.rebuild.openEditors",
"key": "ctrl+f10",
"mac": "cmd+f10"
},
{
"command": "totvs-developer-studio.rebuild.openEditors",
"command": "totvs-developer-studio.build.openEditors",
"key": "ctrl+shift+f10",
"mac": "cmd+shift+f10"
}
Expand Down Expand Up @@ -1485,8 +1485,8 @@
"explorer/context": [
{
"when": "explorerResourceIsFolder ",
"command": "totvs-developer-studio.build.workspace",
"alt": "totvs-developer-studio.rebuild.workspace",
"command": "totvs-developer-studio.rebuild.workspace",
"alt": "totvs-developer-studio.build.workspace",
"group": "totvsBuild@1"
},
{
Expand All @@ -1495,8 +1495,8 @@
"group": "totvsBuild@3"
},
{
"command": "totvs-developer-studio.build.openEditors",
"alt": "totvs-developer-studio.rebuild.openEditors",
"command": "totvs-developer-studio.rebuild.openEditors",
"alt": "totvs-developer-studio.build.openEditors",
"group": "totvsBuild@4"
},
{
Expand Down

0 comments on commit 69bc6a9

Please sign in to comment.