Skip to content

Commit

Permalink
docs updated for v9.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alefragnani committed Apr 3, 2024
1 parent 6e3df37 commit 9162353
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [9.8.0] - 2024-04-03
### Added
* Published to Open VSX (issue [#97](https://github.com/alefragnani/vscode-language-pascal/issues/97))

## [9.7.0] - 2024-02-03
### Added
* Missing keywords from FreePascal and Oxygene (thanks to @TheWitheredStriker [PR #138](https://github.com/alefragnani/vscode-language-pascal/pull/138))
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
<a title="Learn more about Pascal" href="http://github.com/alefragnani/vscode-language-pascal"><img src="https://raw.githubusercontent.com/alefragnani/vscode-language-pascal/master/images/vscode-pascal-logo-readme.png" alt="Pascal Logo" width="70%" /></a>
</p>

# What's new in Pascal 9.7
# What's new in Pascal 9.8

* Published to **Open VSX**
* Improves **Syntax Highlighting** support for FreePascal and Oxygene
* Adds **Web** support
* Adds **Getting Started / Walkthrough**
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "pascal",
"displayName": "Pascal",
"description": "Pascal language support for Visual Studio Code",
"version": "9.7.0",
"version": "9.8.0",
"publisher": "alefragnani",
"galleryBanner": {
"color": "#4682B4",
Expand Down
10 changes: 10 additions & 0 deletions src/whats-new/contentProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ export class PascalContentProvider implements ContentProvider {
provideChangeLog(): ChangeLogItem[] {
const changeLog: ChangeLogItem[] = [];

changeLog.push({ kind: ChangeLogKind.VERSION, detail: { releaseNumber: "9.8.0", releaseDate: "March 2024" } });
changeLog.push({
kind: ChangeLogKind.NEW,
detail: {
message: "Published to Open VSX",
id: 97,
kind: IssueKind.Issue
}
});

changeLog.push({ kind: ChangeLogKind.VERSION, detail: { releaseNumber: "9.7.0", releaseDate: "January 2024" } });
changeLog.push({
kind: ChangeLogKind.NEW,
Expand Down

0 comments on commit 9162353

Please sign in to comment.