Skip to content

Commit

Permalink
Merge branch 'master' into enhanced-bsc-picker
Browse files Browse the repository at this point in the history
  • Loading branch information
TwitchBronBron authored Jul 30, 2024
2 parents 26ec6f7 + d49c5f5 commit 190ea99
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 27 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0



## [2.48.6](https://github.com/rokucommunity/vscode-brightscript-language/compare/v2.48.5...v2.48.6) - 2024-07-24
### Added
- support for viewing nodes that are in the node tree from NodeCountByTypePage ([#579](https://github.com/rokucommunity/vscode-brightscript-language/pull/579))
- support for removing nodes in SceneGraph Inspector ([#578](https://github.com/rokucommunity/vscode-brightscript-language/pull/578))
### Changed
- upgrade to [roku-deploy@3.12.1](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#3121---2024-07-19). Notable changes since 3.12.0:
- Fix bug with absolute paths and getDestPath ([roku-deploy#171](https://github.com/rokucommunity/roku-deploy/pull/171))
- upgrade to [roku-debug@0.21.10](https://github.com/rokucommunity/roku-debug/blob/master/CHANGELOG.md#02110---2024-07-24). Notable changes since 0.21.9:
- Prevent crash when rokuAdapter is not defined. ([roku-debug#194](https://github.com/rokucommunity/roku-debug/pull/194))
- upgrade to [brighterscript@0.67.4](https://github.com/rokucommunity/brighterscript/blob/master/CHANGELOG.md#0674---2024-07-24). Notable changes since 0.67.2:
- Fix crash with missing scope ([brighterscript#1234](https://github.com/rokucommunity/brighterscript/pull/1234))
- Fix conform bsconfig.schema.json to strict types ([brighterscript#1205](https://github.com/rokucommunity/brighterscript/pull/1205))
- Flag using devDependency in production code ([brighterscript#1222](https://github.com/rokucommunity/brighterscript/pull/1222))
- upgrade to [brighterscript-formatter@1.7.4](https://github.com/rokucommunity/brighterscript-formatter/blob/master/CHANGELOG.md#174---2024-07-24). Notable changes since 1.7.3:



## [2.48.5](https://github.com/rokucommunity/vscode-brightscript-language/compare/v2.48.4...v2.48.5) - 2024-06-04
### Fixed
- bug with the language server crash tracker ([#576](https://github.com/rokucommunity/vscode-brightscript-language/pull/576))
Expand Down
2 changes: 2 additions & 0 deletions docs/extension-settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ If true, a space is inserted to the left of an opening function declaration pare
### `brightscript.format.insertSpaceBetweenEmptyCurlyBraces`

if true, empty curly braces will contain exactly 1 whitespace char (i.e. `{ }`). If false, there will be zero whitespace chars between empty curly braces (i.e. `{}`)
### `brightscript.format.sortImports`
if true, import statements will be sorted alphabetically.
### `brightscript.output.includeStackTraces`
If set to true, will print stack trace or breakpoint info in the log output. Set to false to avoid noisy logs - you'll still get the traces in the debug console, in any case
### `brightscript.output.focusOnLaunch`
Expand Down
45 changes: 23 additions & 22 deletions package-lock.json

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

16 changes: 11 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "brightscript",
"displayName": "BrightScript Language",
"version": "2.48.5",
"version": "2.48.6",
"publisher": "RokuCommunity",
"description": "Language support for Roku's BrightScript language.",
"author": {
Expand Down Expand Up @@ -56,8 +56,8 @@
"@vscode/extension-telemetry": "^0.4.7",
"array-sort": "^1.0.0",
"backoff": "^2.5.0",
"brighterscript": "^0.67.2",
"brighterscript-formatter": "^1.7.3",
"brighterscript": "^0.67.4",
"brighterscript-formatter": "^1.7.4",
"clone-deep": "^4.0.1",
"debounce": "^1.2.0",
"dotenv": "^6.2.0",
Expand All @@ -77,8 +77,8 @@
"postman-request": "^2.88.1-postman.32",
"pretty-bytes": "^5.6.0",
"resolve": "^1.22.8",
"roku-debug": "^0.21.9",
"roku-deploy": "^3.12.0",
"roku-debug": "^0.21.10",
"roku-deploy": "^3.12.1",
"roku-test-automation": "^2.0.6",
"semver": "^7.1.3",
"source-map": "^0.7.3",
Expand Down Expand Up @@ -1787,6 +1787,12 @@
"original"
],
"scope": "resource"
},
"brightscript.format.sortImports": {
"type": "boolean",
"default": false,
"description": "Sort import statements alphabetically",
"scope": "resource"
}
}
},
Expand Down

0 comments on commit 190ea99

Please sign in to comment.