Skip to content

Commit

Permalink
Merge pull request #160 from mathworks/dklilley.release-1.2.4
Browse files Browse the repository at this point in the history
MATLAB extension for VS Code - v1.2.4
  • Loading branch information
dklilley authored Jul 13, 2024
2 parents b57f9ca + 049e686 commit 80b544d
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.2.4] - 2024-07-12

### Added
- Enabled users to specify workspace-specific MATLAB install paths
- Enable users to specify workspace-specific MATLAB install paths
- Improvements to code folding (requires MATLAB R2024b or later)

### Fixed
- Patched CVE-2024-37890
- Patches CVE-2024-37890
- Allow connection to MATLAB when a single quote appears in the extension installation path
- Resolve error with code navigation when using with MATLAB R2024b
- Various syntax highlighting improvements (Thanks @watermarkhu!)

## [1.2.3] - 2024-06-14

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.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Edit MATLAB code with syntax highlighting, linting, navigation support, and more",
"icon": "public/L-Membrane_RGB_128x128.png",
"license": "MIT",
"version": "1.2.3",
"version": "1.2.4",
"engines": {
"vscode": "^1.67.0"
},
Expand Down Expand Up @@ -131,7 +131,7 @@
"properties": {
"MATLAB.installPath": {
"type": "string",
"markdownDescription": "The full path to the top-level directory of the MATLAB installation you want to use with this extension. You can determine the full path to your MATLAB installation using the `matlabroot` command in MATLAB. For more information, refer to the [README](https://github.com/mathworks/MATLAB-extension-for-vscode/blob/main/README.md). This setting can be applied globally underneath the Users tab, or overridden on a per-workspace basis in the Workspace tab.",
"markdownDescription": "The full path to the top-level directory of the MATLAB installation you want to use with this extension. You can determine the full path to your MATLAB installation using the `matlabroot` command in MATLAB. For more information, refer to the [README](https://github.com/mathworks/MATLAB-extension-for-vscode/blob/main/README.md). This setting can be specified for both the user and workspace setting scopes using the User and Workspace tabs above.",
"scope": "window"
},
"MATLAB.matlabConnectionTiming": {
Expand Down Expand Up @@ -168,6 +168,7 @@
}
}
},

"languages": [
{
"id": "matlab",
Expand Down

0 comments on commit 80b544d

Please sign in to comment.