Skip to content

Commit 8227654

Browse files
Parametrizações para release 0.10.2
1 parent 508531c commit 8227654

5 files changed

Lines changed: 19 additions & 20 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ All notable changes to the "protheusdoc-vscode" extension will be documented in
66

77
---
88

9+
## [0.10.2] - 2025-04-25
10+
11+
### Changed
12+
13+
- Alterado default da configuração `protheusDoc.usa_workspace_doc` para `false`, melhorando a experiência inicial da extensão [PR #93](https://github.com/AlencarGabriel/ProtheusDoc-VsCode/pull/93).
14+
15+
---
16+
917
## [0.10.1] - 2024-09-02
1018

1119
### Changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "protheusdoc-vscode",
33
"displayName": "ProtheusDoc for VsCode (AdvPL)",
44
"description": "Suporte à documentação TOTVS ProtheusDoc para VsCode.",
5-
"version": "0.10.1",
5+
"version": "0.10.2",
66
"publisher": "AlencarGabriel",
77
"icon": "images/Icon.png",
88
"homepage": "https://github.com/AlencarGabriel/ProtheusDoc-VsCode",

release-body.md

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,5 @@
1-
## [0.10.1] - 2024-09-02
1+
## [0.10.2] - 2025-04-25
22

33
### Changed
44

5-
- Atualizado lista de releases Protheus na configuração `protheusDoc.versao_default` [PR #88](https://github.com/AlencarGabriel/ProtheusDoc-VsCode/pull/88).
6-
7-
### Fixed
8-
9-
- Sintaxe incorreta na busca da tipagem de retorno dos métodos. [#72](https://github.com/AlencarGabriel/ProtheusDoc-VsCode/issues/72).
10-
11-
### Thanks
12-
13-
- [Rodrigo Mello](https://github.com/rodsmello) pela contribuíção na lista de releases Protheus via [Pull Request](https://github.com/AlencarGabriel/ProtheusDoc-VsCode/pull/88).
14-
- [Izac](https://github.com/izacsc) pela identificação do problema na tipagem de retorno dos métodos.
5+
- Alterado default da configuração `protheusDoc.usa_workspace_doc` para `false`, melhorando a experiência inicial da extensão [PR #93](https://github.com/AlencarGabriel/ProtheusDoc-VsCode/pull/93).

src/whatsNew.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ export class WhatsNewDocContentProvider implements ContentProvider {
3131
// });
3232

3333
changeLog.push({
34-
kind: ChangeLogKind.CHANGED, message: `Atualizado lista de releases Protheus na configuração <b>protheusDoc.versao_default</b> - <a title=\"Open Pull Request #88\"
35-
href=\"https://github.com/AlencarGabriel/ProtheusDoc-VsCode/pull/88\">Saiba mais</a>.`
34+
kind: ChangeLogKind.CHANGED, message: `Alterado default da configuração <b>protheusDoc.usa_workspace_doc</b> para <b>false</b>, fazendo a extensão carregar mais rápido - <a title=\"Open Pull Request #93\"
35+
href=\"https://github.com/AlencarGabriel/ProtheusDoc-VsCode/pull/93\">Saiba mais</a>.`
3636
});
3737

38-
changeLog.push({
39-
kind: ChangeLogKind.FIXED, message: `Sintaxe incorreta na busca da tipagem de retorno dos métodos - <a title=\"Open Issue #72\"
40-
href=\"https://github.com/AlencarGabriel/ProtheusDoc-VsCode/issues/72\">Saiba mais</a>.`
41-
});
38+
// changeLog.push({
39+
// kind: ChangeLogKind.FIXED, message: `Sintaxe incorreta na busca da tipagem de retorno dos métodos - <a title=\"Open Issue #72\"
40+
// href=\"https://github.com/AlencarGabriel/ProtheusDoc-VsCode/issues/72\">Saiba mais</a>.`
41+
// });
4242

4343
return changeLog;
4444
}

0 commit comments

Comments
 (0)