Skip to content

Commit

Permalink
Merge branch 'master' into allow_rdb_to_work_with_user_specified_port
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Leighty committed Jun 2, 2022
2 parents 67f2b40 + 0713317 commit 9af1cac
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/create-vsix-from-pr.yml
Expand Up @@ -37,5 +37,5 @@ jobs:
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: 'Hey there! I just built a new version of the vscode extension based on ${{ github.event.pull_request.head.sha }}. You can downloaded the .vsix [here](${{steps.create-vsix.outputs.workflow-url}}) and then follow [these installation instructions](https://github.com/rokucommunity/vscode-brightscript-language#pre-release-versions).'
body: 'Hey there! I just built a new version of the vscode extension based on ${{ github.event.pull_request.head.sha }}. You can downloaded the .vsix [here](${{steps.create-vsix.outputs.workflow-url}}) and then follow [these installation instructions](https://rokucommunity.github.io/vscode-brightscript-language/prerelease-versions.html).'
})
7 changes: 7 additions & 0 deletions CHANGELOG.md
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0



## [2.32.1](https://github.com/RokuCommunity/vscode-brightscript-language/compare/v2.32.0...v2.32.1) - 2022-06-02
### Fixed
- allow user-specified RDB port ([#401](https://github.com/rokucommunity/vscode-brightscript-language/pull/401))
- prevent RDB-related "port already in use" error after the first debug session ([#401](https://github.com/rokucommunity/vscode-brightscript-language/pull/401))



## [2.32.0](https://github.com/RokuCommunity/vscode-brightscript-language/compare/v2.31.1...v2.32.0) - 2022-05-31
### Added
- new SceneGraph Inspector panel to view/manage all on-device SceneGraph nodes right in vscode. ([#386](https://github.com/rokucommunity/vscode-brightscript-language/pull/386))
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
@@ -1,7 +1,7 @@
{
"name": "brightscript",
"displayName": "BrightScript Language",
"version": "2.32.0",
"version": "2.32.1",
"publisher": "RokuCommunity",
"description": "Language support for Roku's BrightScript language.",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion scripts/create-vsix.js
Expand Up @@ -18,7 +18,7 @@ function main() {
'vscode-brightscript-language',
hasBranch('vscode-brightscript-language', branch) ? branch : 'master'
);
const buildVersion = `9001.0.0-${branch.replace(/[^a-zA-Z_0-9]/g, '-')}.${Date.now()}`;
const buildVersion = `9001.0.0-${branch.replace(/[^a-zA-Z0-9]/g, '-')}.${Date.now()}`;

//bump the version for this build
changeVersion('vscode-brightscript-language', buildVersion);
Expand Down

0 comments on commit 9af1cac

Please sign in to comment.