Skip to content

Commit

Permalink
docs updated for 9.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alefragnani committed Feb 2, 2024
1 parent 696c3db commit ebab056
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 22 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## [9.7.0] - 2023-07-16
### Added
* Missing keywords from FreePascal and Oxygene (thanks to @TheWitheredStriker [PR #138](https://github.com/alefragnani/vscode-language-pascal/pull/138))

### Fixed
* Comment auto closing pairs (issue [#141](https://github.com/alefragnani/vscode-language-pascal/issues/141))

### Internal
* Security Alert: word-wrap (PR [#139](https://github.com/alefragnani/vscode-language-pascal/pull/139))
* Security Alert: webpack (PR [#130](https://github.com/alefragnani/vscode-language-pascal/pull/130))

## [9.6.0] - 2023-02-14
### Internal
* Support Implicit Activation Events (issue [#126](https://github.com/alefragnani/vscode-language-pascal/issues/126))
Expand Down
19 changes: 16 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,11 @@
<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.6
# What's new in Pascal 9.7

* Improves **Syntax Highlighting** support for FreePascal and Oxygene
* Adds **Web** support
* Adds **Getting Started / Walkthrough**
* Adds **Virtual Workspaces** support
* Adds **Workspace Trust** support

## Support

Expand Down Expand Up @@ -243,6 +242,20 @@ Update two tags:
]
}
```
## Contributors

Special thanks to the people that have contributed to the project:

* Midas (Wither) (@TheWitheredStriker) - Missing keywords from FreePascal and Oxygene ([see PR](https://github.com/alefragnani/vscode-language-pascal/pull/138))
* creativelaides (@creativelaides) - Task upgrade ([see PR](https://github.com/alefragnani/vscode-language-pascal/pull/54))
* space (@SpaceEEC) - Fixed parentesis in snippet ([see PR](https://github.com/alefragnani/vscode-language-pascal/pull/51))
* AnsonYeung (@AnsonYeung) - Fixed autocomplete in snippet ([see PR](https://github.com/alefragnani/vscode-language-pascal/pull/44))
* AnsonYeung (@AnsonYeung) - Added .lpr file extension support ([see PR](https://github.com/alefragnani/vscode-language-pascal/pull/30))
* Jonathan Carter (@lostintangent) - Support Live Share ([see PR](https://github.com/alefragnani/vscode-language-pascal/pull/28))
* Jan T. Sott (@idleberg) - Fixed escape in snippet ([see PR](https://github.com/alefragnani/vscode-language-pascal/pull/22))
* Wade Anderson (@waderyan) - Updated marketplace category ([see PR](https://github.com/alefragnani/vscode-language-pascal/pull/13))

Also thanks to everyone who helped opening issues with ideas and bug reports.

# License

Expand Down
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.6.0",
"version": "9.7.0",
"publisher": "alefragnani",
"galleryBanner": {
"color": "#4682B4",
Expand Down
55 changes: 37 additions & 18 deletions src/whats-new/contentProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,43 @@ export class PascalContentProvider implements ContentProvider {
provideChangeLog(): ChangeLogItem[] {
const changeLog: ChangeLogItem[] = [];

changeLog.push({ kind: ChangeLogKind.VERSION, detail: { releaseNumber: "9.7.0", releaseDate: "January 2024" } });
changeLog.push({
kind: ChangeLogKind.NEW,
detail: {
message: "Missing keywords from FreePascal and Oxygene",
id: 138,
kind: IssueKind.PR,
kudos: "TheWitheredStriker"
}
});
changeLog.push({
kind: ChangeLogKind.FIXED,
detail: {
message: "Comment auto closing pairs",
id: 141,
kind: IssueKind.Issue
}
});
changeLog.push({
kind: ChangeLogKind.INTERNAL,
detail: {
message: "Security Alert: word-wrap",
id: 139,
kind: IssueKind.PR,
kudos: "dependabot"
}
});
changeLog.push({
kind: ChangeLogKind.INTERNAL,
detail: {
message: "Security Alert: webpack",
id: 130,
kind: IssueKind.PR,
kudos: "dependabot"
}
});

changeLog.push({ kind: ChangeLogKind.VERSION, detail: { releaseNumber: "9.6.0", releaseDate: "January 2023" } });
changeLog.push({
kind: ChangeLogKind.INTERNAL,
Expand Down Expand Up @@ -109,24 +146,6 @@ export class PascalContentProvider implements ContentProvider {
}
});

changeLog.push({ kind: ChangeLogKind.VERSION, detail: { releaseNumber: "9.4.0", releaseDate: "November 2021" } });
changeLog.push({
kind: ChangeLogKind.INTERNAL,
detail: {
message: "Add CONTRIBUTING documentation",
id: 95,
kind: IssueKind.Issue
}
});
changeLog.push({
kind: ChangeLogKind.INTERNAL,
detail: {
message: "Update dependencies",
id: 98,
kind: IssueKind.Issue
}
});

return changeLog;
}

Expand Down

0 comments on commit ebab056

Please sign in to comment.