-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/rokucommunity/vscode-brig…
…htscript-language into embedded-brs-in-scenegraph
- Loading branch information
Showing
37 changed files
with
3,171 additions
and
1,970 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: create-vsix | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
branch: | ||
description: 'The branch name which should be used to build the vsix' | ||
required: true | ||
jobs: | ||
create-vsix: | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- uses: actions/checkout@master | ||
- uses: actions/setup-node@master | ||
with: | ||
node-version: "14.16.1" | ||
- run: npm ci | ||
- run: node scripts/create-vsix.js ${{ github.event.inputs.branch }} | ||
- uses: actions/upload-artifact@v2 | ||
with: | ||
name: vscode-brightscript-language.vsix | ||
path: .vsix-building/vscode-brightscript-language/*.vsix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,4 @@ coverage | |
*.vsix | ||
brsconfig.schema.json | ||
.history | ||
.vsix-building |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,45 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |
|
||
|
||
|
||
## [2.23.1](https://github.com/RokuCommunity/vscode-brightscript-language/compare/v2.23.0...v2.23.1) - 2021-10-27 | ||
### Changed | ||
- updated to [[email protected]](https://github.com/rokucommunity/roku-debug/blob/master/CHANGELOG.md#085---2021-01-27) | ||
- add additional logging to the "BrightScript Debug Server" output panel | ||
- fixed bug with boxed primitives for telnet debugger ([roku-debug#36](https://github.com/rokucommunity/roku-debug/pull/36)) | ||
- send stdio lines as separate debug events which fixes focus bug in the output panel. ([roku-debug#51](https://github.com/rokucommunity/roku-debug/pull/51)) | ||
- retain newlines in log output after tracker preprocessing ([roku-debug#50](https://github.com/rokucommunity/roku-debug/pull/50)) | ||
- updated to [[email protected]](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#350---2021-10-27) | ||
- includes ability to use negated non-rootDir top-level patterns in the files array ([roku-deploy#78](https://github.com/rokucommunity/roku-deploy/pull/78)) | ||
- updated to [[email protected]](https://github.com/rokucommunity/brighterscript/blob/master/CHANGELOG.md#0413---2021-10-27) | ||
- Allow diagnostic non-numeric disable code comments ([brighterscript#463](https://github.com/rokucommunity/brighterscript/pull/463)) | ||
- updated to [[email protected]](https://github.com/rokucommunity/brighterscript-formatter/blob/master/CHANGELOG.md#163---2021-10-27) | ||
### Fixed | ||
- syntax highlighting issue related to `if` keyword that looked like a function call ([#331](https://github.com/rokucommunity/vscode-brightscript-language/pull/331)) | ||
- `throw` keyword colorization ([#330](https://github.com/rokucommunity/vscode-brightscript-language/pull/330)) | ||
|
||
|
||
|
||
## [2.23.0](https://github.com/RokuCommunity/vscode-brightscript-language/compare/v2.22.3...v2.23.0) - 2021-09-17 | ||
### Added | ||
- Initial RDB implementation ([#317](https://github.com/rokucommunity/vscode-brightscript-language/pull/317)) | ||
### Fixed | ||
- deploy crashes when target Roku doesn't have an installed channel (roku-deploy#65) | ||
### Changed | ||
- updated to [[email protected]](https://github.com/rokucommunity/brighterscript/blob/master/CHANGELOG.md#0401---2021-09-17) which includes [email protected] | ||
- updated to [[email protected]](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#342---2021-09-17) | ||
- updated to [[email protected]](https://github.com/rokucommunity/brighterscript-formatter/blob/master/CHANGELOG.md#162---2021-09-17) | ||
|
||
|
||
|
||
## [2.22.3] - 2021-06-28 | ||
[2.22.3]: https://github.com/RokuCommunity/vscode-brightscript-language/compare/v2.22.2...v2.22.3 | ||
### Fixed | ||
- (Debugger) freeze when debugger prompt split across multiple telnet messages ([roku-debug#35](https://github.com/rokucommunity/roku-debug/pull/35)) | ||
- (LanguageServer) allow up to 6 arguments in `CreateObject` function signature ([brighterscript#430](https://github.com/rokucommunity/brighterscript/pull/430)) | ||
- (LanguageServer) add `v30/bslCore` library functions to global callables ([brighterscript#433](https://github.com/rokucommunity/brighterscript/pull/433)) | ||
|
||
|
||
|
||
## [2.22.2] - 2021-06-01 | ||
[2.22.2]: https://github.com/RokuCommunity/vscode-brightscript-language/compare/v2.22.1...v2.22.2 | ||
### Fixed | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.